        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.9;
            color: #2d3436;
            background-color: #f5f6fa;
            padding-bottom: 60px;
        }
        .navbar {
            background: linear-gradient(135deg, #27ae60, #2c3e50, #e74c3c);
            padding: 16px 30px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
        }
        .logo i {
            color: #f1c40f;
            margin-right: 10px;
            font-size: 1.8rem;
        }
        .logo span {
            color: #f1c40f;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 35px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.15rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 6px;
            position: relative;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #f1c40f;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            cursor: pointer;
        }
        .hamburger div {
            width: 28px;
            height: 3px;
            background-color: #fff;
            margin: 6px;
            transition: all 0.3s ease;
        }
        .btn {
            padding: 13px 28px;
            border: none;
            border-radius: 35px;
            font-size: 1.15rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: #27ae60;
            color: #fff;
            margin-right: 18px;
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(39,174,96,0.35);
        }
        .btn-login {
            background-color: #f1c40f;
            color: #2c3e50;
        }
        .btn-login:hover {
            background-color: #d4ac0d;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(241,196,15,0.35);
        }
        .container {
            max-width: 1250px;
            margin: 45px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 3rem;
            color: #2c3e50;
            margin-bottom: 35px;
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 4px solid #f1c40f;
            position: relative;
        }
        h1::after {
            content: '🏏';
            position: absolute;
            right: 20%;
            bottom: -10px;
            font-size: 1.5rem;
        }
        h1::before {
            content: '🏏';
            position: absolute;
            left: 20%;
            bottom: -10px;
            font-size: 1.5rem;
        }
        h2 {
            font-size: 2.3rem;
            color: #e74c3c;
            margin: 60px 0 30px;
            padding-left: 20px;
            border-left: 6px solid #27ae60;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background-color: #27ae60;
            bottom: -8px;
            left: 20px;
        }
        h3 {
            font-size: 1.8rem;
            color: #2980b9;
            margin: 40px 0 25px;
            padding-bottom: 8px;
            border-bottom: 2px dashed #3498db;
        }
        h4 {
            font-size: 1.4rem;
            color: #8e44ad;
            margin: 30px 0 18px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.9;
        }
        strong {
            color: #e74c3c;
            font-weight: 700;
        }
        em {
            color: #27ae60;
            font-style: italic;
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 35px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        .gallery-item p {
            padding: 15px;
            text-align: center;
            font-size: 1rem;
            margin-bottom: 0;
            background-color: #ffffff;
        }
        .intro-section {
            background-color: #ffffff;
            padding: 45px;
            border-radius: 18px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
            margin-bottom: 60px;
            border-top: 5px solid #3498db;
        }
        .feature-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin: 60px 0;
        }
        .feature-card {
            background-color: #ffffff;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.09);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 5px solid #e74c3c;
        }
        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .feature-card h3 {
            color: #e74c3c;
            margin-bottom: 20px;
            border-bottom: none;
        }
        .feature-card p {
            font-size: 1.05rem;
            margin-bottom: 20px;
        }
        .feature-card i {
            font-size: 2.8rem;
            color: #3498db;
            margin-bottom: 25px;
            display: inline-block;
        }
        .stat-box {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 120px;
            padding: 10px;
        }
        .stat-value {
            font-size: 2.2rem;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        .stat-label {
            font-size: 1rem;
            color: #7f8c8d;
        }
        ul {
            margin: 25px 0 35px 50px;
        }
        ol {
            margin: 25px 0 35px 50px;
        }
        li {
            margin-bottom: 15px;
            font-size: 1.15rem;
            position: relative;
        }
        ul li::before {
            content: '•';
            color: #e74c3c;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        ol li::before {
            content: counter(li);
            color: #27ae60;
            font-weight: bold;
            position: absolute;
            left: -30px;
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .game-table th, .game-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #ecf0f1;
        }
        .game-table th {
            background-color: #2c3e50;
            color: #ffffff;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }
        .game-table tr:hover {
            background-color: #f8f9fa;
            transform: scale(1.01);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .game-table tr:nth-child(even) {
            background-color: #fafafa;
        }
        .cta-section {
            background: linear-gradient(135deg, #3498db, #2980b9, #e74c3c);
            color: #fff;
            padding: 70px 45px;
            border-radius: 20px;
            text-align: center;
            margin: 70px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .cta-section h2 {
            color: #ffffff;
            border-left: none;
            margin-bottom: 35px;
            font-size: 2.6rem;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .cta-section h2::after {
            display: none;
        }
        .cta-section p {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 40px;
            text-align: center;
            line-height: 2;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid #ecf0f1;
            margin: 40px 0;
        }
        .tab {
            padding: 15px 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            color: #7f8c8d;
        }
        .tab.active {
            border-bottom: 3px solid #e74c3c;
            color: #2c3e50;
        }
        .tab:hover {
            background-color: #f8f9fa;
            color: #2c3e50;
        }
        .tab-content {
            padding: 30px 0;
        }
        .badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        .badge-new {
            background-color: #e74c3c;
            color: #ffffff;
        }
        .badge-popular {
            background-color: #27ae60;
            color: #ffffff;
        }
        .badge-featured {
            background-color: #3498db;
            color: #ffffff;
        }
        .badge-legendary {
            background-color: #f1c40f;
            color: #2c3e50;
        }
        .quote {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            border-left: 5px solid #3498db;
            position: relative;
        }
        .quote::before {
            content: '"';
            font-size: 4rem;
            color: #3498db;
            opacity: 0.2;
            position: absolute;
            top: -10px;
            left: 10px;
        }
        .quote p {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        .quote-author {
            text-align: right;
            font-weight: 600;
            color: #7f8c8d;
        }
        .footer {
            background-color: #2c3e50;
            color: #ffffff;
            padding: 70px 35px;
            margin-top: 90px;
            border-top: 5px solid #f1c40f;
        }
        .footer-container {
            max-width: 1250px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 45px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f1c40f;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
        }
        .footer-logo i {
            margin-right: 10px;
        }
        .footer-links h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #f1c40f;
            padding-bottom: 10px;
            border-bottom: 2px solid #34495e;
        }
        .footer-links ul {
            list-style: none;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 15px;
            position: relative;
        }
        .footer-links li::before {
            content: '→';
            color: #f1c40f;
            position: absolute;
            left: -20px;
        }
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: #f1c40f;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            margin-top: 50px;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            font-size: 1rem;
            line-height: 1.8;
        }
        .recommendation {
            background-color: #34495e;
            padding: 25px;
            border-radius: 12px;
            margin-top: 25px;
            border-left: 4px solid #f1c40f;
        }
        .recommendation h4 {
            color: #f1c40f;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .recommendation p {
            color: #ecf0f1;
            font-size: 1.05rem;
            margin-bottom: 15px;
        }
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .social-links a {
            display: inline-block;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: #34495e;
            color: #ffffff;
            text-align: center;
            line-height: 45px;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            background-color: #f1c40f;
            color: #2c3e50;
            transform: translateY(-3px);
        }
        @media (max-width: 1199px) {
            h1 {
                font-size: 2.7rem;
            }
            h2 {
                font-size: 2.1rem;
            }
            h3 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 85px;
                height: calc(100vh - 85px);
                background: linear-gradient(135deg, #2c3e50, #34495e, #2c3e50);
                flex-direction: column;
                align-items: center;
                width: 55%;
                transform: translateX(100%);
                transition: transform 0.3s ease-in;
                padding-top: 60px;
                box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            }
            .nav-links li {
                margin: 25px 0;
            }
            .nav-links a {
                font-size: 1.2rem;
            }
            .hamburger {
                display: block;
            }
            .nav-active {
                transform: translateX(0);
            }
            h1 {
                font-size: 2.4rem;
            }
            h1::after, h1::before {
                display: none;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .btn {
                padding: 12px 22px;
                font-size: 1.05rem;
            }
            .intro-section {
                padding: 35px;
            }
            .cta-section {
                padding: 50px 30px;
            }
            .cta-section h2 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                width: 100%;
            }
            .logo {
                font-size: 1.7rem;
            }
            h1 {
                font-size: 2.1rem;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 45px 0 25px;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 35px 0 20px;
            }
            p, li {
                font-size: 1.05rem;
            }
            .intro-section {
                padding: 25px;
            }
            .feature-card {
                padding: 25px;
            }
            .cta-section h2 {
                font-size: 1.9rem;
            }
            .cta-section p {
                font-size: 1.1rem;
            }
            .game-table th, .game-table td {
                padding: 12px;
            }
            .stat-box {
                flex-direction: column;
                gap: 20px;
            }
            .footer {
                padding: 50px 25px;
            }
        }
        @media (max-width: 576px) {
            .navbar {
                padding: 12px 20px;
            }
            .logo {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.3rem;
            }
            p, li {
                font-size: 1rem;
            }
            .btn {
                width: 100%;
                margin-bottom: 15px;
            }
            .btn-download {
                margin-right: 0;
            }
            .cta-buttons {
                flex-direction: column;
            }
            .intro-section {
                padding: 20px;
            }
            .game-image {
                margin: 25px 0;
            }
            .gallery {
                grid-template-columns: 1fr;
            }
            .feature-section {
                gap: 25px;
            }
            ul, ol {
                margin-left: 30px;
            }
            .footer-container {
                gap: 35px;
            }
            .copyright {
                padding-top: 30px;
                margin-top: 30px;
            }
        }
        .toggle .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        .toggle .line2 {
            opacity: 0;
        }
        .toggle .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        html {
            scroll-behavior: smooth;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #e74c3c;
            color: #ffffff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
        }
