* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f4f6fa;
            color: #1e1e2a;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #d4a017;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #0b0c1a 0%, #1a1f3a 100%);
            color: #fff;
            padding: 14px 0;
            border-bottom: 3px solid #b8860b;
            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.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c040, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0c040;
            margin-right: 6px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            color: #e8e8f0;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: all 0.25s;
            text-decoration: none !important;
        }
        nav a:hover {
            background: rgba(184, 134, 11, 0.25);
            color: #f0c040;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0c040;
            font-size: 1.7rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(184, 134, 11, 0.2);
        }
        .breadcrumb {
            background: #e8ecf2;
            padding: 10px 0;
            font-size: 0.88rem;
            border-bottom: 1px solid #d0d6e0;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb span {
            color: #4a4a5a;
        }
        .breadcrumb a {
            color: #1a1f3a;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .hero {
            background: linear-gradient(135deg, #0f1235 0%, #1a2a5a 100%);
            color: #fff;
            padding: 48px 0 40px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #f0c040, #e9a825);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 20px;
            opacity: 0.9;
        }
        .hero .last-updated {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-top: 8px;
            display: inline-block;
            background: rgba(255, 255, 255, 0.08);
            padding: 4px 18px;
            border-radius: 30px;
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 36px;
            padding: 36px 0;
        }
        .main-content {
            background: #fff;
            border-radius: 20px;
            padding: 32px 36px;
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
        }
        .main-content h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 36px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f0c040;
            color: #0b0c1a;
        }
        .main-content h2:first-of-type {
            margin-top: 0;
        }
        .main-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 28px 0 12px;
            color: #1a2a5a;
        }
        .main-content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 20px 0 8px;
            color: #2a3a6a;
        }
        .main-content p {
            margin-bottom: 16px;
            text-align: justify;
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 20px 24px;
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .highlight-box {
            background: #f8f4ec;
            border-left: 4px solid #b8860b;
            padding: 16px 22px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .main-content .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .main-content img.featured-image {
            width: 100%;
            margin: 24px 0;
            border-radius: 16px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 20px 18px;
            margin-bottom: 20px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
        }
        .sidebar-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #0b0c1a;
            border-bottom: 2px solid #f0c040;
            padding-bottom: 6px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 8px;
        }
        .sidebar-card a {
            font-size: 0.92rem;
            display: block;
            padding: 4px 0;
            border-bottom: 1px solid #f0f2f5;
        }
        .sidebar-card a:hover {
            color: #b8860b;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 12px 0;
        }
        .search-form input {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid #d0d6e0;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input:focus {
            border-color: #b8860b;
        }
        .search-form button {
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 10px 22px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: #d4a017;
        }
        .comment-section,
        .rating-section {
            background: #f9fafc;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 36px 0 20px;
            border: 1px solid #e8ecf2;
        }
        .comment-section h3,
        .rating-section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #0b0c1a;
        }
        .comment-section form,
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .comment-section input,
        .comment-section textarea,
        .rating-section input,
        .rating-section select {
            padding: 10px 16px;
            border: 2px solid #d0d6e0;
            border-radius: 12px;
            font-size: 0.95rem;
            outline: none;
            font-family: inherit;
            transition: border 0.25s;
        }
        .comment-section input:focus,
        .comment-section textarea:focus,
        .rating-section input:focus,
        .rating-section select:focus {
            border-color: #b8860b;
        }
        .comment-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-section button,
        .rating-section button {
            background: #1a2a5a;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 12px 28px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 1rem;
            align-self: flex-start;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            background: #b8860b;
        }
        .friend-links {
            background: #0b0c1a;
            color: #e8e8f0;
            padding: 32px 0 20px;
            margin-top: 20px;
        }
        .friend-links .container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
        }
        .friend-links a {
            color: #d4c08a;
            font-size: 0.92rem;
            padding: 4px 0;
            text-decoration: none !important;
        }
        .friend-links a:hover {
            color: #f0c040;
            text-decoration: underline !important;
        }
        .friend-links .fl-title {
            width: 100%;
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: #f0c040;
            margin-bottom: 6px;
        }
        footer {
            background: #070814;
            color: #b0b4c8;
            padding: 24px 0;
            text-align: center;
            font-size: 0.88rem;
            border-top: 1px solid #1a1f3a;
        }
        footer .container {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        footer a {
            color: #d4c08a;
        }
        footer a:hover {
            color: #f0c040;
        }
        @media (max-width: 860px) {
            .content-wrap {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .main-content {
                padding: 20px 18px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0b0c1a;
                padding: 12px 0 16px;
                margin-top: 10px;
                border-radius: 12px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 20px;
                border-radius: 0;
                width: 100%;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
            .friend-links .container {
                flex-direction: column;
                align-items: center;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .main-content {
                padding: 14px 12px;
            }
            .container {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .comment-section,
            .rating-section {
                padding: 16px 14px;
            }
        }
        .text-gold {
            color: #b8860b;
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .star-rating {
            color: #f0c040;
            letter-spacing: 2px;
            font-size: 1.2rem;
        }
