* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: radial-gradient(circle at top, #0d0018 0%, #000 60%);
    color: white;
    overflow-x: hidden;
}

/* Moving glow background */
.background-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,0,120,0.15), transparent 70%);
    top: -200px;
    left: -200px;
    animation: moveGlow 12s infinite alternate ease-in-out;
    z-index: -1;
}

@keyframes moveGlow {
    0% { transform: translate(0,0); }
    100% { transform: translate(400px,300px); }
}

/* NAV */
header {
    position: fixed;
    width: 100%;
    padding: 20px 8%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 50px;
}

.links a {
    margin-left: 30px;
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}

.links a:hover {
    color: #ff2f87;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('assets/hero.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: 6px;
    color: #ff2f87;
    text-shadow: 0 0 20px #ff2f87;
}

.est {
    margin-top: 15px;
    opacity: 0.7;
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 140px 10%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* subtle divider glow between sections */
.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, #ff2f87, transparent);

}
/* Section background transitions */
#about {
    background: linear-gradient(to bottom, #000, #0a0012);
}

#rosters {
    background: linear-gradient(to bottom, #0a0012, #000);
}

#contact {
    background: linear-gradient(to bottom, #000, #0a0012);
}


.section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.about-box {
    border: 2px solid #ff2f87;
    padding: 40px;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
    background: rgba(255, 0, 120, 0.05);
    box-shadow: 0 0 40px rgba(255, 0, 120, 0.2);
    border-radius: 12px;
}


/* Buttons */
.button-group {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    margin: 15px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    background: #6a0d2f;
    transition: 0.4s;
    position: relative;
}

.glow:hover {
    background: #ff2f87;
    box-shadow: 0 0 25px #ff2f87;
    transform: translateY(-5px);
}

.alt {
    background: #3a0a1a;
}

/* Socials */
.socials a {
    margin: 0 20px;
    color: #bbb;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.socials a:hover {
    color: #ff2f87;
}

/* Footer */
footer {
    padding: 40px;
    text-align: center;
    opacity: 0.5;
}