        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f4f7fb;
            color: #1e293b;
            line-height: 1.7;
            padding: 0 0 0 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #0b5e7c;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #e65c1e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 0;
            color: #0a1e2f;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1.2rem;
            border-left: 6px solid #e65c1e;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #d0ddee;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            color: #15455e;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: #1c5f7a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        strong {
            color: #0b3b4f;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0a1e2f 0%, #1b4a5f 100%);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            background: linear-gradient(135deg, #f9d423, #e65c1e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #f9d423;
            font-size: 1.6rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.3rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e6edf5;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #f9d423;
            text-decoration: none;
        }
        .main-nav a.active {
            background: rgba(249, 212, 35, 0.18);
            color: #f9d423;
        }
        .breadcrumb-wrap {
            background: #fff;
            border-bottom: 1px solid #dce4ef;
            padding: 0.5rem 0;
            font-size: 0.85rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.5rem;
            color: #7c8ba0;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #0b5e7c;
        }
        .breadcrumb .current {
            color: #4a5b6e;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(145deg, #eef3fa 0%, #dce6f0 100%);
            padding: 2.5rem 0 2rem;
            border-radius: 0 0 40px 40px;
            margin-bottom: 2rem;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        .hero-text .badge {
            display: inline-block;
            background: #e65c1e;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            letter-spacing: 0.3px;
            margin-bottom: 0.8rem;
            text-transform: uppercase;
        }
        .hero-text h1 {
            font-size: 2.6rem;
            border-left: 6px solid #e65c1e;
            padding-left: 1rem;
            margin-bottom: 0.8rem;
        }
        .hero-text p {
            font-size: 1.1rem;
            color: #2c4056;
        }
        .hero-img {
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            background: #fff;
            padding: 0.5rem;
        }
        .search-section {
            background: #fff;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            margin: 2rem 0;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #dce4ef;
            border-radius: 40px;
            font-size: 1rem;
            transition: border 0.25s;
            background: #f9fbfd;
        }
        .search-form input:focus {
            border-color: #0b5e7c;
            outline: none;
            background: #fff;
        }
        .search-form button {
            background: #0b5e7c;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #15455e;
            transform: translateY(-2px);
        }
        .content-area {
            background: #fff;
            border-radius: 24px;
            padding: 2.5rem 2.5rem 2rem;
            box-shadow: 0 4px 28px rgba(0, 0, 0, 0.04);
            margin-bottom: 2rem;
        }
        .content-area .featured-img {
            margin: 1.8rem 0;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin: 1.8rem 0;
        }
        .stat-card {
            background: #f0f5fc;
            padding: 1.2rem 1rem;
            border-radius: 16px;
            text-align: center;
            border-left: 4px solid #e65c1e;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #0b3b4f;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #4a5b6e;
            font-weight: 500;
        }
        .tip-box {
            background: #eaf3f9;
            border-left: 5px solid #0b5e7c;
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            margin: 1.8rem 0;
        }
        .tip-box strong {
            color: #0b3b4f;
        }
        .player-quote {
            background: #f8f2e9;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            font-style: italic;
            margin: 1.8rem 0;
            position: relative;
            border: 1px solid #e6d9c9;
        }
        .player-quote::before {
            content: "“";
            font-size: 3.5rem;
            color: #e65c1e;
            position: absolute;
            top: -0.2rem;
            left: 0.8rem;
            line-height: 1;
            font-family: Georgia, serif;
        }
        .player-quote .author {
            font-style: normal;
            font-weight: 600;
            text-align: right;
            color: #15455e;
            margin-top: 0.5rem;
        }
        .interaction-area {
            background: #fff;
            border-radius: 24px;
            padding: 2rem 2.5rem;
            box-shadow: 0 4px 28px rgba(0, 0, 0, 0.04);
            margin-bottom: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #dce4ef;
            border-radius: 16px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            min-height: 90px;
            transition: border 0.25s;
            background: #f9fbfd;
        }
        .comment-form textarea:focus {
            border-color: #0b5e7c;
            outline: none;
            background: #fff;
        }
        .comment-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #dce4ef;
            border-radius: 40px;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            transition: border 0.25s;
            background: #f9fbfd;
        }
        .comment-form input:focus {
            border-color: #0b5e7c;
            outline: none;
            background: #fff;
        }
        .comment-form button,
        .rating-form button {
            background: #0b5e7c;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #15455e;
            transform: translateY(-2px);
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            color: #d0d8e2;
            cursor: pointer;
            margin: 0.5rem 0 1rem;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f9b81b;
            transform: scale(1.08);
        }
        .rating-form .score-value {
            font-weight: 700;
            color: #0b3b4f;
            font-size: 1.1rem;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0 0.5rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.6rem 0.3rem 0;
            padding: 0.4rem 1rem;
            background: #eef3fa;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #dce4ef;
            transition: all 0.2s;
        }
        friend-link a:hover {
            background: #0b5e7c;
            color: #fff;
            border-color: #0b5e7c;
            text-decoration: none;
        }
        .site-footer {
            background: #0a1e2f;
            color: #b5c9db;
            padding: 2rem 0 1.5rem;
            margin-top: auto;
        }
        .site-footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer a {
            color: #b5c9db;
        }
        .site-footer a:hover {
            color: #f9d423;
        }
        .site-footer .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #1f3e52;
            padding-top: 1.2rem;
            margin-top: 1.2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #7c9ab0;
        }
        .footer-logo {
            font-size: 1.4rem;
            font-weight: 700;
            color: #f9d423;
        }
        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-text h1 {
                font-size: 2rem;
                border-left: none;
                padding-left: 0;
            }
            .hero-text .badge {
                margin-left: auto;
                margin-right: auto;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .site-footer .container {
                grid-template-columns: 1fr 1fr;
            }
            .content-area {
                padding: 1.8rem 1.2rem;
            }
            .interaction-area {
                padding: 1.5rem 1.2rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 680px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(10, 30, 47, 0.98);
                padding: 1rem 0.5rem;
                border-radius: 0 0 20px 20px;
                margin-top: 0.5rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1.2rem;
                border-radius: 12px;
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .site-footer .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .hero-text h1 {
                font-size: 1.7rem;
            }
            .content-area {
                padding: 1.2rem 0.8rem;
                border-radius: 16px;
            }
            .interaction-area {
                padding: 1.2rem 0.8rem;
                border-radius: 16px;
            }
            .breadcrumb-wrap {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 420px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.25rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        .stat-card,
        .tip-box,
        .player-quote,
        .search-section,
        .content-area,
        .interaction-area {
            transition: box-shadow 0.3s ease;
        }
        .stat-card:hover {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        }
        .back-top {
            position: fixed;
            bottom: 1.8rem;
            right: 1.8rem;
            background: #0b5e7c;
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            transition: all 0.25s;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .back-top:hover {
            background: #e65c1e;
            transform: translateY(-4px);
            text-decoration: none;
            color: #fff;
        }
