        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
        
        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --accent-gradient: linear-gradient(45deg, #ff6b6b, #ee5a24);
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.18);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.8);
            --dark-glass: rgba(0, 0, 0, 0.1);
            --neon-glow: #00f5ff;
            --purple-glow: #8b5cf6;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: #0a0a0a;
            overflow-x: hidden;
            position: relative;
        }

        /* Animated background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            z-index: -2;
        }

        /* Floating orbs */
        .bg-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.4;
            animation: float 20s infinite ease-in-out;
            z-index: -1;
        }

        .bg-orb:nth-child(1) {
            width: 300px;
            height: 300px;
            background: var(--neon-glow);
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .bg-orb:nth-child(2) {
            width: 400px;
            height: 400px;
            background: var(--purple-glow);
            top: 50%;
            right: 10%;
            animation-delay: -7s;
        }

        .bg-orb:nth-child(3) {
            width: 250px;
            height: 250px;
            background: #ff6b6b;
            bottom: 10%;
            left: 20%;
            animation-delay: -14s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(30px) rotate(240deg); }
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Glassmorphism header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            padding: 1rem 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--neon-glow), var(--purple-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 3rem;
        }

        nav a {
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        nav a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-glow);
            transition: width 0.3s ease;
            box-shadow: 0 0 10px var(--neon-glow);
        }

        nav a:hover {
            color: var(--text-primary);
            text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
        }

        nav a:hover::before {
            width: 100%;
        }

        /* Hero section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            z-index: 2;
            max-width: 800px;
            margin-top: 100px;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #ffffff, var(--neon-glow), var(--purple-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.3));
            animation: textGlow 3s ease-in-out infinite alternate;
        }

        @keyframes textGlow {
            from { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3)); }
            to { filter: drop-shadow(0 0 40px rgba(0, 245, 255, 0.4)); }
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 3rem;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24, #ff6b6b);
            background-size: 200% 100%;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(238, 90, 36, 0.4);
            border: 2px solid transparent;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 25px 60px rgba(238, 90, 36, 0.6);
            background-position: 100% 0;
        }

        /* Glass cards */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--neon-glow), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .glass-card:hover::before {
            opacity: 1;
        }

        .glass-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
            border-color: rgba(0, 245, 255, 0.3);
        }

        /* Sections */
        .section {
            padding: 8rem 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 4rem;
            background: linear-gradient(45deg, var(--text-primary), var(--neon-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Game preview - Cyberpunk slot machine */
        .game-preview {
            background: var(--dark-glass);
            backdrop-filter: blur(20px);
        }

        .cyber-slot-machine {
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            border: 2px solid var(--neon-glow);
            border-radius: 30px;
            padding: 3rem;
            max-width: 950px;
            margin: 2rem auto;
            box-shadow: 
                0 0 50px rgba(0, 245, 255, 0.3),
                inset 0 0 50px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .cyber-slot-machine::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--neon-glow), var(--purple-glow), var(--neon-glow));
            border-radius: 30px;
            z-index: -1;
            animation: borderGlow 3s ease-in-out infinite alternate;
        }

        @keyframes borderGlow {
            from { opacity: 0.5; }
            to { opacity: 1; }
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--neon-glow), var(--purple-glow));
            width: 0%;
            transition: width 0.5s ease;
            box-shadow: 0 0 10px var(--neon-glow);
        }

        .game-modes {
            margin-bottom: 2rem;
        }

        .mode-selector {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            justify-content: center;
        }

        .mode-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-secondary);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mode-btn.active, .mode-btn:hover {
            background: var(--neon-glow);
            color: #000;
            box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
        }

        .bet-controls {
            text-align: center;
        }

        .bet-controls label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .bet-buttons {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
        }

        .bet-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-primary);
            padding: 0.5rem 1rem;
            border-radius: 15px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 40px;
        }

        .bet-btn.active, .bet-btn:hover {
            background: var(--purple-glow);
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
        }

        .reels-container {
            position: relative;
            margin-bottom: 2rem;
        }

        .payline-indicator {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 10;
        }

        .payline {
            position: absolute;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--neon-glow);
            opacity: 0;
            box-shadow: 0 0 10px var(--neon-glow);
            transition: opacity 0.3s ease;
        }

        .payline:nth-child(1) { top: 33%; }
        .payline:nth-child(2) { top: 50%; }
        .payline:nth-child(3) { top: 67%; }

        .payline.active {
            opacity: 0.7;
            animation: paylinePulse 2s infinite;
        }

        @keyframes paylinePulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .reels {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .reel {
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            width: 80px;
            height: 80px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            transition: all 0.6s ease;
            cursor: pointer;
            position: relative;
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.3),
                inset 0 2px 10px rgba(255, 255, 255, 0.2);
        }

        .bonus-features {
            margin-bottom: 2rem;
        }

        .feature-meter {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .meter-label {
            text-align: center;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
        }

        .meter-bar {
            height: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }

        .meter-fill {
            height: 100%;
            background: linear-gradient(90deg, #ff6b6b, #ee5a24, #ff6b6b);
            width: 0%;
            transition: width 0.5s ease;
            box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
        }

        .meter-segments {
            display: flex;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .segment {
            flex: 1;
            border-right: 1px solid rgba(255, 255, 255, 0.3);
        }

        .segment:last-child {
            border-right: none;
        }

        .active-bonuses {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .bonus-indicator {
            background: linear-gradient(45deg, var(--neon-glow), var(--purple-glow));
            color: #000;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            animation: bonusPulse 1.5s infinite;
        }

        @keyframes bonusPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .control-panel {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .quick-controls {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 1rem;
        }

        .quick-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-primary);
            padding: 0.6rem 1.2rem;
            border-radius: 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .quick-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .quick-btn.active {
            background: var(--accent-gradient);
            box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
        }

        .game-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .last-win {
            font-weight: 600;
        }

        .paytable-btn {
            cursor: pointer;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .paytable-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .paytable-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 10001;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .paytable-modal.show {
            opacity: 1;
            visibility: visible;
        }

        .paytable-content {
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            border: 2px solid var(--neon-glow);
            border-radius: 20px;
            padding: 2rem;
            max-width: 500px;
            max-height: 80vh;
            overflow-y: auto;
        }

        .paytable-close {
            float: right;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        .reel::before {
            content: '';
            position: absolute;
            inset: 3px;
            background: linear-gradient(145deg, #f8f9fa, #e9ecef);
            border-radius: 16px;
            z-index: -1;
        }

        .reel:hover {
            transform: rotateY(180deg) scale(1.1);
            box-shadow: 0 15px 40px rgba(0, 245, 255, 0.4);
        }

        .reel.spinning {
            animation: spin3D 1s ease-in-out;
        }

        @keyframes spin3D {
            0% { transform: rotateY(0deg); }
            50% { transform: rotateY(180deg) scale(1.2); }
            100% { transform: rotateY(360deg); }
        }

        .cyber-spin-button {
            background: linear-gradient(45deg, var(--neon-glow), var(--purple-glow));
            color: #000;
            border: none;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cyber-spin-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }

        .cyber-spin-button:hover::before {
            left: 100%;
        }

        .cyber-spin-button:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 245, 255, 0.5);
        }

        .cyber-spin-button:active {
            transform: scale(0.98);
        }

        /* Features grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
        }

        .feature-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
            filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.3));
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.2) rotateY(360deg);
            filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--neon-glow);
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* About section */
        .about {
            background: var(--dark-glass);
            backdrop-filter: blur(20px);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-features {
            list-style: none;
        }

        .about-features li {
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid var(--glass-border);
        }

        .about-features li:hover {
            transform: translateX(10px);
            border-color: var(--neon-glow);
            box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
        }

        .about-features li::before {
            content: '✨';
            font-size: 1.5rem;
            filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5));
        }

        /* Warning cards */
        .warnings {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
        }

        .warning-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .warning-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 2rem;
            background: rgba(255, 193, 7, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 193, 7, 0.3);
            transition: all 0.3s ease;
        }

        .warning-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
        }

        .warning-icon {
            font-size: 2rem;
            filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5));
        }

        /* Responsible gaming */
        .responsible-gaming {
            background: linear-gradient(135deg, rgba(220, 53, 69, 0.2), rgba(108, 117, 125, 0.2));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(220, 53, 69, 0.3);
        }

        .help-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .help-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--glass-border);
            text-align: center;
            padding: 3rem 0;
        }

        /* Particle effects */
        .particle {
            position: fixed;
            pointer-events: none;
            z-index: -1;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .container { padding: 0 1rem; }
            .about-content { grid-template-columns: 1fr; gap: 2rem; }
            nav ul { flex-direction: column; gap: 1rem; }
            .header-content {gap: 1rem; }
            .reels { gap: 1rem; }
            .reel { width: 80px; height: 80px; font-size: 2.5rem; }
        }

        /* Loading animation */
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .loading {
            animation: pulse 2s infinite;
        }

        .links a{
            padding: 5px;
            text-decoration: none;
            color: white;
        }

        .links{
            margin-bottom: 20px;
        }

.resp {
    margin-bottom: 10px;
}

        .resp a {
            color: white;
            padding: 5px;
        }

                        .mobile-menu {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
            display: none;
        }


               @media (max-width: 768px) {
            .nav-links {
                color: #000;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgb(255, 255, 255);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                border-top: 1px solid rgba(0, 212, 255, 0.3);
                display: none;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu {
                display: block;
                color: black;
            }
        }