:root {
    --primary: #3B82F6;
    --secondary: #1E40AF;
    --accent: #60A5FA;
    --background: #07080a;
    --card: #0c0d0f;
}


@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

/* Mobile menu styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--background);
    transition: right 0.3s ease-in-out;
    z-index: 50;
    padding: 2rem;
    border-left: 1px solid rgba(96, 165, 250, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}
  /* Global scrollbar width */
  ::-webkit-scrollbar {
    width: 12px;
    height: 12px;
  }

  /* Scrollbar track */
  ::-webkit-scrollbar-track {
    background: #1e293b; /* Tailwind gray-800 */
  }

  /* Scrollbar thumb */
  ::-webkit-scrollbar-thumb {
    background-color: #3b82f6; /* Tailwind blue-500 */
    border-radius: 8px;
    border: 3px solid #1e293b; /* padding around thumb */
  }

  /* Thumb hover */
  ::-webkit-scrollbar-thumb:hover {
    background-color: #2563eb; /* Tailwind blue-600 */
  }

  /* For Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 #1e293b;
  }
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 45;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
.hero-text {
        padding-top: 6rem;
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
   
    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .mobile-button-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .mobile-button-group a {
        width: 100%;
    }

    #cookie-banner {
        padding: 1rem;
    }
}

/* Slow Scroll Section */
.slow-scroll-section {
    background-image: url('assets/images/pattern.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.slow-scroll-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.9);
    z-index: 1;
}

.slow-scroll-section > .container {
    position: relative;
    z-index: 2;
}

/* Cookie banner styles */
#cookie-banner {
    display: none;
}

body {
    font-family: 'JetBrains Mono', sans-serif;
    background-color: var(--background);
}

.gradient-text {
    background: linear-gradient(45deg, #60A5FA, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
}

.feature-card {
    background: #0c0d0f;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(96, 165, 250, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(96, 165, 250, 0.1);
}

@media (min-width: 768px) {
    @keyframes smoothGlow {
        0% {
            box-shadow: 0 0 300px rgb(96, 165, 250),
                       0 0 600px rgb(96, 165, 250),
                       0 0 900px rgb(96, 165, 250);
            border-color: rgb(255, 255, 255);
            transform: scale(1.02);
        }
        100% {
            box-shadow: 0 0 15px rgba(96, 165, 250, 0.5),
                       0 0 30px rgba(96, 165, 250, 0.3);
            border-color: rgba(96, 165, 250, 0.5);
            transform: scale(1);
        }
    }

    .feature-card.animate-glow {
        animation: smoothGlow 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
        transform-origin: center;
    }
}

.stats-card {
    background: #0c0d0f;
    border: 1px solid rgba(96, 165, 250, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(96, 165, 250, 0.1);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(0);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}



/* Premium Button Styles */
.btn-premium {
    background: transparent;
    border: 2px solid #60A5FA;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5), 0 0 20px rgba(96, 165, 250, 0.2);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.7), 0 0 30px rgba(96, 165, 250, 0.3);
    background: rgba(96, 165, 250, 0.1);
    border-color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Discord Button Styles */
.discord-float {
    position: fixed;
    z-index: 40;
    background: #5865F2;
    color: white;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.discord-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(88, 101, 242, 0.6);
}

/* Desktop Position */
@media (min-width: 768px) {
    .discord-float {
        bottom: 32px;
        left: 32px;
    }
}

/* Mobile Position */
@media (max-width: 767px) {
    .discord-float {
        bottom: 24px;
        left: 24px;
    }
}
