* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        }
        :root {
            --primary: #FF6B35;
            --primary-dark: #E55A2B;
            --secondary: #004E89;
            --accent: #FFBE0B;
            --bg-light: #FFF8F0;
            --bg-card: #FFFFFF;
            --text-dark: #1A1A2E;
            --text-mid: #4A4A6A;
            --text-light: #7A7A9A;
            --border: #E8E0D8;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --radius-sm: 8px;
            --max-width: 1200px;
            --header-h: 72px;
            --gold: #FFD700;
            --green: #2ECC71;
            --red: #E74C3C;
            --orange: #F39C12;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            padding-top: var(--header-h);
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-h);
            background: var(--bg-card);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            border-bottom: 3px solid var(--primary);
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: var(--secondary);
        }
        .my-logo span {
            color: var(--secondary);
            font-weight: 300;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-dark);
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: var(--bg-light);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text-mid);
            transition: all 0.25s;
            white-space: nowrap;
        }
        nav a:hover,
        nav a.active {
            background: var(--primary);
            color: #fff;
        }
        .breadcrumb {
            background: var(--bg-card);
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.85rem;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb .sep {
            color: var(--text-light);
            margin: 0 2px;
        }
        .breadcrumb .current {
            color: var(--text-mid);
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, var(--secondary) 0%, #002855 50%, var(--primary-dark) 100%);
            color: #fff;
            padding: 60px 20px 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🧩";
            position: absolute;
            right: -30px;
            bottom: -30px;
            font-size: 180px;
            opacity: 0.08;
            transform: rotate(-10deg);
        }
        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.6rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .hero h1 i {
            color: var(--accent);
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto 24px;
            opacity: 0.9;
            line-height: 1.8;
        }
        .hero .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(4px);
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .hero .badge i {
            color: var(--accent);
        }
        .last-updated {
            display: inline-block;
            margin-top: 12px;
            font-size: 0.85rem;
            opacity: 0.7;
            background: rgba(255, 255, 255, 0.1);
            padding: 4px 16px;
            border-radius: 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: calc(var(--header-h) + 20px);
            align-self: start;
        }
        @media(max-width:900px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-content {
                order: 1;
            }
        }
        .content h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--primary);
            display: inline-block;
        }
        .content h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 32px 0 12px;
        }
        .content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-mid);
            margin: 24px 0 8px;
        }
        .content p {
            margin-bottom: 18px;
            color: var(--text-mid);
            font-size: 1.02rem;
        }
        .content ul,
        .content ol {
            margin: 12px 0 20px 24px;
            color: var(--text-mid);
        }
        .content li {
            margin-bottom: 8px;
        }
        .content .highlight-box {
            background: var(--bg-card);
            border-left: 5px solid var(--primary);
            padding: 20px 24px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 24px 0;
            box-shadow: var(--shadow);
        }
        .content .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .content .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .content .stat-card {
            background: var(--bg-card);
            padding: 20px 16px;
            border-radius: var(--radius-sm);
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .content .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
        }
        .content .stat-card .label {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 500;
        }
        .content .player-quote {
            background: var(--bg-card);
            padding: 24px 28px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 24px 0;
            position: relative;
            border: 1px solid var(--border);
        }
        .content .player-quote::before {
            content: "“";
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.25;
            position: absolute;
            top: -8px;
            left: 12px;
            font-family: Georgia, serif;
            line-height: 1;
        }
        .content .player-quote p {
            font-style: italic;
            font-size: 1.05rem;
            margin-bottom: 8px;
        }
        .content .player-quote .attribution {
            font-weight: 600;
            color: var(--secondary);
            font-style: normal;
            font-size: 0.9rem;
        }
        .content .player-quote .attribution i {
            color: var(--accent);
        }
        .content img.featured {
            width: 100%;
            border-radius: var(--radius);
            margin: 28px 0;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card h3 i {
            color: var(--primary);
        }
        .sidebar-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-link-list li {
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
        }
        .sidebar-link-list li:last-child {
            border-bottom: none;
        }
        .sidebar-link-list a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.92rem;
            font-weight: 500;
        }
        .sidebar-link-list a i {
            color: var(--primary);
            width: 18px;
            text-align: center;
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 16px 0 8px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
            background: var(--bg-light);
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 0 20px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
        }
        .search-form button:hover {
            background: var(--primary-dark);
        }
        .comment-section,
        .rating-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 24px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin: 32px 0;
        }
        .comment-section h2,
        .rating-section h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: none;
            padding-bottom: 0;
        }
        .comment-section h2 i,
        .rating-section h2 i {
            color: var(--primary);
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }
        .comment-form textarea {
            padding: 14px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.25s;
            background: var(--bg-light);
        }
        .comment-form textarea:focus {
            border-color: var(--primary);
        }
        .comment-form input,
        .rating-form input {
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
            background: var(--bg-light);
        }
        .comment-form input:focus,
        .rating-form input:focus {
            border-color: var(--primary);
        }
        .comment-form button,
        .rating-form button {
            background: var(--secondary);
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #003b6a;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
            align-self: flex-start;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            transition: color 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
        }
        footer {
            background: var(--text-dark);
            color: #ccc;
            padding: 48px 20px 24px;
            margin-top: 40px;
            border-top: 4px solid var(--primary);
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        footer h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 12px;
            font-weight: 600;
        }
        footer p,
        footer a {
            color: #aaa;
            font-size: 0.9rem;
        }
        footer a:hover {
            color: var(--primary);
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.04);
            padding: 16px 20px;
            border-radius: var(--radius-sm);
            margin-top: 8px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
            font-weight: 500;
        }
        .copyright {
            grid-column: 1/-1;
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: #888;
            margin-top: 16px;
        }
        .copyright strong {
            color: #ccc;
        }
        @media(max-width:768px) {
            header {
                padding: 0 16px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                position: absolute;
                top: var(--header-h);
                left: 0;
                width: 100%;
                background: var(--bg-card);
                flex-direction: column;
                padding: 16px 20px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
                border-bottom: 3px solid var(--primary);
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 12px 16px;
                border-radius: var(--radius-sm);
                width: 100%;
            }
            nav a:hover {
                background: var(--bg-light);
                color: var(--primary);
            }
            .hero {
                padding: 40px 16px 36px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .main-grid {
                padding: 24px 0;
                gap: 24px;
            }
            footer .container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .content h2 {
                font-size: 1.4rem;
            }
            .content h3 {
                font-size: 1.15rem;
            }
            .comment-section,
            .rating-section {
                padding: 20px 16px;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        @media(max-width:480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                padding: 12px;
                justify-content: center;
            }
            .content .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .to-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: var(--primary);
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
            cursor: pointer;
            transition: transform 0.2s, opacity 0.3s;
            opacity: 0;
            pointer-events: none;
            border: none;
            z-index: 99;
        }
        .to-top.show {
            opacity: 1;
            pointer-events: auto;
        }
        .to-top:hover {
            transform: translateY(-4px);
        }
        .tag {
            display: inline-block;
            background: var(--accent);
            color: var(--text-dark);
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .divider {
            width: 60px;
            height: 3px;
            background: var(--primary);
            margin: 8px 0 20px;
            border-radius: 4px;
        }
