        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0D0A08;
            color: #F5F0E8;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #E8C84A;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #FFD966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #F5E6C8;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #C9A852;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #C9A852;
            padding-left: 0.8rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #E8D5A3;
        }
        h4 {
            font-size: 1.15rem;
            color: #DCC89A;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1A0E0A 0%, #2C1810 100%);
            border-bottom: 2px solid #C9A852;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #E8C84A;
            text-shadow: 0 0 12px rgba(232, 200, 74, 0.3);
            transition: transform 0.3s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #D4A017;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 300;
            color: #C9A852;
            display: block;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #C9A852;
            color: #E8C84A;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .nav-toggle:hover {
            background: rgba(201, 168, 82, 0.15);
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            font-weight: 500;
            color: #E8D5A3;
            border-radius: 4px;
            transition: background 0.25s, color 0.25s;
            font-size: 0.92rem;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(201, 168, 82, 0.18);
            color: #FFD966;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem 0;
            font-size: 0.85rem;
            color: #B8A88A;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: #C9A852;
        }
        .breadcrumb a:hover {
            color: #FFD966;
        }
        .breadcrumb span {
            color: #A09078;
        }
        .breadcrumb .current {
            color: #E8D5A3;
            font-weight: 500;
        }
        .hero-wrapper {
            margin: 1.6rem 0 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            border: 1px solid #3A2A1A;
            position: relative;
        }
        .hero-wrapper img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .hero-caption {
            background: linear-gradient(transparent, rgba(13, 10, 8, 0.92));
            padding: 1.2rem 1.6rem 1rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            color: #F5E6C8;
            font-size: 0.9rem;
            font-style: italic;
        }
        .content-area {
            background: #12100C;
            padding: 2rem 1.8rem;
            border-radius: 12px;
            border: 1px solid #2E2218;
            margin: 1.6rem 0;
        }
        .content-area p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .content-area .highlight {
            background: linear-gradient(120deg, rgba(201, 168, 82, 0.12), rgba(201, 168, 82, 0.04));
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-weight: 600;
            color: #E8D5A3;
        }
        .insight-box {
            background: #1E1812;
            border-left: 5px solid #C9A852;
            padding: 1.2rem 1.6rem;
            margin: 1.8rem 0;
            border-radius: 6px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
        }
        .insight-box strong {
            color: #E8C84A;
        }
        .player-quote {
            font-style: italic;
            background: #1A1410;
            padding: 1.2rem 1.8rem;
            border-radius: 10px;
            border: 1px solid #3A2A1A;
            margin: 1.6rem 0;
            position: relative;
        }
        .player-quote::before {
            content: '\201C';
            font-size: 3.2rem;
            color: #C9A852;
            position: absolute;
            top: -0.2rem;
            left: 0.6rem;
            opacity: 0.5;
        }
        .player-quote p {
            margin-bottom: 0.3rem;
        }
        .player-quote .attribution {
            text-align: right;
            font-weight: 600;
            color: #C9A852;
            font-style: normal;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.8rem 0;
        }
        .stat-card {
            background: #1E1812;
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #2E2218;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
            border-color: #C9A852;
        }
        .stat-card .number {
            font-size: 2rem;
            font-weight: 800;
            color: #E8C84A;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #B8A88A;
            margin-top: 0.2rem;
        }
        .link-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
            padding: 1rem 0;
            margin: 1.2rem 0;
            border-top: 1px solid #2E2218;
            border-bottom: 1px solid #2E2218;
        }
        .link-cloud a {
            font-size: 0.9rem;
            padding: 0.2rem 0.6rem;
            background: rgba(201, 168, 82, 0.08);
            border-radius: 20px;
            transition: background 0.25s;
        }
        .link-cloud a:hover {
            background: rgba(201, 168, 82, 0.2);
        }
        .form-section {
            background: #181410;
            padding: 1.6rem 1.8rem;
            border-radius: 10px;
            border: 1px solid #2E2218;
            margin: 2rem 0;
        }
        .form-section h3 {
            margin-top: 0;
            border-bottom: 1px solid #2E2218;
            padding-bottom: 0.4rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            color: #E8D5A3;
            margin-bottom: 0.3rem;
            font-size: 0.92rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 6px;
            border: 1px solid #3A2A1A;
            background: #0D0A08;
            color: #F5F0E8;
            font-size: 0.95rem;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #C9A852;
            box-shadow: 0 0 0 2px rgba(201, 168, 82, 0.2);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #C9A852;
            color: #0D0A08;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #E8C84A;
            transform: translateY(-1px);
        }
        .btn:active {
            transform: translateY(0);
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #5A4A3A;
            cursor: pointer;
            transition: color 0.25s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #E8C84A;
        }
        .rating-stars i {
            transition: color 0.2s;
        }
        .site-footer {
            background: #0A0806;
            border-top: 2px solid #2E2218;
            padding: 2.4rem 0 1.6rem 0;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner friend-link {
            display: block;
        }
        .footer-inner friend-link a {
            display: inline-block;
            padding: 0.3rem 0;
            color: #B8A88A;
            font-size: 0.92rem;
        }
        .footer-inner friend-link a:hover {
            color: #E8C84A;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 1.6rem;
            border-top: 1px solid #1E1812;
            color: #7A6A5A;
            font-size: 0.9rem;
        }
        .copyright strong {
            color: #C9A852;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1A0E0A;
                padding: 1rem 0.5rem;
                border-top: 1px solid #2E2218;
                margin-top: 0.8rem;
                gap: 0.1rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1rem;
                border-bottom: 1px solid #1E1812;
                width: 100%;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .content-area {
                padding: 1.2rem 1rem;
            }
            .hero-caption {
                position: relative;
                background: #1A1410;
                padding: 0.8rem 1rem;
                font-size: 0.82rem;
            }
            .hero-wrapper img {
                max-height: 220px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .form-section {
                padding: 1rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        .text-gold {
            color: #E8C84A;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #8A7A6A;
            text-align: right;
            margin-top: 0.2rem;
            font-style: italic;
        }
