
        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');
        
        :root {
            --primary: #ff00e4;
            --secondary: #ff00ff;
            --accent: #ffff00;
            --dark: #0a0a12;
            --darker: #050508;
            --light: #f0f0f0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: var(--darker);
            color: var(--light);
            overflow-x: hidden;
            position: relative;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
        }
        .space-x{
            padding-right: 50px;
        }
        /* Matrix Background */
        .matrix-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.1;
            overflow: hidden;
        }
        
        .matrix-symbol {
            position: absolute;
            color: var(--primary);
            font-size: 20px;
            animation: fall linear infinite;
        }
        
        @keyframes fall {
            0% {
                transform: translateY(-100px);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(calc(100vh + 100px));
                opacity: 0;
            }
        }
        
        /* Circuit Effect */
        .circuit {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(90deg, transparent 98%, var(--primary) 100%),
                linear-gradient(0deg, transparent 98%, var(--primary) 100%);
            background-size: 50px 50px;
            opacity: 0.05;
            z-index: -1;
        }
        
        /* Glitch Effect */
        .glitch {
            position: relative;
            color: var(--primary);
            font-size: 4rem;
            font-weight: 900;
            text-transform: uppercase;
            text-shadow: 0.05em 0 0 var(--secondary), -0.03em -0.04em 0 var(--accent),
                         0.025em 0.04em 0 var(--secondary);
            animation: glitch 725ms infinite;
        }
        
        .glitch:hover {
            animation-play-state: paused;
        }
        
        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .glitch::before {
            animation: glitch-1 500ms infinite;
            color: var(--secondary);
            z-index: -1;
        }
        
        .glitch::after {
            animation: glitch-2 500ms infinite;
            color: var(--accent);
            z-index: -2;
        }
        
        @keyframes glitch {
            0%, 100% { text-shadow: 0.05em 0 0 var(--secondary), -0.03em -0.04em 0 var(--accent), 0.025em 0.04em 0 var(--secondary); }
            15% { text-shadow: 0.05em 0 0 var(--secondary), -0.03em -0.04em 0 var(--accent), 0.025em 0.04em 0 var(--secondary); }
            16% { text-shadow: -0.05em -0.025em 0 var(--secondary), 0.025em 0.035em 0 var(--accent), -0.05em -0.05em 0 var(--secondary); }
            49% { text-shadow: -0.05em -0.025em 0 var(--secondary), 0.025em 0.035em 0 var(--accent), -0.05em -0.05em 0 var(--secondary); }
            50% { text-shadow: 0.05em 0.035em 0 var(--secondary), 0.03em 0 0 var(--accent), 0 -0.04em 0 var(--secondary); }
            99% { text-shadow: 0.05em 0.035em 0 var(--secondary), 0.03em 0 0 var(--accent), 0 -0.04em 0 var(--secondary); }
        }
        
        @keyframes glitch-1 {
            0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
            20% { clip-path: inset(20% 0 30% 0); transform: translate(-5px, 5px); }
            40% { clip-path: inset(50% 0 20% 0); transform: translate(5px, -5px); }
            60% { clip-path: inset(10% 0 60% 0); transform: translate(-5px, 0); }
            80% { clip-path: inset(80% 0 5% 0); transform: translate(5px, 0); }
        }
        
        @keyframes glitch-2 {
            0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
            20% { clip-path: inset(60% 0 10% 0); transform: translate(5px, -5px); }
            40% { clip-path: inset(20% 0 50% 0); transform: translate(-5px, 5px); }
            60% { clip-path: inset(30% 0 40% 0); transform: translate(5px, 0); }
            80% { clip-path: inset(5% 0 80% 0); transform: translate(-5px, 0); }
        }
        
        /* Pulse Animation */
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 0, 228, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 0, 228, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 0, 228, 0); }
        }
        
        /* Glow Effect */
        .glow {
            text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary);
        }
        
        .glow-border {
            box-shadow: 0 0 15px var(--primary), inset 0 0 15px rgba(255, 0, 228, 0.2);
            border: 1px solid var(--primary);
        }
        
        /* Jackpot Counter */
        .counter {
            display: inline-block;
            overflow: hidden;
            height: 1.2em;
            line-height: 1.2em;
        }
        
        .counter-digit {
            display: inline-block;
            transition: transform 0.3s ease-out;
        }
        
        /* Tabs Animation */
        .tab-container {
            overflow: hidden;
            position: relative;
        }
        
        .tab-content {
            position: absolute;
            width: 100%;
            transition: transform 0.5s ease-in-out;
        }
        
        .tab-content.active {
            transform: translateX(0);
        }
        
        .tab-content.prev {
            transform: translateX(-100%);
        }
        
        .tab-content.next {
            transform: translateX(100%);
        }
        
        /* Game Card */
        .game-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            background: rgba(10, 10, 18, 0.7);
            border: 1px solid rgba(255, 0, 228, 0.3);
            transition: all 0.3s ease;
            max-width: 450px;
        }
        
        .game-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
            border-radius: 10px;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
            animation: rotate-border 4s linear infinite;
        }
        
        .game-card:hover::before {
            opacity: 1;
        }
        
        @keyframes rotate-border {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* Accordion */
        .accordion-item {
            border-bottom: 1px solid rgba(255, 0, 228, 0.2);
            margin-bottom: 10px;
        }
        
        .accordion-header {
            padding: 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(10, 10, 18, 0.5);
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }
        
        .accordion-header:hover {
            border-left-color: var(--primary);
        }
        
        .accordion-header.active {
            border-left-color: var(--secondary);
            background: rgba(255, 0, 255, 0.1);
        }
        
        .accordion-icon {
            transition: transform 0.3s ease;
        }
        
        .accordion-header.active .accordion-icon {
            transform: rotate(180deg);
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }
        
        .accordion-content.active {
            max-height: 500px;
            padding: 15px;
        }
        
        /* Blog Card */
        .blog-card {
            background: rgba(10, 10, 18, 0.7);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 0, 228, 0.2);
        }
        
        .blog-image {
            overflow: hidden;
            height: 200px;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }
        
        .blog-content {
            padding: 20px;
            position: relative;
        }
        
        .blog-card:hover .blog-content {
            transform: translateY(-10px);
        }
        
        /* Global CTA */
        .global-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 0 20px rgba(255, 0, 228, 0.5);
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
        }
        
        .global-cta:hover {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(255, 0, 228, 0.8);
        }
        
        .global-cta i {
            font-size: 24px;
            color: var(--darker);
            animation: spin 3s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Navigation */
        nav {
            background: rgba(10, 10, 18, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 0, 228, 0.2);
            position: sticky;
            top: 0;
            z-index: 50;
        }
        
        .nav-link {
            position: relative;
            padding: 10px 15px;
            margin: 0 5px;
            transition: color 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        /* Page Transitions */
        .page {
            
            animation: fadeIn 0.5s ease-in-out;
        }
        
        .page.active {
            display: block;
            
        }

        .game-page{
            height: 1200px;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Counter Animation */
        .counter-value {
            display: inline-block;
        }
        
        /* Button Styles */
        .btn-cyber {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--darker);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            z-index: 1;
        }
        
        .btn-cyber::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transition: left 0.5s ease;
            z-index: -1;
        }
        
        .btn-cyber:hover::before {
            left: 100%;
        }
        
        .btn-cyber:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 0, 228, 0.3);
        }
        
        /* Form Styles */
        .form-control {
            background: rgba(10, 10, 18, 0.7);
            border: 1px solid rgba(255, 0, 228, 0.3);
            color: var(--light);
            padding: 12px 15px;
            border-radius: 5px;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 10px rgba(255, 0, 228, 0.3);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .glitch {
                font-size: 2.5rem;
            }
            
            .global-cta {
                width: 60px;
                height: 60px;
                bottom: 20px;
                right: 20px;
            }
        }

         /* Footer specific animations */
    footer {
        position: relative;
    }
    
    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--primary), transparent);
        animation: scan 3s linear infinite;
    }
    
    @keyframes scan {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }
    
    /* Newsletter input animation */
    .form-control:focus {
        animation: input-glow 0.5s ease;
    }
    
    @keyframes input-glow {
        0% { box-shadow: 0 0 5px rgba(255, 0, 228, 0.5); }
        50% { box-shadow: 0 0 20px rgba(255, 0, 228, 0.8); }
        100% { box-shadow: 0 0 5px rgba(255, 0, 228, 0.5); }
    }
    
    /* Social media hover effect */
    .fab:hover {
        animation: social-pulse 0.5s ease;
    }
    
    @keyframes social-pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.2); }
        100% { transform: scale(1); }
    }
 
    /*******************Contact Page**************/
    /* Contact page specific styles */
    #contactForm input:focus,
    #contactForm select:focus,
    #contactForm textarea:focus {
        animation: cyber-glow 0.5s ease;
    }
    
    @keyframes cyber-glow {
        0% { box-shadow: 0 0 5px rgba(255, 0, 228, 0.5); }
        50% { box-shadow: 0 0 20px rgba(255, 0, 228, 0.8); }
        100% { box-shadow: 0 0 5px rgba(255, 0, 228, 0.5); }
    }
    
    /* Form submission animation */
    .submitting {
        position: relative;
        pointer-events: none;
        opacity: 0.7;
    }
    
    .submitting::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: loading 1.5s infinite;
    }
    
    @keyframes loading {
        0% { left: -100%; }
        100% { left: 100%; }
    }
    
    /* Modal animation */
    .modal-show {
        display: flex !important;
    }
    
    .modal-show #successContent {
        transform: scale(1);
    }
    
    /* Contact card hover effects */
    .border-cyan-500:hover {
        box-shadow: 0 0 20px rgba(255, 0, 228, 0.5);
    }
    
    .border-purple-500:hover {
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    }
    
    .border-yellow-500:hover {
        box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
    }
    
    .border-green-500:hover {
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    }