:root {
    --main: #6c29ed;
    --text: #ffffff;
}

/* 

holy shit this grid bg took so long fml

*/
html,
body {
    min-height: 100%;
}

body {
    background-color: #06020d;
    background-image:
        radial-gradient(circle at 50% -25%, rgba(58,10,122,0.95) 0%, rgba(26,3,51,0.85) 35%, rgba(0,0,0,0.98) 100%),
        radial-gradient(circle at 50% 55%, rgba(108,41,237,0.14) 0%, transparent 40%),
        linear-gradient(rgba(255,255,255,0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.18) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 100% 100%, 120% 120%, 20px 20px, 20px 20px, 80px 80px, 80px 80px;
    background-position: center center;
    background-attachment: fixed;
    background-blend-mode: normal, normal, normal, normal, normal, normal;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}


.navbar {
    background: transparent;
    padding: 18px 0;
    backdrop-filter: blur(6px);
}

.hero {
    padding: 200px 0 160px;
    text-align: center;
    max-width: 1100px;
    margin: auto;
}

.hero img {
    height: 130px;
    filter: drop-shadow(0 0 12px rgba(108,41,237,0.7));
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.05;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #8b3dff, #6c29ed, #b57dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 8px rgba(108,41,237,0.22);
}
.navbar .container .navbar-brand .gradient-text {
    background: linear-gradient(135deg, #8b3dff, #6c29ed, #b57dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.hero p {
    font-size: 1.25rem;
    opacity: 0.85;
}


.section-desc {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
    opacity: 0.85;
    font-size: 1.1rem;
}

.float-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 55px 40px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(6px);
}

.float-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(108,41,237,0.35);
}


.feature-icon {
    font-size: 2.6rem;
    color: rgba(108,41,237,0.65);
    opacity: 0.85;
    margin-bottom: 20px;
}

.float-card .bi {
    color: rgba(255,255,255,0.65);
    opacity: 0.8;
}

.stat-box h2 {
    font-size: 2.6rem;
    font-weight: 700;
}

.pricing-card h2 {
    font-size: 2.4rem;
    font-weight: 700;
}


.discord-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 80px 50px;
    text-align: center;
    backdrop-filter: blur(6px);
}

footer {
    margin-top: 120px;
    padding: 80px 0;
    background: rgba(0,0,0,0.45);
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

footer a {
    color: #d8caff;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: 0.2s;
}

footer a:hover {
    color: #ffffff;
}

footer i {
    font-size: 26px;
    margin: 0 14px;
    color: #bfa8ff;
    transition: 0.2s;
}

footer i:hover {
    color: #ffffff;
}

/* FAQ Tab Styling */
.nav-tabs {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.nav-tabs .nav-link {
    color: #ffffff;
    background-color: transparent;
    border: none;
    border-radius: 0;
    margin: 0 6px;
    padding: 12px 18px;
    transition: all 0.25s ease;
}

.nav-tabs .nav-link:not(.active):hover {
    color: #ffffff;
    background-color: rgba(108,41,237,0.2);
    border-radius: 999px;
}

.nav-tabs .nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, #8b3dff, #6c29ed);
    border: none;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 12px 30px rgba(108,41,237,0.2);
}

.nav-tabs .nav-link.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: #6c29ed;
    margin-top: 8px;
}

.tab-content {
    border-top: none;
}


@keyframes float-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow-shadow {
    from {
        filter: drop-shadow(0 0 0px rgba(108,41,237,0));
        text-shadow: none;
    }
    to {
        filter: drop-shadow(0 0 15px rgba(108,41,237,0.8));
        text-shadow: 0 0 20px rgba(108,41,237,0.6);
    }
}

.stat-number {
    animation: glow-shadow 1.2s ease-out forwards;
}

.hero, .container {
    animation: float-up 0.8s ease-out forwards;
}

.hero {
    animation-delay: 0s;
}

.container:nth-of-type(2) { animation-delay: 0.1s; }
.container:nth-of-type(3) { animation-delay: 0.2s; }
.container:nth-of-type(4) { animation-delay: 0.3s; }
.container:nth-of-type(5) { animation-delay: 0.4s; }
.container:nth-of-type(6) { animation-delay: 0.5s; }

.float-card, .discord-box {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.float-card.visible, .discord-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.float-card, .discord-box {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.3s ease, 
                filter 0.3s ease;
}

.float-card:hover, .discord-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(108,41,237,0.4);
    filter: drop-shadow(0 10px 25px rgba(108,41,237,0.3));
}

.float-card:focus-within, .discord-box:focus-within {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(108,41,237,0.4);
    filter: drop-shadow(0 10px 25px rgba(108,41,237,0.3));
}
