        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #f9f7f3;
            padding-bottom: 50px;
        }
        .navbar {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            padding: 15px 30px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #fff;
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: #f39c12;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: #ecf0f1;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        .nav-links a:hover {
            color: #f39c12;
        }
        .btn {
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn-download {
            background-color: #27ae60;
            color: white;
            margin-right: 15px;
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
        }
        .btn-login {
            background-color: #f39c12;
            color: white;
        }
        .btn-login:hover {
            background-color: #e67e22;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(243, 156, 18, 0.3);
        }
        .hamburger {
            display: none;
            cursor: pointer;
        }
        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s ease;
        }
        .hero {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.4;
        }
        .hero h1 span {
            color: #e74c3c;
        }
        .hero p {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .hero-buttons {
            margin-top: 30px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }
        .section {
            margin-bottom: 60px;
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .section h2 {
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f39c12;
            display: inline-block;
        }
        .section h3 {
            font-size: 1.6rem;
            color: #34495e;
            margin: 30px 0 20px;
        }
        .section p {
            margin-bottom: 25px;
            font-size: 1.05rem;
            color: #555;
        }
        .section ul, .section ol {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        .section li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: #555;
        }
        .highlight {
            background-color: #fef9e7;
            border-left: 4px solid #f39c12;
            padding: 15px 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 500;
            color: #d35400;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .feature-card {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
        }
        .feature-card h4 {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .feature-card h4 i {
            margin-right: 10px;
            color: #e74c3c;
            font-size: 1.5rem;
        }
        .game-stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 40px 0;
            background-color: #f5f5f5;
            padding: 30px;
            border-radius: 12px;
        }
        .stat-item {
            text-align: center;
            margin: 15px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #e74c3c;
            margin-bottom: 5px;
        }
        .stat-label {
            font-size: 1rem;
            color: #7f8c8d;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .tabs {
            display: flex;
            border-bottom: 1px solid #ddd;
            margin-bottom: 30px;
        }
        .tab {
            padding: 15px 25px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            color: #7f8c8d;
            transition: all 0.3s ease;
        }
        .tab.active {
            border-bottom: 3px solid #e74c3c;
            color: #2c3e50;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 60px 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #f39c12;
            position: relative;
            padding-bottom: 15px;
        }
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #f39c12;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #f39c12;
            padding-left: 5px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        .tag {
            background-color: #34495e;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag a:hover {
            color: #f39c12;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid #34495e;
            font-size: 0.95rem;
            color: #bdc3c7;
        }
        .recommendation {
            background-color: #fef9e7;
            border-radius: 12px;
            padding: 25px;
            margin-top: 30px;
            border-left: 4px solid #f39c12;
        }
        .recommendation h4 {
            color: #d35400;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        .recommendation p {
            color: #5d4037;
            margin-bottom: 0;
        }
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                right: 0;
                top: 70px;
                height: calc(100vh - 70px);
                background-color: #2c3e50;
                flex-direction: column;
                align-items: center;
                width: 50%;
                transform: translateX(100%);
                transition: transform 0.3s ease-in-out;
                padding-top: 50px;
            }
            .nav-links li {
                margin: 20px 0;
            }
            .hamburger {
                display: block;
            }
            .nav-active {
                transform: translateX(0);
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .section h2 {
                font-size: 1.8rem;
            }
            .section h3 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }
            .hero {
                padding: 0 20px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1.05rem;
            }
            .container {
                padding: 0 20px;
            }
            .section {
                padding: 30px 20px;
            }
            .btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            .game-stats {
                flex-direction: column;
                align-items: center;
            }
        }
        @media (max-width: 576px) {
            .nav-links {
                width: 100%;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .section h2 {
                font-size: 1.5rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        .toggle .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        .toggle .line2 {
            opacity: 0;
        }
        .toggle .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }
