@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #03050a;
    --dark: #070b14;
    --dark-2: #0b1120;
    --dark-3: #101827;

    --blue: #3b82f6;
    --blue-light: #60a5fa;
    --pink: #ec4899;
    --pink-light: #f472b6;

    --white: #ffffff;
    --text: #e8edf7;
    --gray: #929caf;
    --muted: #626b7c;

    --border: rgba(255, 255, 255, 0.08);
    --gradient: linear-gradient(110deg, var(--blue), var(--pink));
}

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 10%, rgba(59, 130, 246, 0.08), transparent 30%),
        radial-gradient(circle at 85% 45%, rgba(236, 72, 153, 0.06), transparent 30%),
        var(--black);
    color: var(--white);
    font-family: "Inter", Arial, sans-serif;
    overflow-x: hidden;
}

body::selection {
    background: var(--blue);
    color: white;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

/* NAVIGATION */

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: 78px;
    z-index: 1000;
    background: rgba(3, 5, 10, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    width: min(1300px, calc(100% - 40px));
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: "Orbitron", sans-serif;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 3px;
}

.logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}



.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    position: relative;
    color: #aeb7c8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--gradient);
    transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: white;
    cursor: pointer;
    border-radius: 8px;
}

/* HERO */

.hero {
    position: relative;
    min-height: 88vh;
    margin-top: 78px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(3, 5, 10, 0.88) 0%, rgba(3, 5, 10, 0.65) 45%, rgba(3, 5, 10, 0.72) 100%),
        url("../images/banner2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(transparent, var(--black));
    pointer-events: none;
}

.hero-bg {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 720px;
}

.hero-content.page-title {
    max-width: 700px;
}

.hero-tag,
.section-label {
    color: var(--blue-light);
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-tag {
    margin-bottom: 20px;
}

.hero h1 {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(52px, 8vw, 100px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -4px;
}

.hero h1 span {
    color: transparent;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero p {
    max-width: 600px;
    margin-top: 28px;
    color: #b3bccb;
    font-size: 16px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

/* BUTTONS */

.btn {
    min-width: 145px;
    min-height: 48px;
    padding: 13px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(96, 165, 250, 0.55);
    border-radius: 4px;
    color: var(--blue-light);
    background: rgba(59, 130, 246, 0.04);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
    color: white;
    border-color: transparent;
    background:
        linear-gradient(var(--dark), var(--dark)) padding-box,
        var(--gradient) border-box;
    box-shadow:
        0 0 25px rgba(59, 130, 246, 0.15),
        0 0 35px rgba(236, 72, 153, 0.08);
}

.btn-primary {
    color: white;
    border-color: transparent;
    background: var(--gradient);
}

.btn-primary:hover {
    color: white;
    box-shadow:
        0 0 25px rgba(59, 130, 246, 0.3),
        0 0 30px rgba(236, 72, 153, 0.18);
}

/* SECTIONS */

.section {
    padding: 90px 0;
}

.section-header {
    margin-bottom: 42px;
}

.section-label {
    margin-bottom: 12px;
}

.section-title {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 800;
    line-height: 1;
}

.section-description {
    max-width: 650px;
    margin-top: 16px;
    color: var(--gray);
    line-height: 1.8;
}

/* INTRO */

.intro {
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.035), transparent 45%),
        var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.intro h2 {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.05;
}

.intro h2 span {
    color: transparent;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
}

.intro p {
    max-width: 750px;
    margin-top: 20px;
    color: var(--gray);
    line-height: 1.85;
}

/* CARDS */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}

.card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.025), transparent),
        var(--dark);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(59, 130, 246, 0.12),
        transparent 55%
    );
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    background:
        linear-gradient(var(--dark), var(--dark)) padding-box,
        var(--gradient) border-box;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(59, 130, 246, 0.08),
        0 0 35px rgba(236, 72, 153, 0.06);
}

.card:hover::before {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 1;
    min-height: 100%;
    padding: 26px;
    display: flex;
    flex-direction: column;
}

.card-title {
    margin-bottom: 10px;
    font-family: "Orbitron", sans-serif;
    font-size: 17px;
    line-height: 1.3;
}

.card-text {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

.card-content .btn {
    margin-top: 24px;
    align-self: flex-start;
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
}

/* COMING SOON */

.comingsoon {
    width: 100%;
    text-align: center;
}

.comingsoon h1 {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(36px, 7vw, 80px);
}

.comingsoon span {
    color: transparent;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
}

/* CTA */

.cta {
    position: relative;
    padding: 110px 20px;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.cta::before,
.cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta::before {
    width: 520px;
    height: 520px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow:
        0 0 0 60px rgba(59, 130, 246, 0.025),
        0 0 0 120px rgba(236, 72, 153, 0.018);
}

.cta::after {
    width: 300px;
    height: 300px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.07),
        transparent 70%
    );
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(30px, 5vw, 55px);
}

.cta p {
    max-width: 650px;
    margin: 18px auto 30px;
    color: var(--gray);
    line-height: 1.7;
}

/* FOOTER */

footer {
    padding: 60px 0 25px;
    background: #020308;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 35px;
}

.footer-brand p {
    max-width: 350px;
    margin-top: 16px;
    color: var(--gray);
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
}

.footer-column h3 {
    margin-bottom: 18px;
    color: var(--blue-light);
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
}

.footer-column a {
    margin-bottom: 11px;
    color: #747d8d;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--pink-light);
}

.footer-bottom {
    margin-top: 45px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #4e5665;
    font-size: 11px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 20px 20px;
        background: rgba(3, 5, 10, 0.97);
        border-bottom: 1px solid var(--border);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 16px 5px;
    }

    .nav-links a::after {
        bottom: 7px;
    }

    .menu-button {
        display: block;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .hero {
        min-height: 78vh;
        background-position: center;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, 1200px);
    }

    .nav-container {
        width: calc(100% - 28px);
    }

    .navbar {
        height: 68px;
    }

    .nav-links {
        top: 68px;
    }

    .logo {
        font-size: 17px;
        letter-spacing: 2px;
    }

    .logo img {
        width: 36px;
        height: 36px;
    }

    .hero {
        min-height: 78vh;
        margin-top: 68px;
        align-items: center;
        background-image:
            linear-gradient(90deg, rgba(3, 5, 10, 0.9), rgba(3, 5, 10, 0.72)),
            url("../images/banner2.png");
        background-position: center;
        background-attachment: scroll;
    }

    .hero-bg {
        padding: 55px 0;
    }

    .hero h1 {
        font-size: clamp(44px, 14vw, 64px);
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-buttons {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 65px 0;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .card-content {
        padding: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .cta {
        padding: 80px 14px;
    }

    .cta::before {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 400px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .hero h1 {
        font-size: 42px;
    }
}
/* ROSTER PLAYER CARDS */

.player-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.player-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    padding: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent),
        var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.player-card:hover {
    transform: translateY(-3px);
    border-color: rgba(96, 165, 250, 0.35);
    background:
        linear-gradient(145deg, rgba(59, 130, 246, 0.07), transparent),
        var(--dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.player-avatar {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.player-info {
    min-width: 0;
}

.player-name {
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-position {
    margin-top: 5px;
    color: var(--blue-light);
    font-family: "Orbitron", sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.roster-loading,
.roster-empty,
.roster-error {
    grid-column: 1 / -1;
    padding: 35px 20px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

@media (max-width: 900px) {

    .player-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {

    .player-grid {
        grid-template-columns: 1fr;
    }

    .player-card {
        padding: 16px;
    }

    .player-avatar {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

}