        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f9f7f4;
            color: #1e1e2a;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #c76f1e;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #9a5516;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1a1a2e;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.6rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.2rem;
            margin-bottom: 0.8rem;
            border-left: 5px solid #e8852e;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 1.8rem;
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.4rem;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.4rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        blockquote {
            border-left: 4px solid #e8852e;
            background: #fff3e6;
            padding: 1rem 1.8rem;
            margin: 1.4rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3d2c1a;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d1f3d 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f5a623;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f5a623;
        }
        .my-logo span {
            color: #ffffff;
            font-weight: 300;
        }
        .my-logo small {
            display: block;
            font-size: 0.5rem;
            font-weight: 300;
            letter-spacing: 2px;
            color: #b8a9c9;
            text-transform: uppercase;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e8e0f0;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: rgba(245, 166, 35, 0.2);
            color: #f5a623;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: transparent;
            padding: 0.6rem 0 0.2rem 0;
            font-size: 0.85rem;
            color: #b8a9c9;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #d4c4e0;
        }
        .breadcrumb a:hover {
            color: #f5a623;
            text-decoration: none;
        }
        .breadcrumb .sep {
            color: #6a5a7a;
        }
        .hero {
            background: linear-gradient(135deg, #2d1f3d 0%, #1a1a2e 100%);
            color: #fff;
            padding: 3rem 0 2.8rem;
            text-align: center;
            border-bottom: 4px solid #f5a623;
        }
        .hero h1 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 0.6rem;
        }
        .hero h1 i {
            color: #f5a623;
        }
        .hero .tagline {
            font-size: 1.15rem;
            color: #c8b8d8;
            max-width: 700px;
            margin: 0 auto 1.4rem;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            gap: 1.8rem;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: #a898b8;
        }
        .hero .meta-info i {
            color: #f5a623;
            margin-right: 6px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.4rem;
            padding: 2.4rem 0 3rem;
        }
        .content-area {
            background: #ffffff;
            border-radius: 16px;
            padding: 2rem 2.4rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            background: #ffffff;
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #f0e8e0;
            padding-bottom: 0.6rem;
            margin-bottom: 1rem;
            color: #2d1f3d;
        }
        .sidebar ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f3eee9;
        }
        .sidebar ul li a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar ul li a i {
            color: #e8852e;
            font-size: 0.8rem;
        }
        .featured-image-wrap {
            margin: 1.8rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            background: #f0e8e0;
            position: relative;
        }
        .featured-image-wrap img {
            width: 100%;
            object-fit: cover;
            max-height: 420px;
        }
        .featured-image-wrap .img-caption {
            background: rgba(26, 26, 46, 0.85);
            color: #e8e0f0;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            text-align: center;
        }
        .saga-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.4rem 0 2rem;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .saga-table thead {
            background: #2d1f3d;
            color: #fff;
        }
        .saga-table th,
        .saga-table td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #eee6e0;
        }
        .saga-table tbody tr:hover {
            background: #faf3ed;
        }
        .saga-table .rating-star {
            color: #f5a623;
        }
        .form-card {
            background: #faf7f4;
            border-radius: 14px;
            padding: 1.6rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #e8ddd5;
        }
        .form-card h3 i {
            color: #e8852e;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.9rem;
            color: #2d1f3d;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e0d6ce;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.25s;
            background: #fff;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #e8852e;
            outline: none;
            box-shadow: 0 0 0 3px rgba(232, 133, 46, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #e8852e;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #c76f1e;
            transform: translateY(-1px);
            color: #fff;
            text-decoration: none;
        }
        .btn-secondary {
            background: #3d2c5a;
        }
        .btn-secondary:hover {
            background: #2d1f3d;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #ddd2c8;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5a623;
        }
        .comment-item {
            border-bottom: 1px solid #ede5dd;
            padding: 1rem 0;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .author {
            font-weight: 700;
            color: #2d1f3d;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #8a7a6a;
            margin-left: 1rem;
        }
        .comment-item .text {
            margin-top: 0.3rem;
            color: #2a2a3a;
        }
        .site-footer {
            background: #1a1a2e;
            color: #c8b8d8;
            padding: 2.4rem 0 1.8rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: #f5a623;
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #b8a9c9;
        }
        .site-footer a:hover {
            color: #f5a623;
            text-decoration: none;
        }
        .friend-link {
            display: block;
            padding: 0.3rem 0;
        }
        .friend-link a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .copyright {
            border-top: 1px solid #2d2d4a;
            padding-top: 1.4rem;
            text-align: center;
            font-size: 0.85rem;
            color: #7a6a8a;
        }
        .copyright a {
            color: #b8a9c9;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .content-area {
                order: 1;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .content-area {
                padding: 1.2rem 1.2rem;
            }
            .sidebar {
                padding: 1.2rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(26, 26, 46, 0.98);
                padding: 1rem 0.5rem;
                border-radius: 0 0 16px 16px;
                margin-top: 0.6rem;
                gap: 0.1rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1.2rem;
                width: 100%;
                border-radius: 8px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.4rem;
            }
            .hero .meta-info {
                flex-direction: column;
                gap: 0.4rem;
            }
            .form-card {
                padding: 1.2rem;
            }
            .saga-table {
                font-size: 0.8rem;
            }
            .saga-table th,
            .saga-table td {
                padding: 0.5rem 0.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .content-area {
                padding: 0.8rem 0.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero .tagline {
                font-size: 0.95rem;
            }
        }
        @media print {
            .site-header {
                position: static;
            }
            .sidebar,
            .form-card,
            .nav-toggle {
                display: none;
            }
            .main-grid {
                display: block;
            }
            .content-area {
                box-shadow: none;
                padding: 0;
            }
            .site-footer {
                background: #fff;
                color: #333;
                border-top: 2px solid #ccc;
            }
        }
