* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f1f5f9;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #1e293b;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 26px;
            font-weight: 800;
            color: #3b82f6;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.5px;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 28px;
        }
        .nav-links a {
            color: #f1f5f9;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-links a:hover {
            color: #3b82f6;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #3b82f6;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .daman-link {
            color: #10b981 !important;
            font-weight: 600;
        }
        .menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: #f1f5f9;
        }
        h1 {
            font-size: 38px;
            color: #3b82f6;
            margin: 45px 0 35px;
            text-align: center;
            line-height: 1.3;
        }
        h2 {
            font-size: 30px;
            color: #f97316;
            margin: 40px 0 25px;
            border-bottom: 3px solid #f97316;
            padding-bottom: 12px;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: #3b82f6;
            bottom: -3px;
            left: 0;
        }
        h3 {
            font-size: 24px;
            color: #e2e8f0;
            margin: 30px 0 20px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: '►';
            color: #10b981;
            margin-right: 10px;
        }
        p {
            margin-bottom: 22px;
            font-size: 17px;
            color: #e2e8f0;
        }
        .highlight {
            font-weight: 700;
            color: #38bdf8;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #f97316;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            margin: 12px 12px 25px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(249, 115, 22, 0.2);
        }
        .btn:hover {
            background-color: #ea580c;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(249, 115, 22, 0.3);
        }
        .btn-login {
            background-color: #10b981;
            color: #0f172a;
        }
        .btn-login:hover {
            background-color: #059669;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #1e293b;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .review {
            background-color: #273449;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 5px solid #3b82f6;
            position: relative;
        }
        .review::before {
            content: '"';
            font-size: 50px;
            color: rgba(59, 130, 246, 0.2);
            position: absolute;
            top: 10px;
            left: 10px;
            font-family: Georgia, serif;
        }
        .tag {
            display: inline-block;
            background-color: #273449;
            padding: 6px 15px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            color: #e2e8f0;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #3b82f6;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            margin: 12px 12px 12px 0;
            text-decoration: none;
            color: #38bdf8;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            text-decoration: underline;
            color: #06b6d4;
        }
        footer {
            margin-top: 70px;
            padding-top: 40px;
            border-top: 3px solid #273449;
        }
        .copyright {
            margin-top: 40px;
            text-align: center;
            color: #94a3b8;
            font-size: 15px;
            padding: 20px 0;
            border-top: 1px solid #273449;
        }
        .emoji-highlight {
            margin-right: 8px;
        }
        .section-spacing {
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #1e293b;
                padding: 25px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links li {
                margin: 15px 0;
            }
            .nav-links a {
                font-size: 18px;
            }
            .menu-toggle {
                display: block;
            }
            .nav-active {
                display: flex;
            }
            h1 {
                font-size: 32px;
                margin: 35px 0 25px;
            }
            h2 {
                font-size: 26px;
                margin: 30px 0 20px;
            }
            h3 {
                font-size: 22px;
                margin: 25px 0 15px;
            }
            p {
                font-size: 16px;
                margin-bottom: 20px;
            }
            .btn {
                padding: 12px 24px;
                font-size: 15px;
                margin: 10px 10px 20px 0;
                display: inline-block;
                width: 45%;
                text-align: center;
            }
            @media (max-width: 480px) {
                .btn {
                    width: 100%;
                    margin: 10px 0;
                }
                .logo {
                    font-size: 22px;
                }
            }
        }
