        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
        }
        body {
            background-color: #f8f4e9;
            color: #2d2d2d;
            padding-bottom: 60px;
            overflow-x: hidden;
        }
        :root {
            --primary: #FF6B35; 
            --secondary: #2E86AB; 
            --accent: #F7D94C; 
            --dark: #2D3142; 
            --light: #F8F4E9; 
            --white: #FFFFFF; 
            --gray: #6B7280; 
            --success: #38A169; 
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .container {
            width: 92%;
            max-width: 1300px;
            margin: 0 auto;
        }
        header {
            background-color: var(--dark);
            color: var(--white);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo span {
            color: var(--primary);
        }
        .logo emoji {
            font-size: 1.5rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        .nav-links li a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .nav-links li a:hover {
            color: var(--accent);
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .daman-link {
            color: var(--primary);
            font-weight: 600;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
            background: transparent;
            border: none;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: var(--primary);
            color: var(--white);
            margin-right: 18px;
        }
        .btn-download:hover {
            background-color: #e55a2a;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }
        .btn-login {
            background-color: var(--secondary);
            color: var(--white);
        }
        .btn-login:hover {
            background-color: #256d93;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(46, 134, 171, 0.3);
        }
        .btn-container {
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin: 40px 0 25px;
            text-align: center;
            border-bottom: 4px solid var(--primary);
            padding-bottom: 18px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2.1rem;
            color: var(--secondary);
            margin: 50px 0 22px;
            padding-left: 20px;
            border-left: 5px solid var(--primary);
            font-weight: 600;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin: 35px 0 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: "▶️";
            font-size: 1.2rem;
        }
        p {
            margin: 18px 0;
            font-size: 1.15rem;
            color: var(--gray);
            text-align: justify;
            line-height: 1.8;
        }
        strong {
            color: var(--dark);
            font-weight: 600;
        }
        em {
            color: var(--primary);
            font-style: italic;
        }
        .img-responsive {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 25px 0;
            box-shadow: 0 6px 16px rgba(0,0,0,0.12);
            transition: transform 0.3s ease;
        }
        .img-responsive:hover {
            transform: scale(1.02);
        }
        .intro-section {
            text-align: center;
            margin: 60px 0 70px;
            background-color: var(--white);
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: var(--shadow);
        }
        .intro-section p {
            max-width: 900px;
            margin: 0 auto 30px;
            font-size: 1.3rem;
            color: var(--dark);
            line-height: 1.9;
        }
        .section {
            background-color: var(--white);
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: var(--shadow);
            border-top: 5px solid var(--accent);
        }
        ul {
            margin: 20px 0 20px 40px;
            color: var(--gray);
            font-size: 1.15rem;
        }
        li {
            margin: 12px 0;
            line-height: 1.8;
            list-style-type: disc;
        }
        li::marker {
            color: var(--primary);
            font-size: 1.3rem;
        }
        .faq-container {
            margin: 40px 0;
        }
        .faq-item {
            margin: 25px 0;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        .faq-question {
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2rem;
        }
        .faq-answer {
            margin-top: 15px;
            color: var(--gray);
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .bottom-section {
            background-color: var(--dark);
            color: var(--white);
            padding: 60px 0 30px;
            margin-top: 80px;
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
        }
        .bottom-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }
        .game-categories h3, .tags h3, .recommendation h3 {
            color: var(--accent);
            margin-bottom: 25px;
            font-size: 1.4rem;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 10px;
        }
        .game-categories a, .tags a {
            color: var(--white);
            text-decoration: none;
            display: inline-block;
            margin: 0 12px 12px 0;
            padding: 8px 15px;
            background-color: #444;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .game-categories a:hover, .tags a:hover {
            background-color: var(--primary);
            transform: translateY(-2px);
        }
        .recommendation p {
            color: #ddd;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: left;
        }
        .recommendation strong {
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid #555;
            color: #aaa;
            font-size: 1rem;
            line-height: 1.6;
        }
        @media (max-width: 1024px) {
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .bottom-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 15px;
                margin-top: 10px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 0;
                padding: 8px 0;
                border-bottom: 1px solid #444;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 25px;
            }
            .btn-container {
                flex-direction: column;
                gap: 18px;
            }
            .btn-download {
                margin-right: 0;
            }
            h1 {
                font-size: 2.2rem;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.7rem;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .intro-section {
                padding: 30px 20px;
                margin: 40px 0 50px;
            }
            .intro-section p {
                font-size: 1.15rem;
            }
            .section {
                padding: 25px;
                margin: 30px 0;
            }
            .bottom-container {
                grid-template-columns: 1fr;
            }
            p {
                font-size: 1.1rem;
                text-align: left;
            }
            ul {
                margin-left: 30px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.6rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .btn {
                padding: 12px 22px;
                font-size: 1rem;
            }
            .intro-section p {
                font-size: 1.05rem;
            }
        }
        .text-highlight {
            background-color: rgba(247, 217, 76, 0.2);
            padding: 2px 8px;
            border-radius: 4px;
        }
        .quote {
            border-left: 3px solid var(--accent);
            padding-left: 15px;
            margin: 25px 0;
            font-style: italic;
            color: var(--dark);
            font-size: 1.2rem;
        }
        .stats-box {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
            justify-content: center;
        }
        .stat-item {
            background-color: var(--light);
            padding: 20px 30px;
            border-radius: 10px;
            text-align: center;
            flex: 1;
            min-width: 150px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.08);
        }
        .stat-number {
            font-size: 2.2rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 5px;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--gray);
        }
