:root {
    --neon-blue: #0fc5fc;
    --neon-pink: #c3ff00;
    --neon-purple: #2b77e2;
    --neon-green: #05f52d;
    --dark-bg: #0a0a0a;
    --dark-card: #111111;
    --text-light: #f8f9fa;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(-45deg, #0a0a0a, #111111, #1a1a2e, #16213e);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

/* Animated gradient background */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Particle animation for video-like effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(10, 255, 255, 0.1) 0%, transparent 2%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 2%),
        radial-gradient(circle at 40% 40%, rgba(57, 255, 20, 0.05) 0%, transparent 2%);
    background-size: 600px 600px;
    animation: particleMove 20s linear infinite;
    z-index: -1;
}

@keyframes particleMove {
    0% {
        background-position: 0px 0px, 300px 150px, 150px 300px;
    }

    100% {
        background-position: 600px 600px, 900px 750px, 750px 900px;
    }
}

/* Floating elements animation */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(10, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 0, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 30px 30px;
    background-position: 0 0, 20px 20px, 40px 40px;
    animation: float 30s linear infinite;
    z-index: -1;
    opacity: 0.3;
}

@keyframes float {
    0% {
        background-position: 0 0, 20px 20px, 40px 40px;
    }

    100% {
        background-position: 500px 500px, 520px 520px, 540px 540px;
    }
}

/* Additional animated elements */
.animated-bg-element {
    position: fixed;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
    z-index: -1;
    animation: pulse 8s ease-in-out infinite;
}

.animated-bg-element:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--neon-blue);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.animated-bg-element:nth-child(2) {
    width: 600px;
    height: 600px;
    background: var(--neon-pink);
    bottom: -200px;
    right: -150px;
    animation-delay: 2s;
}

.animated-bg-element:nth-child(3) {
    width: 300px;
    height: 300px;
    background: var(--neon-green);
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

.animated-bg-element:nth-child(4) {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    bottom: 10%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.15;
    }
}

/* Scan lines effect for video texture */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 50%,
            rgba(0, 0, 0, 0.1) 51%);
    background-size: 100% 4px;
    z-index: -1;
    pointer-events: none;
    animation: scanline 10s linear infinite;
}

@keyframes scanline {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 100%;
    }
}

/* Glitch effect for occasional video-like distortion */
.glitch-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    opacity: 0;
    animation: glitch 15s infinite;
    pointer-events: none;
}

@keyframes glitch {

    0%,
    95%,
    100% {
        opacity: 0;
        transform: translateX(0);
    }

    96% {
        opacity: 0.02;
        transform: translateX(-2px);
        background: linear-gradient(45deg, transparent 49%, var(--neon-pink) 50%, transparent 51%);
    }

    97% {
        opacity: 0.03;
        transform: translateX(2px);
        background: linear-gradient(45deg, transparent 49%, var(--neon-blue) 50%, transparent 51%);
    }

    98% {
        opacity: 0.02;
        transform: translateX(-1px);
        background: linear-gradient(45deg, transparent 49%, var(--neon-green) 50%, transparent 51%);
    }
}


body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-link {
    color: var(--text-light) !important;
    margin: 0 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--neon-blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-neon {
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-neon:hover {
    background: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--neon-blue);
}

.btn-neon-pink {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.btn-neon-pink:hover {
    background: var(--neon-pink);
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--neon-pink);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-circle {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.05) 70%, transparent 100%);
    top: -300px;
    right: -200px;
    filter: blur(20px);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* About Section */
.about-img {
    /* border-radius: 10px; */
    overflow: hidden;
    width: 85%;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); */
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--neon-blue);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Games Section */
.games-tabs {
    margin-bottom: 30px;
}

.games-tabs .nav-link {
    background: transparent;
    color: var(--text-light);
    border: none;
    font-weight: 600;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.games-tabs .nav-link.active {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    color: var(--dark-bg);
}

.game-card {
    background-color: #16213e;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.game-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.game-content {
    padding: 20px;
}

.game-content h4 {
    color: var(--neon-green);
    margin-bottom: 10px;
}

/* Why Choose Us */
.feature-card {
    background-color: var(--dark-card);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card h4 {
    margin-bottom: 15px;
    color: var(--neon-blue);
}

/* Subscribe Form */
.subscribe-section {
    background: #000d20; /* A dark background for contrast */
    border-radius: 15px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1; /* Ensure content is above the bubbles */
    color: #0ff0fc; /* Light, glowing blue font color */
}

/* Base bubble styles */
.subscribe-section::before,
.subscribe-section::after {
    content: '';
    position: absolute;
    border-radius: 50%; /* Makes the shape a circle */
    background: #027699 !important; /* Semi-transparent color for a soft look */
    z-index: -1;
    animation: bubble-move 20s infinite ease-in-out;
}

/* First bubble (::before) */
.subscribe-section::before {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation-duration: 25s;
    animation-delay: 0s;
}

/* Second bubble (::after) */
.subscribe-section::after {
    width: 150px;
    height: 150px;
    top: -80px;
    right: -30px;
    animation-duration: 20s;
    animation-delay: 5s;
}

/* Keyframes for the bubble animation */
@keyframes bubble-move {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-20px, -50px) scale(1.1);
    }
    50% {
        transform: translate(20px, -80px) scale(0.9);
    }
    75% {
        transform: translate(-10px, -30px) scale(1.2);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.subscribe-form {
    background-color: var(--dark-card);
    padding: 30px;
    border-radius: 10px;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 12px 15px;
    margin-bottom: 20px;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--neon-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 255, 0.25);
    color: var(--text-light);
}

/* Overlay Alert Styles */
.overlay-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-alert.active {
    visibility: visible;
    opacity: 1;
}

.alert-content {
    background: linear-gradient(135deg, var(--dark-card), #1a1a1a);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 30px rgba(10, 255, 255, 0.3);
    border: 2px solid var(--neon-blue);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.overlay-alert.active .alert-content {
    transform: scale(1);
}

.alert-icon {
    font-size: 4rem;
    color: var(--neon-green);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.alert-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--neon-blue);
}

.alert-message {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.alert-close {
    background: var(--neon-blue);
    color: var(--dark-bg);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.alert-close:hover {
    background: var(--neon-pink);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
}

/* White placeholder text */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}
.form-control option {
    color: var(--neon-purple) !important;
}

.form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.form-control:-moz-placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}



/* Testimonials */
.testimonial-card {
    background-color: var(--dark-card);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid var(--neon-pink);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--neon-blue);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

/* FAQs */
.accordion-item {
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    border-radius: 5px;
}

.accordion-button {
    background-color: var(--dark-card);
    color: var(--text-light);
    font-weight: 600;
    padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(0, 255, 255, 0.1);
    color: var(--neon-blue);
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 255, 0.25);
}

.accordion-body {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
footer {
    background-color: #080808;
    padding-top: 60px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.footer-about {
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-card);
    color: var(--neon-blue);
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-links h5 {
    color: var(--neon-blue);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--neon-blue);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    /* color: var(--neon-blue); */
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 60px 0;
    }

    .subscribe-section {
        padding: 30px 20px;
    }
}