/* Space Angel - Valorant Style Edition */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Electric Blue Color Palette */
    --electric-blue: #00D4FF;
    --electric-blue-dark: #00A8CC;
    --valorant-dark: #0F1923;
    --valorant-darker: #0A0E13;
    --valorant-navy: #1A242E;
    --valorant-card: #111820;
    --valorant-border: rgba(0, 212, 255, 0.2);
    --text: #ECE8E1;
    --text-muted: #94A3B8;
    --gradient-blue: linear-gradient(135deg, #00D4FF, #00A8CC);
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--valorant-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 25, 35, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--valorant-border);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--electric-blue);
    text-transform: uppercase;
    text-shadow: var(--glow-blue);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.nav-brand:hover {
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.nav-brand .logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
    padding: 4px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.nav-brand .logo:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--electric-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.2);
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electric-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--electric-blue);
}

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

.discord-link {
    background: #5865F2;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
}

.discord-link:hover {
    background: #4752C4;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--electric-blue);
    border-radius: 2px;
    transition: 0.3s;
    box-shadow: var(--glow-blue);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--valorant-darker);
    padding-top: 80px;
    overflow: hidden;
}

/* Hero Background Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Hero Overlay - for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.15), transparent 70%),
        linear-gradient(135deg, rgba(10, 14, 19, 0.7) 0%, rgba(15, 25, 35, 0.8) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,212,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: grid-move 20s linear infinite;
    z-index: 1;
}

@keyframes grid-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}


.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 8px;
    position: relative;
    text-shadow:
        0 0 20px rgba(0, 212, 255, 0.8),
        0 0 40px rgba(0, 212, 255, 0.6),
        0 0 60px rgba(0, 212, 255, 0.4),
        0 0 80px rgba(0, 212, 255, 0.2);
    animation: electric-pulse 3s ease-in-out infinite, lightning-flicker 4s linear infinite;
}

@keyframes electric-pulse {
    0%, 100% {
        text-shadow:
            0 0 20px rgba(0, 212, 255, 0.8),
            0 0 40px rgba(0, 212, 255, 0.6),
            0 0 60px rgba(0, 212, 255, 0.4),
            0 0 80px rgba(0, 212, 255, 0.2);
    }
    50% {
        text-shadow:
            0 0 30px rgba(0, 212, 255, 1),
            0 0 60px rgba(0, 212, 255, 0.8),
            0 0 90px rgba(0, 212, 255, 0.6),
            0 0 120px rgba(0, 212, 255, 0.4),
            0 0 150px rgba(0, 212, 255, 0.2);
    }
}

@keyframes lightning-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        text-shadow:
            0 0 20px rgba(0, 212, 255, 0.8),
            0 0 40px rgba(0, 212, 255, 0.6),
            0 0 60px rgba(0, 212, 255, 0.4),
            0 0 80px rgba(0, 212, 255, 0.2);
    }
    20%, 24%, 55% {
        opacity: 0.85;
        text-shadow:
            0 0 40px rgba(0, 212, 255, 1),
            0 0 80px rgba(0, 212, 255, 0.8),
            0 0 120px rgba(0, 212, 255, 0.6),
            0 0 160px rgba(0, 212, 255, 0.4);
    }
    22% {
        opacity: 0.9;
        text-shadow:
            0 0 50px rgba(0, 212, 255, 1),
            0 0 100px rgba(0, 212, 255, 0.9),
            0 0 150px rgba(0, 212, 255, 0.7);
    }
}

.hero .subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--electric-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.6);
    background: var(--electric-blue-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--electric-blue);
    border: 2px solid var(--electric-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--electric-blue);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* About */
.about {
    padding: 100px 0;
    background: var(--valorant-navy);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
}

.about h2, .team h2, .join h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text);
    position: relative;
    display: inline-block;
    width: 100%;
}

.about h2::after, .team h2::after, .join h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-blue);
    box-shadow:
        0 0 10px rgba(0, 212, 255, 0.8),
        0 0 20px rgba(0, 212, 255, 0.6),
        0 0 30px rgba(0, 212, 255, 0.4);
    animation: underline-spark 3s ease-in-out infinite;
}

@keyframes underline-spark {
    0%, 100% {
        box-shadow:
            0 0 10px rgba(0, 212, 255, 0.8),
            0 0 20px rgba(0, 212, 255, 0.6),
            0 0 30px rgba(0, 212, 255, 0.4);
    }
    50% {
        box-shadow:
            0 0 20px rgba(0, 212, 255, 1),
            0 0 40px rgba(0, 212, 255, 0.8),
            0 0 60px rgba(0, 212, 255, 0.6);
    }
}

.intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 40px 20px;
    background: var(--valorant-card);
    border-radius: 4px;
    border: 2px solid var(--valorant-border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateY(-8px);
    border-color: var(--electric-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.feature i {
    font-size: 48px;
    color: var(--electric-blue);
    margin-bottom: 20px;
    filter: drop-shadow(var(--glow-blue));
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature p {
    color: var(--text-muted);
}

/* Team */
.team {
    padding: 100px 0;
    background: var(--valorant-dark);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
}

/* Team Leader - Large Featured Image */
.team-leader {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.leader-image-wrapper {
    position: relative;
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    border: 3px solid var(--valorant-border);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.leader-image-wrapper:hover {
    border-color: var(--electric-blue);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    transform: translateY(-5px);
}

.leader-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.leader-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 14, 19, 0.95), transparent);
    padding: 40px 30px 30px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.leader-image-wrapper:hover .leader-overlay {
    background: linear-gradient(to top, rgba(10, 14, 19, 0.98), rgba(10, 14, 19, 0.6));
}

.leader-overlay .badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--electric-blue);
    color: white;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    box-shadow:
        0 4px 15px rgba(0, 212, 255, 0.6),
        0 0 20px rgba(0, 212, 255, 0.4);
    animation: badge-electric 2s ease-in-out infinite;
}

@keyframes badge-electric {
    0%, 100% {
        box-shadow:
            0 4px 15px rgba(0, 212, 255, 0.6),
            0 0 20px rgba(0, 212, 255, 0.4);
    }
    50% {
        box-shadow:
            0 4px 20px rgba(0, 212, 255, 0.8),
            0 0 30px rgba(0, 212, 255, 0.6),
            0 0 40px rgba(0, 212, 255, 0.4);
    }
}

.leader-overlay h3 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
    text-shadow: var(--glow-blue);
}

.leader-overlay .rank {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text);
    font-weight: 600;
}

/* Team Grid - 3 Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    position: relative;
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--valorant-border);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.card-image-wrapper:hover {
    border-color: var(--electric-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    transform: translateY(-8px);
}

.card-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.card-image-wrapper:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 14, 19, 0.95), transparent);
    padding: 30px 20px 20px;
    transition: all 0.3s ease;
}

.card-image-wrapper:hover .card-overlay {
    background: linear-gradient(to top, rgba(10, 14, 19, 0.98), rgba(10, 14, 19, 0.5));
}

.card-overlay .badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--electric-blue);
    color: white;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    box-shadow:
        0 3px 12px rgba(0, 212, 255, 0.5),
        0 0 15px rgba(0, 212, 255, 0.3);
    animation: badge-electric 2s ease-in-out infinite;
}

.badge-sentinel {
    background: #00FFB3 !important;
    box-shadow:
        0 3px 12px rgba(0, 255, 179, 0.5),
        0 0 15px rgba(0, 255, 179, 0.3) !important;
}

.badge-initiator {
    background: #FFA500 !important;
    box-shadow:
        0 3px 12px rgba(255, 165, 0, 0.5),
        0 0 15px rgba(255, 165, 0, 0.3) !important;
}

.badge-controller {
    background: #A855F7 !important;
    box-shadow:
        0 3px 12px rgba(168, 85, 247, 0.5),
        0 0 15px rgba(168, 85, 247, 0.3) !important;
}

.card-overlay h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    text-shadow: var(--glow-blue);
}

.card-overlay .rank {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--text);
    font-weight: 600;
}

/* Join */
.join {
    padding: 100px 0;
    background: var(--valorant-navy);
    position: relative;
}

.join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
}

.join-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.requirements, .process {
    background: var(--valorant-card);
    padding: 40px;
    border-radius: 4px;
    border: 2px solid var(--valorant-border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.requirements:hover, .process:hover {
    border-color: var(--electric-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.requirements h3, .process h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.requirements ul {
    list-style: none;
}

.requirements li {
    padding: 15px 0;
    border-bottom: 1px solid var(--valorant-border);
    transition: all 0.3s ease;
}

.requirements li:last-child {
    border-bottom: none;
}

.requirements li:hover {
    padding-left: 10px;
    color: var(--electric-blue);
}

.requirements i {
    color: var(--electric-blue);
    margin-right: 12px;
}

.process ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.process li {
    padding: 10px 0;
    color: var(--text-muted);
}

.process .note {
    text-align: center;
    color: var(--text-muted);
    margin-top: 15px;
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--valorant-darker);
    padding: 60px 0 30px;
    border-top: 2px solid var(--valorant-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.footer-col p {
    color: var(--text-muted);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--electric-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--valorant-border);
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(15, 20, 25, 0.98);
        width: 100%;
        padding: 40px 0;
        transition: left 0.3s;
        gap: 15px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .leader-overlay {
        padding: 30px 20px 20px;
    }

    .leader-overlay h3 {
        font-size: 28px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--valorant-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-blue);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--electric-blue);
    box-shadow: var(--glow-blue);
}
