* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #FF6B00;
            --secondary: #1A237E;
            --accent: #FFD600;
            --light: #F8F9FA;
            --dark: #212529;
            --gray: #6C757D;
            --spacing: 1.5rem;
            --radius: 8px;
        }
        body {
            background-color: #F5F5F5;
            color: var(--dark);
            line-height: 1.8;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing);
        }
        header {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--accent);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background-color: var(--accent);
            color: var(--secondary);
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }
        .btn:hover {
            background-color: #FFC107;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #28A745;
            color: white;
            margin-right: 1rem;
        }
        .btn-download:hover {
            background-color: #218838;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            padding: 3rem 0;
        }
        .page-title {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 800;
            position: relative;
            padding-bottom: 1rem;
        }
        .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }
        .intro-section {
            background-color: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        .intro-text h2 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .intro-text p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        .intro-image img {
            width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .key-features {
            background-color: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        .section-title {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 2px;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .feature-card {
            background-color: #F9FAFB;
            border-radius: var(--radius);
            padding: 1.5rem;
            border-left: 4px solid var(--primary);
            transition: transform 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.08);
        }
        .feature-card h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feature-card h3 i {
            color: var(--primary);
            font-size: 1.5rem;
        }
        .gameplay-section {
            background-color: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        .gameplay-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
        }
        .gameplay-details p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        .gameplay-sidebar {
            background-color: #F9FAFB;
            border-radius: var(--radius);
            padding: 1.5rem;
            border-top: 4px solid var(--accent);
        }
        .gameplay-sidebar h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .gameplay-sidebar ul {
            list-style: none;
        }
        .gameplay-sidebar li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }
        .gameplay-sidebar li::before {
            content: '🎮';
            font-size: 1.2rem;
        }
        .characters-section {
            background-color: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        .characters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }
        .character-card {
            background-color: #F9FAFB;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .character-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.08);
        }
        .character-img img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .character-info {
            padding: 1.2rem;
        }
        .character-info h3 {
            color: var(--secondary);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        .character-role {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
        }
        .character-desc {
            font-size: 0.95rem;
            color: var(--gray);
        }
        .levels-section {
            background-color: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        .levels-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1.5rem;
        }
        .levels-table th, .levels-table td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid #E9ECEF;
        }
        .levels-table th {
            background-color: var(--secondary);
            color: white;
            font-weight: 600;
        }
        .levels-table tr:nth-child(even) {
            background-color: #F9FAFB;
        }
        .levels-table tr:hover {
            background-color: #F1F3F5;
        }
        .level-difficulty {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .difficulty-easy {
            background-color: #D4EDDA;
            color: #155724;
        }
        .difficulty-medium {
            background-color: #FFF3CD;
            color: #856404;
        }
        .difficulty-hard {
            background-color: #F8D7DA;
            color: #721C24;
        }
        .tips-section {
            background-color: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
        }
        .tip-card {
            background-color: #F9FAFB;
            border-radius: var(--radius);
            padding: 1.5rem;
            position: relative;
            padding-left: 2.5rem;
        }
        .tip-card::before {
            content: '💡';
            position: absolute;
            left: 1rem;
            top: 1.5rem;
            font-size: 1.2rem;
        }
        .tip-card h3 {
            color: var(--secondary);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }
        .tip-card p {
            font-size: 0.95rem;
            color: var(--dark);
        }
        .community-section {
            background-color: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        .community-stats {
            display: flex;
            justify-content: space-around;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .stat-card {
            text-align: center;
            background-color: #F9FAFB;
            padding: 1.5rem;
            border-radius: var(--radius);
            width: 180px;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .stat-label {
            color: var(--gray);
            font-size: 0.95rem;
        }
        .community-events {
            background-color: #F9FAFB;
            border-radius: var(--radius);
            padding: 1.5rem;
        }
        .community-events h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .event-list {
            list-style: none;
        }
        .event-item {
            padding: 1rem 0;
            border-bottom: 1px solid #E9ECEF;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .event-item:last-child {
            border-bottom: none;
        }
        .event-details h4 {
            color: var(--dark);
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }
        .event-date {
            color: var(--gray);
            font-size: 0.9rem;
        }
        .event-btn {
            padding: 0.5rem 1rem;
            background-color: var(--primary);
            color: white;
            border-radius: var(--radius);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .event-btn:hover {
            background-color: #E05A00;
        }
        .faq-section {
            background-color: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            margin-bottom: 1rem;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid #E9ECEF;
        }
        .faq-question {
            background-color: #F9FAFB;
            padding: 1.2rem 1.5rem;
            font-weight: 600;
            color: var(--secondary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }
        .faq-question:hover {
            background-color: #F1F3F5;
        }
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: white;
        }
        .faq-answer.active {
            padding: 1.5rem;
            max-height: 500px;
        }
        .faq-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        .faq-icon.active {
            transform: rotate(180deg);
        }
        .cta-section {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: white;
            border-radius: var(--radius);
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }
        .cta-title {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        .cta-desc {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        .footer-about p {
            color: #ADB5BD;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ADB5BD;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .footer-newsletter h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
        .footer-newsletter h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }
        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .newsletter-input {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: var(--radius);
            font-size: 0.95rem;
        }
        .newsletter-btn {
            padding: 0.8rem 1.2rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .newsletter-btn:hover {
            background-color: #E05A00;
        }
        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #343A40;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid #343A40;
            text-align: center;
            color: #ADB5BD;
            font-size: 0.9rem;
        }
        .game-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 1.5rem 0;
        }
        .category-tag {
            padding: 0.5rem 1rem;
            background-color: #F1F3F5;
            color: var(--secondary);
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .category-tag:hover {
            background-color: var(--primary);
            color: white;
        }
        .tags-container {
            margin: 1.5rem 0;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .tag {
            padding: 0.4rem 0.9rem;
            background-color: #F8F9FA;
            color: var(--gray);
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--secondary);
            color: white;
        }
        .recommendation {
            background-color: #FFF8E1;
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 2rem 0;
        }
        .recommendation h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .recommendation h3 i {
            color: var(--accent);
        }
        .recommendation p {
            color: var(--dark);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        @media (max-width: 992px) {
            .intro-grid {
                grid-template-columns: 1fr;
            }
            .gameplay-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--secondary);
                padding: 1.5rem;
                gap: 1rem;
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .btn-group {
                display: none;
            }
            .mobile-buttons {
                display: flex;
                gap: 1rem;
                margin-top: 1rem;
            }
            .page-title {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .cta-title {
                font-size: 1.7rem;
            }
            .stat-card {
                width: 140px;
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 1rem;
            }
            .logo {
                font-size: 1.5rem;
            }
            .intro-section, .key-features, .gameplay-section, .characters-section, .levels-section, .tips-section, .community-section, .faq-section {
                padding: 1.5rem 1rem;
            }
            .features-grid, .tips-grid {
                grid-template-columns: 1fr;
            }
            .levels-table th, .levels-table td {
                padding: 0.8rem;
                font-size: 0.9rem;
            }
            .cta-buttons {
                flex-direction: column;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .stat-card {
                width: 100%;
            }
        }
