        *,
        *::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: #0b0a0a;
            color: #e6dccb;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f0e7d3;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: clamp(2.2rem, 5vw, 3.6rem);
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.4rem);
            margin-top: 3rem;
            margin-bottom: 0.75rem;
            border-bottom: 2px solid #5a4a3a;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            margin-top: 2rem;
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-top: 1.5rem;
            margin-bottom: 0.4rem;
            color: #d4c9b5;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: #141110;
            border-bottom: 2px solid #3a2e24;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            background: rgba(20, 17, 16, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            background: linear-gradient(135deg, #f5c542, #d4a84b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c542;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #b8a68e;
            display: block;
            line-height: 1;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c542;
            color: #f5c542;
            font-size: 1.6rem;
            padding: 0.25rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a221d;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.25rem 1.2rem;
            list-style: none;
        }
        .nav-menu li a {
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.3rem 0;
            color: #cfc3b2;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-menu li a:hover {
            color: #f5c542;
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 0.9rem 0 0.3rem;
            font-size: 0.85rem;
            color: #a89a88;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #c9b89e;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .sep {
            color: #6a5e50;
        }
        .hero {
            padding: 2.5rem 0 1.5rem;
            text-align: center;
            background: radial-gradient(ellipse at 50% 30%, #2d221b, #0b0a0a);
        }
        .hero h1 {
            font-size: clamp(2.4rem, 6vw, 4rem);
            font-weight: 800;
            background: linear-gradient(135deg, #f5c542, #e8b84a, #c9a03a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.02em;
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: #c4b49e;
            max-width: 720px;
            margin: 0.5rem auto 0;
        }
        .hero .meta-info {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #9a8c7a;
        }
        .hero .meta-info i {
            margin-right: 0.3rem;
        }
        .search-bar {
            display: flex;
            max-width: 520px;
            margin: 1.6rem auto 0;
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid #5a4a3a;
            background: #1c1815;
            transition: border-color 0.25s;
        }
        .search-bar:focus-within {
            border-color: #f5c542;
        }
        .search-bar input {
            flex: 1;
            padding: 0.75rem 1.2rem;
            border: none;
            background: transparent;
            color: #e6dccb;
            font-size: 1rem;
            outline: none;
        }
        .search-bar input::placeholder {
            color: #7a6e5e;
        }
        .search-bar button {
            background: #f5c542;
            border: none;
            padding: 0 1.4rem;
            color: #141110;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-weight: 600;
        }
        .search-bar button:hover {
            background: #e8b84a;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0 3rem;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
            background: #141110;
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid #3a2e24;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 1rem;
            color: #f5c542;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar ul li {
            margin-bottom: 0.6rem;
        }
        .sidebar ul li a {
            color: #c9b89e;
            font-size: 0.92rem;
            border-left: 3px solid transparent;
            padding-left: 0.6rem;
            transition: border-color 0.2s, color 0.2s;
        }
        .sidebar ul li a:hover {
            border-left-color: #f5c542;
            color: #f5c542;
            text-decoration: none;
        }
        .feature-image {
            margin: 1.8rem 0;
            border-radius: 12px;
            overflow: hidden;
            background: #1c1815;
            border: 1px solid #3a2e24;
        }
        .feature-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .feature-image figcaption {
            padding: 0.7rem 1.2rem;
            font-size: 0.85rem;
            color: #a89a88;
            font-style: italic;
            background: #1c1815;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.92rem;
            background: #141110;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #3a2e24;
        }
        .data-table th {
            background: #2a221d;
            color: #f5c542;
            font-weight: 600;
            padding: 0.8rem 1rem;
            text-align: left;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #2a221d;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #1f1a16;
        }
        .player-quote {
            background: #1c1815;
            border-left: 5px solid #f5c542;
            padding: 1.2rem 1.8rem;
            margin: 1.8rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #d4c9b5;
        }
        .player-quote .attribution {
            margin-top: 0.6rem;
            font-style: normal;
            font-weight: 600;
            color: #f5c542;
        }
        .stat-highlight {
            display: inline-block;
            background: #2a221d;
            padding: 0.1rem 0.6rem;
            border-radius: 4px;
            color: #f5c542;
            font-weight: 600;
        }
        .interaction-section {
            margin: 2.5rem 0;
            padding: 1.8rem;
            background: #141110;
            border-radius: 14px;
            border: 1px solid #3a2e24;
        }
        .interaction-section h3 {
            margin-top: 0;
            color: #f5c542;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.3rem;
            color: #cfc3b2;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #4a3e30;
            border-radius: 8px;
            background: #1c1815;
            color: #e6dccb;
            font-size: 0.95rem;
            transition: border-color 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f5c542;
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #f5c542;
            color: #141110;
            font-weight: 700;
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.2s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .btn-secondary {
            background: #2a221d;
            color: #e6dccb;
        }
        .btn-secondary:hover {
            background: #3a2e24;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            cursor: pointer;
            color: #5a4a3a;
            transition: color 0.15s;
        }
        .star-rating i.active {
            color: #f5c542;
        }
        .star-rating i:hover,
        .star-rating i.hover {
            color: #f5c542;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.6rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.6rem 0.3rem 0;
            padding: 0.35rem 1rem;
            background: #2a221d;
            border-radius: 20px;
            font-size: 0.9rem;
            color: #cfc3b2;
            border: 1px solid #4a3e30;
            transition: background 0.2s, border-color 0.2s;
        }
        friend-link a:hover {
            background: #3a2e24;
            border-color: #f5c542;
            color: #f5c542;
            text-decoration: none;
        }
        friend-link .friend-label {
            font-weight: 600;
            color: #a89a88;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            display: block;
            margin-bottom: 0.4rem;
        }
        .site-footer {
            background: #0d0b0a;
            border-top: 2px solid #2a221d;
            padding: 1.8rem 0;
            text-align: center;
            color: #8a7e6e;
            font-size: 0.85rem;
        }
        .site-footer .copyright {
            margin-top: 0.6rem;
        }
        .site-footer a {
            color: #c9b89e;
        }
        @media (max-width: 820px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 2rem;
            }
        }
        @media (max-width: 640px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.2rem 0;
                padding: 0.8rem 0 0.2rem;
                border-top: 1px solid #3a2e24;
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li {
                width: 100%;
            }
            .nav-menu li a {
                display: block;
                padding: 0.5rem 0;
                border-bottom: none;
            }
            .search-bar {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-bar button {
                padding: 0.6rem 1rem;
                justify-content: center;
            }
            .interaction-section {
                padding: 1.2rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: clamp(1.8rem, 7vw, 2.6rem);
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 400px) {
            .header-inner {
                flex-direction: column;
                align-items: stretch;
            }
            .my-logo {
                font-size: 1.5rem;
                justify-content: space-between;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 0.2rem 0.4rem;
            }
        }
        .badge {
            display: inline-block;
            background: #f5c542;
            color: #141110;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            letter-spacing: 0.04em;
            margin-left: 0.4rem;
        }
        .text-gold {
            color: #f5c542;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .emoji-big {
            font-size: 1.4em;
        }
        .inline-list {
            display: inline;
            list-style: none;
        }
        .inline-list li {
            display: inline;
        }
        .inline-list li::after {
            content: " · ";
            color: #6a5e50;
        }
        .inline-list li:last-child::after {
            content: "";
        }
