        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0c0e12;
            color: #e2e6ec;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #d4a84b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #f0c86a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1e26;
        }
        ::-webkit-scrollbar-thumb {
            background: #d4a84b;
            border-radius: 4px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #14181f 0%, #1f2a35 100%);
            border-bottom: 2px solid #d4a84b33;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #f0e6d3;
            text-transform: uppercase;
            background: linear-gradient(135deg, #d4a84b, #f0c86a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aab;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e2e6ec;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #ffffff15;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #cfd4de;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.35rem 0.1rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            color: #f0c86a;
            border-bottom-color: #d4a84b;
            text-decoration: none;
        }
        .breadcrumb {
            background: #14181fcc;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a3140;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.75rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.75rem;
            color: #7a8290;
        }
        .breadcrumb a {
            color: #aab2c0;
        }
        .breadcrumb a:hover {
            color: #d4a84b;
        }
        .breadcrumb .current {
            color: #d4a84b;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(145deg, #1a222e 0%, #0f141c 100%);
            padding: 3.5rem 0 3rem;
            text-align: center;
            border-bottom: 1px solid #2a3140;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "🎬";
            position: absolute;
            font-size: 12rem;
            opacity: 0.04;
            top: -2rem;
            right: -2rem;
            transform: rotate(15deg);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0e6d3, #d4a84b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.15rem;
            color: #b6bfd0;
            max-width: 750px;
            margin: 0 auto 1.25rem;
        }
        .hero .meta-badge {
            display: inline-block;
            background: #d4a84b22;
            border: 1px solid #d4a84b55;
            padding: 0.35rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #d4a84b;
        }
        .search-section {
            background: #14181f;
            padding: 1.5rem 0;
            border-bottom: 1px solid #2a3140;
        }
        .search-form {
            display: flex;
            gap: 0.75rem;
            max-width: 580px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 1px solid #3a4355;
            border-radius: 6px;
            background: #1a1e26;
            color: #e2e6ec;
            font-size: 0.95rem;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #d4a84b;
            box-shadow: 0 0 0 3px #d4a84b22;
        }
        .search-form button {
            background: #d4a84b;
            border: none;
            border-radius: 6px;
            padding: 0.7rem 1.5rem;
            color: #0c0e12;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #f0c86a;
            transform: scale(1.02);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .main-content h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #f0e6d3;
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #d4a84b44;
            position: relative;
        }
        .main-content h2::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: #d4a84b;
        }
        .main-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e6dccf;
            margin: 2rem 0 0.75rem 0;
        }
        .main-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #cfd4de;
            margin: 1.5rem 0 0.5rem 0;
        }
        .main-content p {
            margin-bottom: 1.1rem;
            color: #dce0e8;
        }
        .main-content strong {
            color: #f0e6d3;
            font-weight: 600;
        }
        .main-content ul,
        .main-content ol {
            margin-bottom: 1.25rem;
            color: #dce0e8;
        }
        .main-content li {
            margin-bottom: 0.4rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #2a3140;
            background: #1a1e26;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            padding: 0.75rem 1rem;
            font-size: 0.85rem;
            color: #aab2c0;
            background: #14181f;
            border-top: 1px solid #2a3140;
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            background: #14181f;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #2a3140;
        }
        .info-table th {
            background: #1f2a35;
            color: #f0e6d3;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .info-table td {
            padding: 0.7rem 1rem;
            border-top: 1px solid #2a3140;
            color: #dce0e8;
        }
        .info-table tr:hover td {
            background: #1a222e55;
        }
        .sidebar-card {
            background: #14181f;
            border: 1px solid #2a3140;
            border-radius: 10px;
            padding: 1.25rem 1.5rem;
            margin-bottom: 1.5rem;
            transition: box-shadow 0.2s;
        }
        .sidebar-card:hover {
            box-shadow: 0 4px 20px #00000040;
        }
        .sidebar-card h3 {
            font-size: 1.15rem;
            color: #f0e6d3;
            margin-bottom: 0.75rem;
            border-bottom: 1px solid #2a3140;
            padding-bottom: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.5rem;
        }
        .sidebar-card li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.3rem 0;
            font-size: 0.92rem;
        }
        .sidebar-card li a i {
            width: 1.2rem;
            color: #d4a84b;
        }
        .comment-rating-section {
            background: #14181f;
            border: 1px solid #2a3140;
            border-radius: 10px;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
        }
        .comment-rating-section h3 {
            font-size: 1.4rem;
            color: #f0e6d3;
            margin-bottom: 1rem;
        }
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem 1.5rem;
        }
        .form-grid .full-width {
            grid-column: 1 / -1;
        }
        .form-grid label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.25rem;
            color: #cfd4de;
            font-size: 0.9rem;
        }
        .form-grid input,
        .form-grid textarea,
        .form-grid select {
            width: 100%;
            padding: 0.6rem 0.9rem;
            border: 1px solid #3a4355;
            border-radius: 6px;
            background: #1a1e26;
            color: #e2e6ec;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.2s;
        }
        .form-grid input:focus,
        .form-grid textarea:focus,
        .form-grid select:focus {
            outline: none;
            border-color: #d4a84b;
            box-shadow: 0 0 0 3px #d4a84b22;
        }
        .form-grid textarea {
            resize: vertical;
            min-height: 90px;
        }
        .form-grid .star-rating {
            display: flex;
            gap: 0.35rem;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .form-grid .star-rating input {
            display: none;
        }
        .form-grid .star-rating label {
            font-size: 1.6rem;
            color: #4a5260;
            cursor: pointer;
            transition: color 0.15s;
        }
        .form-grid .star-rating label:hover,
        .form-grid .star-rating label:hover~label,
        .form-grid .star-rating input:checked~label {
            color: #f0c86a;
        }
        .btn-submit {
            background: #d4a84b;
            border: none;
            border-radius: 6px;
            padding: 0.7rem 2rem;
            color: #0c0e12;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn-submit:hover {
            background: #f0c86a;
            transform: scale(1.02);
        }
        .btn-submit i {
            margin-right: 0.4rem;
        }
        .site-footer {
            background: #0f141c;
            border-top: 2px solid #2a3140;
            padding: 2rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        .footer-grid h4 {
            color: #f0e6d3;
            font-size: 1.05rem;
            margin-bottom: 0.75rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid li {
            margin-bottom: 0.3rem;
        }
        .footer-grid a {
            font-size: 0.9rem;
            color: #aab2c0;
        }
        .footer-grid a:hover {
            color: #d4a84b;
        }
        friend-link {
            display: block;
            padding: 1rem 0;
            border-top: 1px solid #2a3140;
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #aab2c0;
        }
        friend-link a {
            margin: 0 0.5rem 0 0.25rem;
            color: #aab2c0;
        }
        friend-link a:hover {
            color: #d4a84b;
        }
        .copyright {
            text-align: center;
            padding-top: 1rem;
            font-size: 0.85rem;
            color: #6e7685;
            border-top: 1px solid #1f2735;
        }
        .copyright strong {
            color: #aab2c0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0.5rem;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid #2a3140;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 0.25rem;
                width: 100%;
                border-bottom: 1px solid #2a314055;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .search-form input[type="text"] {
                min-width: 140px;
            }
            .comment-rating-section {
                padding: 1rem 1.25rem;
            }
            .info-table {
                font-size: 0.85rem;
            }
            .info-table th,
            .info-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 0.2rem 0.5rem;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.25rem;
            }
            .sidebar-card {
                padding: 0.9rem 1rem;
            }
        }
        .text-accent {
            color: #d4a84b;
        }
        .text-muted {
            color: #7a8290;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .last-updated {
            display: inline-block;
            font-size: 0.85rem;
            color: #7a8290;
            background: #1a1e26;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            border: 1px solid #2a3140;
        }
