        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2d3436;
            background-color: #f9f7f5;
            padding-bottom: 80px;
        }
        .navbar {
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
            padding: 16px 30px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 0.7px;
            text-shadow: 0 2px 6px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
        }
        .logo i {
            color: #ffd166;
            margin-right: 12px;
            font-size: 2.1rem;
        }
        .logo span {
            color: #ffd166;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 38px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.18rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 7px 14px;
            border-radius: 8px;
            position: relative;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.28);
            transform: translateY(-3px);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffd166;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            cursor: pointer;
        }
        .hamburger div {
            width: 30px;
            height: 3px;
            background-color: #fff;
            margin: 7px;
            transition: all 0.3s ease;
        }
        .btn {
            padding: 14px 30px;
            border: none;
            border-radius: 38px;
            font-size: 1.18rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 5px 12px rgba(0,0,0,0.12);
        }
        .btn-download {
            background-color: #ff6b6b;
            color: #fff;
            margin-right: 20px;
        }
        .btn-download:hover {
            background-color: #e55a5a;
            transform: translateY(-5px);
            box-shadow: 0 8px 18px rgba(255,107,107,0.4);
        }
        .btn-login {
            background-color: #ffd166;
            color: #2d3436;
        }
        .btn-login:hover {
            background-color: #e6bc5c;
            transform: translateY(-5px);
            box-shadow: 0 8px 18px rgba(255,209,102,0.4);
        }
        .container {
            max-width: 1300px;
            margin: 50px auto;
            padding: 0 30px;
        }
        h1 {
            font-size: 3.2rem;
            color: #2d3436;
            margin-bottom: 40px;
            text-align: center;
            padding-bottom: 25px;
            border-bottom: 5px solid #ffd166;
            position: relative;
            line-height: 1.3;
        }
        h1::after {
            content: '🎮';
            position: absolute;
            right: 18%;
            bottom: -12px;
            font-size: 1.8rem;
        }
        h1::before {
            content: '🎮';
            position: absolute;
            left: 18%;
            bottom: -12px;
            font-size: 1.8rem;
        }
        h2 {
            font-size: 2.4rem;
            color: #ff6b6b;
            margin: 70px 0 35px;
            padding-left: 25px;
            border-left: 7px solid #4ecdc4;
            position: relative;
            line-height: 1.4;
        }
        h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: #4ecdc4;
            bottom: -10px;
            left: 25px;
        }
        h3 {
            font-size: 1.9rem;
            color: #45b7d1;
            margin: 45px 0 28px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #4ecdc4;
            line-height: 1.5;
        }
        h4 {
            font-size: 1.5rem;
            color: #9b5de5;
            margin: 35px 0 20px;
            line-height: 1.6;
        }
        p {
            margin-bottom: 28px;
            font-size: 1.18rem;
            text-align: justify;
            line-height: 1.8;
        }
        strong {
            color: #ff6b6b;
            font-weight: 700;
        }
        em {
            color: #4ecdc4;
            font-style: italic;
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 45px 0;
        }
        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
            background-color: #ffffff;
        }
        .gallery-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.07);
        }
        .gallery-item p {
            padding: 18px;
            text-align: center;
            font-size: 1.05rem;
            margin-bottom: 0;
            color: #2d3436;
            font-weight: 500;
        }
        .intro-section {
            background-color: #ffffff;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 70px;
            border-top: 6px solid #45b7d1;
        }
        .feature-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 40px;
            margin: 70px 0;
        }
        .feature-card {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 22px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 6px solid #ff6b6b;
        }
        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.18);
        }
        .feature-card h3 {
            color: #ff6b6b;
            margin-bottom: 25px;
            border-bottom: none;
        }
        .feature-card p {
            font-size: 1.08rem;
            margin-bottom: 25px;
        }
        .feature-card i {
            font-size: 3rem;
            color: #45b7d1;
            margin-bottom: 30px;
            display: inline-block;
        }
        .stat-box {
            background-color: #f8f5f2;
            padding: 30px;
            border-radius: 12px;
            margin: 35px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            border: 1px solid #eee5dd;
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 140px;
            padding: 15px;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: #2d3436;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #7f8c8d;
            font-weight: 500;
        }
        ul {
            margin: 30px 0 40px 60px;
        }
        ol {
            margin: 30px 0 40px 60px;
        }
        li {
            margin-bottom: 18px;
            font-size: 1.18rem;
            position: relative;
        }
        ul li::before {
            content: '•';
            color: #ff6b6b;
            font-weight: bold;
            position: absolute;
            left: -25px;
            font-size: 1.5rem;
        }
        ol li::before {
            content: counter(li);
            color: #4ecdc4;
            font-weight: bold;
            position: absolute;
            left: -35px;
            background-color: #f8f5f2;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            margin: 45px 0;
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 7px 20px rgba(0,0,0,0.1);
        }
        .game-table th, .game-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #f1ede8;
        }
        .game-table th {
            background-color: #2d3436;
            color: #ffffff;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 1.2px;
        }
        .game-table tr:hover {
            background-color: #faf8f5;
            transform: scale(1.01);
            box-shadow: 0 3px 12px rgba(0,0,0,0.07);
        }
        .game-table tr:nth-child(even) {
            background-color: #f9f7f5;
        }
        .cta-section {
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
            color: #fff;
            padding: 80px 50px;
            border-radius: 25px;
            text-align: center;
            margin: 80px 0;
            box-shadow: 0 15px 35px rgba(0,0,0,0.18);
        }
        .cta-section h2 {
            color: #ffffff;
            border-left: none;
            margin-bottom: 40px;
            font-size: 2.8rem;
            text-shadow: 0 3px 8px rgba(0,0,0,0.25);
        }
        .cta-section h2::after {
            display: none;
        }
        .cta-section p {
            font-size: 1.3rem;
            max-width: 850px;
            margin: 0 auto 45px;
            text-align: center;
            line-height: 2.1;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid #f1ede8;
            margin: 45px 0;
            background-color: #ffffff;
            border-radius: 10px 10px 0 0;
            overflow: hidden;
        }
        .tab {
            padding: 18px 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            color: #7f8c8d;
            font-size: 1.1rem;
        }
        .tab.active {
            border-bottom: 3px solid #ff6b6b;
            color: #2d3436;
            background-color: #faf8f5;
        }
        .tab:hover {
            background-color: #f8f5f2;
            color: #2d3436;
        }
        .tab-content {
            padding: 35px 0;
            background-color: #ffffff;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 35px;
        }
        .badge {
            display: inline-block;
            padding: 7px 15px;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 600;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        .badge-new {
            background-color: #ff6b6b;
            color: #ffffff;
        }
        .badge-popular {
            background-color: #4ecdc4;
            color: #ffffff;
        }
        .badge-featured {
            background-color: #45b7d1;
            color: #ffffff;
        }
        .badge-legendary {
            background-color: #ffd166;
            color: #2d3436;
        }
        .quote {
            background-color: #f8f5f2;
            padding: 35px;
            border-radius: 12px;
            margin: 45px 0;
            border-left: 6px solid #45b7d1;
            position: relative;
        }
        .quote::before {
            content: '"';
            font-size: 4.5rem;
            color: #45b7d1;
            opacity: 0.25;
            position: absolute;
            top: -15px;
            left: 15px;
        }
        .quote p {
            font-size: 1.25rem;
            font-style: italic;
            margin-bottom: 20px;
            color: #2d3436;
        }
        .quote-author {
            text-align: right;
            font-weight: 600;
            color: #7f8c8d;
            font-size: 1.1rem;
        }
        .footer {
            background-color: #2d3436;
            color: #ffffff;
            padding: 80px 40px;
            margin-top: 100px;
            border-top: 6px solid #ffd166;
        }
        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        .footer-logo {
            font-size: 1.9rem;
            font-weight: 700;
            color: #ffd166;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
        }
        .footer-logo i {
            margin-right: 12px;
        }
        .footer-links h4 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #ffd166;
            padding-bottom: 12px;
            border-bottom: 2px solid #444e52;
        }
        .footer-links ul {
            list-style: none;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 18px;
            position: relative;
        }
        .footer-links li::before {
            content: '→';
            color: #ffd166;
            position: absolute;
            left: -25px;
        }
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.1rem;
        }
        .footer-links a:hover {
            color: #ffd166;
            padding-left: 7px;
        }
        .copyright {
            text-align: center;
            padding-top: 60px;
            margin-top: 60px;
            border-top: 1px solid #444e52;
            color: #bdc3c7;
            font-size: 1.05rem;
            line-height: 2;
        }
        .recommendation {
            background-color: #343a40;
            padding: 30px;
            border-radius: 15px;
            margin-top: 30px;
            border-left: 5px solid #ffd166;
        }
        .recommendation h4 {
            color: #ffd166;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .recommendation p {
            color: #ecf0f1;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 25px;
        }
        .social-links a {
            display: inline-block;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #444e52;
            color: #ffffff;
            text-align: center;
            line-height: 50px;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        .social-links a:hover {
            background-color: #ffd166;
            color: #2d3436;
            transform: translateY(-5px);
        }
        .game-categories {
            margin: 50px 0;
            padding: 30px;
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .game-categories h3 {
            margin-top: 0;
            margin-bottom: 25px;
        }
        .category-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .category-list a, .tag-list a {
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .category-list a {
            background-color: #f8f5f2;
            color: #2d3436;
            border: 1px solid #eee5dd;
        }
        .category-list a:hover {
            background-color: #45b7d1;
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(69,183,209,0.2);
        }
        .tag-list a {
            background-color: #f8f5f2;
            color: #2d3436;
            border: 1px solid #eee5dd;
        }
        .tag-list a:hover {
            background-color: #ff6b6b;
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(255,107,107,0.2);
        }
        @media (max-width: 1199px) {
            h1 {
                font-size: 2.9rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 90px;
                height: calc(100vh - 90px);
                background: linear-gradient(135deg, #2d3436, #343a40, #2d3436);
                flex-direction: column;
                align-items: center;
                width: 60%;
                transform: translateX(100%);
                transition: transform 0.3s ease-in;
                padding-top: 70px;
                box-shadow: -3px 0 12px rgba(0,0,0,0.15);
            }
            .nav-links li {
                margin: 30px 0;
            }
            .nav-links a {
                font-size: 1.25rem;
            }
            .hamburger {
                display: block;
            }
            .nav-active {
                transform: translateX(0);
            }
            h1 {
                font-size: 2.6rem;
            }
            h1::after, h1::before {
                display: none;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .btn {
                padding: 13px 25px;
                font-size: 1.1rem;
            }
            .intro-section {
                padding: 40px;
            }
            .cta-section {
                padding: 60px 35px;
            }
            .cta-section h2 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                width: 100%;
            }
            .logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2.3rem;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 55px 0 30px;
                padding-left: 20px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 40px 0 25px;
            }
            p, li {
                font-size: 1.1rem;
            }
            .intro-section {
                padding: 30px;
            }
            .feature-card {
                padding: 30px;
            }
            .cta-section h2 {
                font-size: 2.1rem;
            }
            .cta-section p {
                font-size: 1.15rem;
            }
            .game-table th, .game-table td {
                padding: 15px;
            }
            .stat-box {
                flex-direction: column;
                gap: 25px;
            }
            .footer {
                padding: 60px 30px;
            }
        }
        @media (max-width: 576px) {
            .navbar {
                padding: 14px 20px;
            }
            .logo {
                font-size: 1.6rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
                margin: 45px 0 25px;
            }
            h3 {
                font-size: 1.4rem;
            }
            p, li {
                font-size: 1.05rem;
            }
            .btn {
                width: 100%;
                margin-bottom: 20px;
            }
            .btn-download {
                margin-right: 0;
            }
            .cta-buttons {
                flex-direction: column;
            }
            .intro-section {
                padding: 25px;
            }
            .game-image {
                margin: 30px 0;
            }
            .gallery {
                grid-template-columns: 1fr;
            }
            .feature-section {
                gap: 30px;
            }
            ul, ol {
                margin-left: 40px;
            }
            .footer-container {
                gap: 40px;
            }
            .copyright {
                padding-top: 40px;
                margin-top: 40px;
            }
        }
        .toggle .line1 {
            transform: rotate(-45deg) translate(-6px, 7px);
        }
        .toggle .line2 {
            opacity: 0;
        }
        .toggle .line3 {
            transform: rotate(45deg) translate(-6px, -7px);
        }
        html {
            scroll-behavior: smooth;
        }
        .back-to-top {
            position: fixed;
            bottom: 35px;
            right: 35px;
            background-color: #ff6b6b;
            color: #ffffff;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            text-align: center;
            line-height: 55px;
            font-size: 1.6rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.25);
            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: #e55a5a;
            transform: translateY(-5px);
        }
