        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #fcf7f0;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #9a2c1f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #2d1b14 0%, #4a2c20 100%);
            padding: 16px 0;
            border-bottom: 4px solid #f5a623;
            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: 28px;
            font-weight: 800;
            color: #fae8d1;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f5a623, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-block;
            padding: 4px 0;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5a623;
            margin-right: 6px;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fae8d1;
            font-size: 28px;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #fae8d1;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.25s ease;
            letter-spacing: 0.3px;
        }
        .main-nav a:hover {
            background: rgba(245, 166, 35, 0.2);
            color: #f7c948;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 13px;
        }
        .breadcrumb-wrap {
            background: #f0e8df;
            padding: 10px 0;
            border-bottom: 1px solid #e0d5c8;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            font-size: 13px;
            color: #6b5e53;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 10px;
            color: #b8a99a;
            font-size: 16px;
        }
        .breadcrumb a {
            color: #7a3b2e;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            color: #c44536;
        }
        .breadcrumb .current {
            color: #4a3a30;
            font-weight: 600;
        }
        .article-hero {
            padding: 40px 0 20px;
            text-align: center;
        }
        .article-hero h1 {
            font-size: 42px;
            font-weight: 900;
            color: #2d1b14;
            line-height: 1.2;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        .article-hero h1 i {
            color: #f5a623;
            margin-right: 10px;
        }
        .article-meta {
            font-size: 14px;
            color: #7a6a5c;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 8px;
        }
        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .article-meta i {
            color: #c44536;
        }
        .last-updated {
            background: #f5a62320;
            padding: 4px 14px;
            border-radius: 30px;
            font-weight: 600;
            color: #5a3e2a;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 10px 0 40px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
            background: #faf5ee;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #e8ddd0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        }
        .sidebar h3 {
            font-size: 18px;
            color: #2d1b14;
            border-bottom: 3px solid #f5a623;
            padding-bottom: 10px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar ul li {
            padding: 6px 0;
            border-bottom: 1px dashed #e0d5c8;
        }
        .sidebar ul li a {
            font-weight: 500;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar ul li a i {
            color: #f5a623;
            font-size: 12px;
        }
        h2 {
            font-size: 30px;
            font-weight: 800;
            color: #2d1b14;
            margin: 40px 0 16px;
            border-left: 6px solid #f5a623;
            padding-left: 18px;
            line-height: 1.3;
        }
        h2 i {
            color: #f5a623;
            margin-right: 10px;
        }
        h3 {
            font-size: 22px;
            font-weight: 700;
            color: #3d2c20;
            margin: 28px 0 12px;
            line-height: 1.4;
        }
        h3 i {
            margin-right: 8px;
            color: #c44536;
        }
        h4 {
            font-size: 18px;
            font-weight: 600;
            color: #4a3a30;
            margin: 20px 0 8px;
            line-height: 1.5;
        }
        p {
            margin-bottom: 18px;
            font-size: 16px;
            color: #3d352c;
        }
        .highlight-box {
            background: #fdf6ec;
            border-left: 5px solid #f5a623;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #9a2c1f;
        }
        .emoji-big {
            font-size: 24px;
            vertical-align: middle;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .featured-image:hover img {
            transform: scale(1.02);
        }
        .featured-image figcaption {
            background: #f0e8df;
            padding: 12px 18px;
            font-size: 13px;
            color: #5a4a3c;
            text-align: center;
            font-style: italic;
        }
        .saga-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 15px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        .saga-table thead {
            background: #2d1b14;
            color: #fae8d1;
        }
        .saga-table th {
            padding: 14px 18px;
            text-align: left;
            font-weight: 700;
        }
        .saga-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #e8ddd0;
            background: #faf5ee;
        }
        .saga-table tr:last-child td {
            border-bottom: none;
        }
        .saga-table tr:hover td {
            background: #f5ede2;
        }
        .search-section {
            background: #f0e8df;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 40px 0;
            border: 1px solid #e0d5c8;
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #d0c0b0;
            border-radius: 50px;
            font-size: 16px;
            background: white;
            transition: border 0.3s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5a623;
            box-shadow: 0 0 0 4px #f5a62320;
        }
        .search-form button {
            padding: 14px 32px;
            background: #c44536;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #9a2c1f;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(196, 69, 54, 0.3);
        }
        .user-feedback {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        .feedback-card {
            background: #faf5ee;
            border-radius: 16px;
            padding: 24px 28px;
            border: 1px solid #e8ddd0;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card textarea,
        .feedback-card input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #d0c0b0;
            border-radius: 12px;
            font-size: 14px;
            font-family: inherit;
            background: white;
            transition: border 0.3s;
            outline: none;
            margin-bottom: 12px;
            resize: vertical;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #f5a623;
            box-shadow: 0 0 0 4px #f5a62320;
        }
        .feedback-card textarea {
            min-height: 100px;
        }
        .feedback-card .btn-submit {
            padding: 12px 28px;
            background: #f5a623;
            color: #2d1b14;
            border: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card .btn-submit:hover {
            background: #e09515;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 166, 35, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin-bottom: 14px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 28px;
            color: #d0c0b0;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5a623;
            transform: scale(1.1);
        }
        friend-link {
            display: block;
            background: #2d1b14;
            color: #fae8d1;
            padding: 28px 20px;
            border-radius: 16px;
            margin: 30px 0 10px;
            text-align: center;
        }
        friend-link .fl-head {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #f7c948;
            letter-spacing: 1px;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 24px;
        }
        friend-link .fl-list a {
            color: #fae8d1;
            font-weight: 500;
            padding: 4px 10px;
            border-radius: 20px;
            transition: all 0.2s;
            font-size: 14px;
        }
        friend-link .fl-list a:hover {
            background: rgba(245, 166, 35, 0.15);
            color: #f7c948;
            text-decoration: none;
        }
        .site-footer {
            background: #1f130e;
            color: #c4b5a6;
            padding: 30px 0 20px;
            margin-top: 30px;
            text-align: center;
            font-size: 14px;
            border-top: 4px solid #f5a623;
        }
        .site-footer .copyright {
            letter-spacing: 0.5px;
        }
        .site-footer .copyright i {
            color: #f5a623;
        }
        @media (max-width: 900px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
                margin-top: 30px;
            }
            .user-feedback {
                grid-template-columns: 1fr;
            }
            .article-hero h1 {
                font-size: 30px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                width: 100%;
                border-radius: 8px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .saga-table {
                font-size: 13px;
                display: block;
                overflow-x: auto;
            }
        }
        @media (max-width: 600px) {
            .article-hero h1 {
                font-size: 24px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 19px;
            }
            .container {
                padding: 0 14px;
            }
            .search-form input[type="text"] {
                min-width: 140px;
            }
            .feedback-card {
                padding: 18px 16px;
            }
            .breadcrumb {
                font-size: 12px;
            }
            .my-logo {
                font-size: 20px;
            }
        }
        @media (max-width: 480px) {
            .article-meta {
                flex-direction: column;
                gap: 6px;
                align-items: center;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-accent {
            color: #c44536;
        }
        .text-gold {
            color: #f5a623;
        }
        .fw-700 {
            font-weight: 700;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 6px;
        }
