:root {
            --primary: #1a73e8;
            --secondary: #ff6b00;
            --dark: #0f172a;
            --light: #f8fafc;
            --accent: #10b981;
            --text: #f1f5f9;
            --shadow: 0 6px 12px rgba(0,0,0,0.4);
            --border: #334155;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.9;
            padding-bottom: 80px;
            scroll-behavior: smooth;
        }
        .container {
            width: 92%;
            max-width: 1300px;
            margin: 0 auto;
        }
        header {
            background: linear-gradient(135deg, #0f172a, #1e293b);
            padding: 18px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 9999;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: var(--accent);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: var(--secondary);
            border-bottom: 2px solid var(--secondary);
        }
        .daman-link {
            color: var(--accent) !important;
            font-weight: 700;
            font-size: 1.1rem !important;
        }
        .daman-link:hover {
            color: var(--secondary) !important;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text);
            background: none;
            border: none;
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 14px 30px;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: var(--shadow);
            min-width: 180px;
        }
        .btn-download {
            background-color: var(--primary);
            color: white;
        }
        .btn-download:hover {
            background-color: #0d5bbc;
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(26, 115, 232, 0.5);
        }
        .btn-login {
            background-color: var(--secondary);
            color: var(--dark);
        }
        .btn-login:hover {
            background-color: #e05a00;
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(255, 107, 0, 0.5);
        }
        main {
            padding: 50px 0;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 40px;
            text-align: center;
            line-height: 1.5;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            padding: 0 20px;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--accent);
            margin: 70px 0 30px;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 12px;
            position: relative;
        }
        h2::after {
            content: "🎮";
            margin-left: 10px;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--secondary);
            margin: 45px 0 20px;
            position: relative;
            padding-left: 20px;
        }
        h3::before {
            content: "•";
            color: var(--accent);
            font-size: 2rem;
            position: absolute;
            left: 0;
            top: -5px;
        }
        h4 {
            font-size: 1.3rem;
            color: #94a3b8;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            color: #e2e8f0;
        }
        .intro {
            font-size: 1.3rem;
            font-weight: 400;
            max-width: 1100px;
            margin: 0 auto 50px;
            color: #cbd5e1;
            background-color: rgba(30, 41, 59, 0.5);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--accent);
        }
        .highlight {
            background-color: rgba(255, 107, 0, 0.1);
            border-left: 5px solid var(--secondary);
            padding: 20px 25px;
            margin: 40px 0;
            border-radius: 0 12px 12px 0;
            position: relative;
        }
        .highlight::before {
            content: "💡";
            position: absolute;
            left: -15px;
            top: 15px;
            font-size: 1.5rem;
        }
        .highlight b {
            color: var(--secondary);
            font-size: 1.15rem;
        }
        .image-container {
            margin: 50px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-bottom: 15px;
            border: 2px solid var(--border);
        }
        .image-caption {
            font-size: 0.95rem;
            color: #94a3b8;
            font-style: italic;
            max-width: 800px;
            margin: 0 auto;
        }
        .list-container {
            margin: 30px 0 40px 50px;
        }
        .list-container ul {
            margin-bottom: 30px;
        }
        .list-container li {
            margin-bottom: 15px;
            font-size: 1.1rem;
            color: #e2e8f0;
            position: relative;
            padding-left: 20px;
        }
        .list-container li::before {
            content: "→";
            color: var(--accent);
            position: absolute;
            left: 0;
        }
        .table-container {
            overflow-x: auto;
            margin: 50px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: #1e293b;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        th, td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        th {
            background-color: var(--primary);
            color: white;
            font-weight: 700;
            font-size: 1.05rem;
        }
        tr:hover {
            background-color: #27364b;
            transform: scale(1.005);
            transition: background-color 0.3s ease;
        }
        tr:nth-child(even) {
            background-color: #1a2435;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 50px 0;
        }
        .stat-card {
            background-color: #1e293b;
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            text-align: center;
            border: 1px solid var(--border);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1rem;
            color: #94a3b8;
        }
        .quote-box {
            background-color: rgba(26, 115, 232, 0.1);
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            position: relative;
        }
        .quote-box::before {
            content: '"';
            font-size: 5rem;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: -20px;
            left: 10px;
        }
        .quote-text {
            font-size: 1.2rem;
            font-style: italic;
            color: #e2e8f0;
            margin-bottom: 20px;
        }
        .quote-author {
            font-size: 1rem;
            color: var(--accent);
            font-weight: 600;
            text-align: right;
        }
        footer {
            background-color: #0f172a;
            padding: 70px 0 30px;
            margin-top: 100px;
            border-top: 3px solid var(--accent);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        .footer-section h3 {
            color: var(--secondary);
            margin-bottom: 25px;
            font-size: 1.4rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 12px;
        }
        .game-categories, .tags {
            list-style: none;
        }
        .game-categories li, .tags li {
            margin-bottom: 12px;
        }
        .game-categories a, .tags a {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            display: inline-block;
        }
        .game-categories a:hover, .tags a:hover {
            color: var(--secondary);
            padding-left: 8px;
            transform: translateX(5px);
        }
        .recommendation {
            background-color: rgba(16, 185, 129, 0.1);
            padding: 25px;
            border-radius: 12px;
            margin-top: 30px;
            border: 1px solid var(--accent);
        }
        .recommendation h4 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        .recommendation p {
            color: #e2e8f0;
            margin-bottom: 0;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border);
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 20px;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .intro {
                font-size: 1.2rem;
                padding: 25px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #1e293b;
                padding: 30px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
                border-top: 1px solid var(--border);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin-bottom: 15px;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.8rem;
                margin: 50px 0 25px;
            }
            h3 {
                font-size: 1.4rem;
            }
            .intro {
                font-size: 1.1rem;
                padding: 20px;
            }
            .btn-container {
                flex-direction: column;
                gap: 15px;
            }
            .btn {
                width: 100%;
            }
            .list-container {
                margin-left: 30px;
            }
            .stats-box {
                grid-template-columns: 1fr 1fr;
            }
            .footer-content {
                gap: 30px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.6rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1.05rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .highlight {
                padding: 15px 20px;
            }
            .quote-box {
                padding: 20px;
            }
            .footer-section {
                text-align: center;
            }
        }
