:root {
            --primary: #FF6B6B;
            --secondary: #4ECDC4;
            --dark: #2C3E50;
            --light: #F7F9FC;
            --accent: #FFD166;
            --text: #333333;
            --gray: #95A5A6;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text);
            background-color: var(--light);
            font-size: 18px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        header {
            background-color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        .my-logo {
            font-size: 32px;
            font-weight: 900;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .my-logo a {
            color: inherit;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--accent);
        }
        .nav-container {
            display: flex;
            align-items: center;
        }
        .main-nav {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 50px;
            color: var(--dark);
        }
        .main-nav a:hover {
            background-color: var(--primary);
            color: white;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--dark);
            margin-left: 20px;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #f0f3f7;
            font-size: 16px;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb span {
            color: var(--dark);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        aside {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            font-size: 42px;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 4px solid var(--accent);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 32px;
            color: var(--dark);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        h3 {
            font-size: 26px;
            color: var(--dark);
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 22px;
            color: #555;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .lead {
            font-size: 22px;
            color: var(--dark);
            font-weight: 600;
            background-color: #f8f9fa;
            padding: 20px;
            border-left: 5px solid var(--primary);
            border-radius: 10px;
            margin: 25px 0;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff9e6, #fff0cc);
            border: 2px dashed var(--accent);
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 4px solid var(--secondary);
        }
        .stat-card i {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 25px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .form-section {
            background: var(--light);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            border: 1px solid #e1e8ed;
        }
        .form-group {
            margin-bottom: 20px;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 16px;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: var(--primary);
            outline: none;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0,0,0,0.1);
            text-decoration: none;
            color: white;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .rating-stars i {
            color: #FFD700;
            font-size: 24px;
            cursor: pointer;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: white;
            font-size: 22px;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        friend-link {
            display: block;
            padding: 10px 15px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(255,255,255,0.2);
        }
        friend-link a {
            color: #ddd;
        }
        friend-link a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 16px;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: white;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                border-radius: 0 0 15px 15px;
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
                align-self: flex-end;
                margin-top: -60px;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 24px;
            }
            article {
                padding: 25px;
            }
        }
        .accordion {
            margin: 25px 0;
        }
        .accordion-header {
            background: var(--light);
            padding: 20px;
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            border: 1px solid #e1e8ed;
        }
        .accordion-content {
            padding: 20px;
            background: white;
            border-radius: 0 0 10px 10px;
            display: none;
            border: 1px solid #e1e8ed;
            border-top: none;
        }
        .accordion.active .accordion-content {
            display: block;
        }
        .tooltip {
            position: relative;
            border-bottom: 1px dotted var(--primary);
            cursor: help;
        }
        .tooltip-text {
            visibility: hidden;
            width: 300px;
            background-color: var(--dark);
            color: white;
            text-align: center;
            padding: 10px;
            border-radius: 6px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .tooltip:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }
        .update-time {
            background: #e8f4fc;
            padding: 15px;
            border-radius: 10px;
            margin: 20px 0;
            font-size: 16px;
            color: #2c3e50;
        }
