:root {
            --primary: #1a2a6c;
            --secondary: #d4a017;
            --accent: #c62828;
            --dark: #0d1b3e;
            --light: #f7f9fc;
            --gray: #6b7a8f;
            --gradient: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb30 100%);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.75;
            color: #2d2d2d;
            background: var(--light);
            font-size: 16px;
        }
        a {
            text-decoration: none;
            color: var(--primary);
            transition: all .2s;
        }
        a:hover {
            color: var(--accent);
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: transparent;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            font-weight: 900;
        }
        header {
            background: #fff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 3px solid transparent;
            border-image-slice: 1;
            border-image-source: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.5rem;
        }
        .my-logo i {
            color: var(--accent);
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--primary);
            border-radius: 6px;
            font-size: 1.3rem;
            color: var(--primary);
            padding: 8px 14px;
            cursor: pointer;
            transition: all .2s;
        }
        .nav-toggle:hover {
            background: var(--primary);
            color: #fff;
        }
        .main-nav {
            display: flex;
            gap: 4px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 8px 18px;
            font-weight: 600;
            font-size: .92rem;
            border-radius: 30px;
            color: var(--dark);
            transition: all .3s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(26, 42, 108, .3);
        }
        .breadcrumb {
            background: #f0f2f5;
            padding: 12px 0;
            font-size: .85rem;
            border-bottom: 1px solid #e8eaed;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        .breadcrumb a {
            color: var(--gray);
            transition: color .2s;
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb .sep {
            color: #bbb;
        }
        .breadcrumb .current {
            color: var(--dark);
            font-weight: 600;
        }
        .hero {
            position: relative;
            padding: 60px 0 50px;
            background: linear-gradient(135deg, #f0f4ff 0%, #e8edf5 100%);
            overflow: hidden;
            border-bottom: 1px solid #e0e4ea;
        }
        .hero::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 160, 23, .1) 0%, transparent 70%);
            top: -100px;
            right: -80px;
        }
        .hero::after {
            content: '⚾';
            position: absolute;
            font-size: 200px;
            opacity: .08;
            bottom: -30px;
            left: 20px;
            transform: rotate(-15deg);
        }
        .hero .container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero-content h1 {
            font-size: 2.7rem;
            line-height: 1.2;
            color: var(--dark);
            margin-bottom: 16px;
            font-weight: 900;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-content p {
            font-size: 1.05rem;
            color: var(--gray);
            margin-bottom: 24px;
            max-width: 500px;
        }
        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .hero-badge {
            background: #fff;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: .85rem;
            color: var(--primary);
            box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all .3s;
        }
        .hero-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
        }
        .hero-badge i {
            color: var(--secondary);
        }
        .hero-img {
            text-align: center;
        }
        .hero-img img {
            max-width: 100%;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(26, 42, 108, .15);
            transition: transform .4s ease;
        }
        .hero-img img:hover {
            transform: scale(1.02);
        }
        @keyframes float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        .hero-ball {
            position: absolute;
            animation: float 4s ease-in-out infinite;
        }
        .search-section {
            background: var(--dark);
            padding: 30px 0;
        }
        .search-box {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            border-radius: 40px;
            font-size: .95rem;
            outline: none;
            background: #fff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
        }
        .search-box button {
            padding: 14px 28px;
            border: none;
            border-radius: 40px;
            background: var(--secondary);
            color: var(--dark);
            font-weight: 700;
            font-size: .95rem;
            cursor: pointer;
            transition: all .3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-2px);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 30px;
            padding: 40px 0;
        }
        .sidebar {
            position: sticky;
            top: 90px;
            height: fit-content;
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
            border-left: 4px solid var(--secondary);
        }
        .sidebar h3 {
            font-size: 1rem;
            margin-bottom: 16px;
            color: var(--dark);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar ul li {
            margin-bottom: 2px;
        }
        .sidebar ul li a {
            display: block;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: .85rem;
            color: #444;
            transition: all .2s;
            border-left: 3px solid transparent;
        }
        .sidebar ul li a:hover {
            background: var(--light);
            color: var(--accent);
            border-left-color: var(--accent);
        }
        .article {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, .04);
        }
        .article h2 {
            font-size: 2rem;
            color: var(--dark);
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary);
            font-weight: 800;
            line-height: 1.3;
            position: relative;
        }
        .article h2:first-child {
            margin-top: 0;
        }
        .article h3 {
            font-size: 1.45rem;
            color: var(--primary);
            margin: 30px 0 12px;
            font-weight: 700;
            line-height: 1.3;
        }
        .article h4 {
            font-size: 1.2rem;
            color: #444;
            margin: 20px 0 10px;
            font-weight: 600;
        }
        .article p {
            font-size: 1.02rem;
            line-height: 1.9;
            margin-bottom: 16px;
            color: #444;
        }
        .article ul,
        .article ol {
            margin: 0 0 20px 24px;
            color: #444;
            line-height: 1.8;
        }
        .article li {
            margin-bottom: 6px;
            position: relative;
        }
        .article li::marker {
            color: var(--secondary);
        }
        .article img {
            max-width: 100%;
            border-radius: 12px;
            margin: 24px 0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
        }
        .article blockquote {
            border-left: 4px solid var(--secondary);
            background: var(--light);
            padding: 20px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: var(--primary);
            position: relative;
        }
        .article blockquote::before {
            content: '"';
            font-size: 4rem;
            color: var(--secondary);
            position: absolute;
            top: -10px;
            left: 10px;
            opacity: .3;
        }
        .info-box {
            background: linear-gradient(135deg, #f0f4ff, #faf6eb);
            border: 1px solid #e8e8e8;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 24px 0;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        .info-box i {
            font-size: 1.6rem;
            color: var(--secondary);
            flex-shrink: 0;
        }
        .info-box p {
            margin-bottom: 0;
            font-size: .95rem;
        }
        .game-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .game-card {
            background: var(--light);
            border-radius: 12px;
            padding: 24px;
            transition: all .3s;
            border: 1px solid #e8eaed;
            position: relative;
        }
        .game-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
        }
        .game-card .icon {
            font-size: 2rem;
            margin-bottom: 12px;
        }
        .game-card h4 {
            margin-bottom: 8px;
        }
        .game-card p {
            font-size: .9rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
        .rating-wrapper {
            text-align: center;
            padding: 30px 0;
        }
        .star-rating {
            display: inline-flex;
            flex-direction: row-reverse;
            gap: 6px;
            justify-content: center;
            font-size: 2.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd;
            transition: all .2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: var(--secondary);
            transform: scale(1.1);
        }
        .star-rating input:checked~label {
            color: var(--secondary);
        }
        .rating-submit {
            margin-top: 16px;
            padding: 10px 30px;
            border: none;
            border-radius: 30px;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all .3s;
        }
        .rating-submit:hover {
            background: var(--accent);
            transform: translateY(-2px);
        }
        .comment-form {
            margin: 30px 0;
            background: var(--light);
            padding: 24px;
            border-radius: 12px;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 100px;
            padding: 14px;
            border: 1px solid #e0e4ea;
            border-radius: 8px;
            font-size: .95rem;
            resize: vertical;
            margin-bottom: 14px;
            font-family: inherit;
        }
        .comment-form input {
            width: calc(50% - 8px);
            padding: 12px;
            border: 1px solid #e0e4ea;
            border-radius: 8px;
            font-size: .9rem;
            margin-bottom: 14px;
        }
        .comment-form input:first-of-type {
            margin-right: 12px;
        }
        .comment-form button {
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all .3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover {
            background: var(--accent);
            transform: translateY(-2px);
        }
        .faq-item {
            background: var(--light);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 16px;
            transition: all .3s;
            border-left: 4px solid var(--secondary);
        }
        .faq-item:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
        }
        .faq-item h4 {
            color: var(--dark);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer {
            background: var(--dark);
            color: #abb2c4;
            padding: 50px 0 0;
            font-size: .9rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
        }
        .footer h4 {
            color: #fff;
            margin-bottom: 16px;
            font-size: 1rem;
        }
        .footer a {
            color: #abb2c4;
        }
        .footer a:hover {
            color: var(--secondary);
        }
        .friend-links {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding: 20px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            justify-content: center;
        }
        .friend-links span {
            color: #777;
            font-size: .85rem;
        }
        .friend-links a {
            font-size: .85rem;
        }
        .copyright {
            background: rgba(0, 0, 0, .3);
            text-align: center;
            padding: 18px 0;
            font-size: .8rem;
            color: #666;
        }
        .copyright a {
            color: var(--secondary);
        }
        @media(max-width:768px) {
            .header-inner {
                padding: 12px 16px;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0;
                gap: 8px;
            }
            .main-nav.show {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 12px 16px;
                border-radius: 8px;
            }
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-content h1 {
                font-size: 2.1rem;
            }
            .hero-content p {
                font-size: .95rem;
            }
            .hero-badges {
                justify-content: center;
            }
            .hero-img {
                order: -1;
            }
            .content-wrapper {
                grid-template-columns: 1fr;
                padding: 20px 0;
            }
            .sidebar {
                display: none;
            }
            .article {
                padding: 24px 18px;
                border-radius: 12px;
            }
            .article h2 {
                font-size: 1.5rem;
                margin-top: 30px;
            }
            .article h3 {
                font-size: 1.2rem;
            }
            .comment-form input {
                width: 100%;
                margin-right: 0 !important;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: left;
            }
            .search-box {
                flex-direction: column;
                padding: 0 16px;
            }
            .search-box input,
            .search-box button {
                width: 100%;
                border-radius: 30px;
            }
        }
        @media(max-width:480px) {
            .hero {
                padding: 30px 0;
            }
            .hero-content h1 {
                font-size: 1.6rem;
            }
            .article {
                padding: 20px 14px;
            }
            .article p {
                font-size: .95rem;
            }
        }
