        *,
        *::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: #f8f6f0;
            color: #1e2a3a;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.75rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0f1a2b;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #2c3e50;
        }
        h4 {
            font-size: 1.1rem;
            color: #3a4a5f;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f1a2b 0%, #1a2d42 100%);
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #d4af37;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f0d060;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #f0d060;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0e6d0;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .primary-nav {
            display: flex;
            gap: 0.3rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            color: #e8dcc8;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.25s, color 0.25s;
        }
        .primary-nav a:hover,
        .primary-nav a.active {
            background: #d4af37;
            color: #0f1a2b;
            text-decoration: none;
        }
        .primary-nav a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #ece7db;
            padding: 0.6rem 0;
            font-size: 0.92rem;
            border-bottom: 1px solid #d6cfc0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #8a7a60;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #5a4a30;
        }
        .breadcrumb .current {
            color: #1e2a3a;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #f5efe6, #e8dfd0);
            padding: 2.5rem 0 2rem;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            color: #0f1a2b;
            margin-bottom: 0.5rem;
        }
        .hero h1 i {
            color: #d4af37;
        }
        .hero .subhead {
            font-size: 1.2rem;
            color: #3a4a5f;
            max-width: 740px;
            margin: 0 auto 1.2rem;
        }
        .hero .meta {
            font-size: 0.95rem;
            color: #6a5a40;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .hero .meta span i {
            margin-right: 6px;
            color: #b8860b;
        }
        .search-section {
            background: #fff;
            padding: 1.2rem 0;
            border-bottom: 1px solid #e0d6c8;
        }
        .search-form {
            display: flex;
            max-width: 580px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.8rem 1.4rem;
            border: 2px solid #d4c8b4;
            border-right: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            background: #faf8f4;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #d4af37;
            background: #fff;
        }
        .search-form button {
            padding: 0.8rem 1.8rem;
            background: #d4af37;
            border: none;
            color: #0f1a2b;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            border-radius: 0 50px 50px 0;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #c49f2e;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        .content-area article {
            background: #fff;
            padding: 2rem 2.2rem;
            border-radius: 18px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-card {
            background: #fff;
            padding: 1.5rem 1.6rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #ece6da;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            padding: 0.4rem 0;
            border-bottom: 1px dashed #e8e0d4;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        .prize-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .prize-table thead {
            background: #0f1a2b;
            color: #f0e6d0;
        }
        .prize-table th {
            padding: 0.9rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .prize-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e8e0d4;
        }
        .prize-table tbody tr:hover {
            background: #f8f3ea;
        }
        .prize-table .total-row {
            background: #f0e8da;
            font-weight: 700;
        }
        .feedback-section {
            margin-top: 2.5rem;
            padding-top: 1.8rem;
            border-top: 2px solid #e8e0d4;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d4c8b4;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #faf8f4;
            transition: border-color 0.3s;
            margin-bottom: 0.8rem;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #d4af37;
            background: #fff;
            outline: none;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            padding: 0.7rem 2rem;
            background: #d4af37;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            color: #0f1a2b;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #c49f2e;
            transform: translateY(-1px);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #d4af37;
            color: #0f1a2b;
        }
        .btn-outline:hover {
            background: #d4af37;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 0.6rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #d4c8b4;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #d4af37;
        }
        .site-footer {
            background: #0f1a2b;
            color: #d6cfc0;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: #d4af37;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #c8b898;
        }
        .site-footer a:hover {
            color: #f0d060;
        }
        .footer-bottom {
            border-top: 1px solid #2a3a4f;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
        }
        .footer-bottom .copyright {
            color: #a89880;
        }
        friend-link {
            display: block;
            background: #1a2d42;
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0 0.5rem;
            border-left: 4px solid #d4af37;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            margin: 0.6rem 0 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
        }
        friend-link li {
            margin-bottom: 0.2rem;
        }
        friend-link a {
            color: #e8dcc8;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #f0d060;
            text-decoration: underline;
        }
        friend-link .fl-title {
            font-weight: 700;
            color: #d4af37;
            font-size: 1.05rem;
        }
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f1a2b;
                padding: 0.8rem 0 1.2rem;
                border-top: 1px solid #2a3a4f;
                margin-top: 0.6rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.6rem 1.2rem;
                width: 100%;
                border-radius: 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero .subhead {
                font-size: 1rem;
            }
            .content-area article {
                padding: 1.2rem 1rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .prize-table {
                font-size: 0.82rem;
            }
            .prize-table th,
            .prize-table td {
                padding: 0.5rem 0.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero .meta {
                flex-direction: column;
                gap: 0.4rem;
            }
            .search-form input[type="text"] {
                padding: 0.6rem 1rem;
            }
            .search-form button {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            .btn {
                padding: 0.6rem 1.4rem;
                font-size: 0.9rem;
            }
        }
        .highlight {
            background: #fcf6e8;
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .text-gold {
            color: #b8860b;
        }
        .text-sm {
            font-size: 0.9rem;
        }
        .mt-2 {
            margin-top: 1.2rem;
        }
        .mb-1 {
            margin-bottom: 0.6rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .inline-icon {
            margin-right: 6px;
            color: #b8860b;
        }
        .last-updated {
            display: inline-block;
            background: #f0e8da;
            padding: 0.2rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: #4a3a2a;
            font-weight: 600;
        }
        .feature-img {
            margin: 1.8rem 0;
            border-radius: 16px;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
        }
        .feature-img figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #6a5a40;
            margin-top: 0.4rem;
            font-style: italic;
        }
