        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0f172a; 
            --primary-orange: #f97316; 
            --secondary-gray: #64748b; 
            --light-bg: #f8fafc; 
            --accent-yellow: #facc15; 
            --text-dark: #1e293b;
            --text-light: #f8fafc;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        body {
            line-height: 1.9;
            color: var(--text-dark);
            background-color: var(--light-bg);
            padding-bottom: 60px;
            letter-spacing: 0.2px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-dark), #1e3a8a, var(--primary-dark));
            color: var(--text-light);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 15px rgba(0,0,0,0.4);
        }
        .container {
            width: 92%;
            max-width: 1300px;
            margin: 0 auto;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent-yellow);
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: var(--text-light);
        }
        .navbar {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .navbar a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .navbar a:hover {
            color: var(--accent-yellow);
            border-bottom: 2px solid var(--accent-yellow);
        }
        .daman-link {
            color: var(--accent-yellow);
            font-weight: 600;
            text-decoration: underline;
            font-size: 1.1rem;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-light);
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 12px 8px;
            border: none;
            cursor: pointer;
            text-align: center;
            font-size: 1.05rem;
            box-shadow: var(--shadow);
        }
        .btn-download {
            background-color: var(--primary-orange);
            color: var(--text-light);
        }
        .btn-download:hover {
            background-color: #ea580c;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(249,115,22,0.4);
        }
        .btn-login {
            background-color: #3b82f6;
            color: var(--text-light);
        }
        .btn-login:hover {
            background-color: #2563eb;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(59,130,246,0.4);
        }
        main {
            padding: 50px 0;
        }
        h1 {
            font-size: 3rem;
            color: var(--primary-dark);
            margin-bottom: 40px;
            text-align: center;
            line-height: 1.5;
            font-weight: 800;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 0 20px;
        }
        h2 {
            font-size: 2.3rem;
            color: var(--primary-orange);
            margin: 50px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent-yellow);
            font-weight: 700;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--primary-dark);
        }
        h3 {
            font-size: 1.7rem;
            color: var(--primary-dark);
            margin: 35px 0 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🌪️";
            margin-right: 10px;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--secondary-gray);
            margin: 25px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 2;
            padding: 0 2px;
        }
        strong {
            color: var(--primary-orange);
            font-weight: 700;
        }
        em {
            color: var(--primary-dark);
            font-style: italic;
            font-weight: 500;
        }
        .highlight {
            background-color: #fffbeb;
            padding: 25px;
            border-left: 5px solid var(--accent-yellow);
            margin: 40px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            box-shadow: var(--shadow);
        }
        .highlight p {
            margin-bottom: 0;
            font-size: 1.2rem;
            line-height: 2.1;
        }
        .highlight strong {
            color: #b45309;
        }
        .image-container {
            margin: 50px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            margin: 15px 0;
            border: 4px solid var(--text-light);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        ul, ol {
            margin: 25px 0 30px 50px;
            font-size: 1.15rem;
            line-height: 2.2;
        }
        li {
            margin-bottom: 15px;
            position: relative;
        }
        ul li::before {
            content: "⚡";
            position: absolute;
            left: -30px;
            top: 2px;
        }
        ol li::before {
            content: counter(li);
            position: absolute;
            left: -35px;
            top: 2px;
            background-color: var(--primary-orange);
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: bold;
        }
        ol {
            counter-reset: li;
        }
        ol li {
            counter-increment: li;
        }
        .faq-container {
            margin: 60px 0;
        }
        .faq-item {
            margin-bottom: 25px;
            background-color: var(--text-light);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }
        .faq-question {
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 12px;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
        }
        .faq-question::before {
            content: "❓";
            margin-right: 10px;
        }
        .faq-answer {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--secondary-gray);
        }
        .game-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 50px 0;
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding: 35px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .stat-card {
            text-align: center;
            padding: 20px;
            background-color: rgba(255,255,255,0.05);
            border-radius: var(--border-radius);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-yellow);
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--secondary-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .tabs {
            display: flex;
            gap: 10px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        .tab-btn {
            padding: 12px 20px;
            background-color: var(--secondary-gray);
            color: var(--text-light);
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .tab-btn.active {
            background-color: var(--primary-orange);
        }
        .tab-content {
            background-color: var(--text-light);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding: 60px 0 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        .footer-section h3 {
            color: var(--accent-yellow);
            margin-bottom: 25px;
            font-size: 1.5rem;
            border-bottom: 2px solid var(--primary-orange);
            padding-bottom: 12px;
            display: block;
        }
        .footer-section h3::before {
            content: "";
            margin-right: 0;
        }
        .footer-section a {
            color: var(--secondary-gray);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-section a:hover {
            color: var(--accent-yellow);
            padding-left: 5px;
        }
        .recommendation {
            background-color: var(--text-light);
            color: var(--primary-dark);
            padding: 30px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border-left: 5px solid var(--primary-orange);
        }
        .recommendation h3 {
            color: var(--primary-orange);
            margin-bottom: 20px;
            display: block;
        }
        .recommendation h3::before {
            content: "";
            margin-right: 0;
        }
        .recommendation p {
            font-size: 1.2rem;
            line-height: 2;
        }
        .game-categories {
            margin: 30px 0;
        }
        .categories-list, .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        .category-item, .tag-item {
            background-color: rgba(255,255,255,0.1);
            padding: 8px 15px;
            border-radius: 20px;
        }
        .category-item a, .tag-item a {
            color: var(--secondary-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .category-item a:hover, .tag-item a:hover {
            color: var(--accent-yellow);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 1rem;
            color: var(--secondary-gray);
            line-height: 1.8;
        }
        @media (max-width: 992px) {
            .navbar {
                gap: 20px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .game-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
                padding: 10px 0;
            }
            .navbar {
                flex-direction: column;
                gap: 15px;
                text-align: center;
                display: none;
                width: 100%;
                padding: 20px 0;
                background-color: rgba(15,23,42,0.95);
                border-radius: var(--border-radius);
                margin-top: 10px;
            }
            .navbar.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 25px;
            }
            h1 {
                font-size: 2.2rem;
                margin-bottom: 30px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1.05rem;
                line-height: 1.8;
            }
            .btn {
                padding: 12px 22px;
                font-size: 1rem;
                margin: 8px 5px;
            }
            .game-stats {
                grid-template-columns: 1fr;
                padding: 25px;
            }
            ul, ol {
                margin: 20px 0 25px 35px;
                font-size: 1.05rem;
                line-height: 2;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .image-container {
                margin: 30px 0;
            }
            .highlight {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.7rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            .tabs {
                gap: 8px;
            }
            .tab-btn {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
            .tab-content {
                padding: 20px;
            }
            .btn {
                display: block;
                width: 90%;
                margin: 10px auto;
            }
        }
