/* ==========================================
   AIVANCED LANDING PAGE - CYBERPUNK STYLES
   ========================================== */

/* === ROOT VARIABLES === */
:root {
    /* Colors - Cyberpunk Palette */
    --obsidian: #050505;
    --obsidian-light: #0a0a0a;
    --cyan: #00e5ff;
    --cyan-glow: rgba(0, 229, 255, 0.5);
    --yellow: #facc15;
    --red: #ff003c;
    --purple: #a855f7;
    --purple-glow: rgba(168, 85, 247, 0.5);

    /* League Colors */
    --bronze: #cd7f32;
    --chrome: #c0c0c0;
    --gold: #ffd700;
    --plasma: #a855f7;
    --diamond: #b9f2ff;
    --aivanced: #00e5ff;

    /* Rarity Colors */
    --common: #94a3b8;
    --rare: #60a5fa;
    --epic: #a855f7;
    --legendary: #facc15;
    --mythic: #ff003c;

    /* Typography */
    --font-display: 'Exo 2', sans-serif;
    --font-ui: 'Rajdhani', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Effects */
    --glass-blur: blur(40px);
    --neon-glow: 0 0 20px var(--cyan-glow);
    --purple-neon: 0 0 20px var(--purple-glow);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ui);
    background: var(--obsidian);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* === ANIMATED GRID BACKGROUND === */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--cyan) 1px, transparent 1px),
        linear-gradient(90deg, var(--purple) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

/* === PARTICLE CANVAS === */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--cyan);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    color: var(--cyan);
}

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

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border: none;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--obsidian);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--neon-glow);
}

/* === UTILITY CLASSES === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.text-cyan { color: var(--cyan); }
.text-yellow { color: var(--yellow); }
.text-red { color: var(--red); }
.text-purple { color: var(--purple); }

/* === GLITCH EFFECT === */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--red);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--cyan);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 31px, 0); }
    20% { clip: rect(85px, 9999px, 140px, 0); }
    40% { clip: rect(120px, 9999px, 35px, 0); }
    60% { clip: rect(45px, 9999px, 98px, 0); }
    80% { clip: rect(3px, 9999px, 67px, 0); }
    100% { clip: rect(91px, 9999px, 43px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 119px, 0); }
    20% { clip: rect(36px, 9999px, 59px, 0); }
    40% { clip: rect(21px, 9999px, 102px, 0); }
    60% { clip: rect(95px, 9999px, 15px, 0); }
    80% { clip: rect(50px, 9999px, 77px, 0); }
    100% { clip: rect(13px, 9999px, 94px, 0); }
}

/* === CHROMATIC ABERRATION === */
.chromatic {
    position: relative;
    display: inline-block;
}

.chromatic::before,
.chromatic::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
}

.chromatic::before {
    color: var(--red);
    transform: translate(-3px, 0);
    filter: blur(1px);
}

.chromatic::after {
    color: var(--cyan);
    transform: translate(3px, 0);
    filter: blur(1px);
}

/* === SCANLINE EFFECT === */
.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--cyan) 50%,
        transparent 100%
    );
    opacity: 0.3;
    animation: scanlineMove 2s linear infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes scanlineMove {
    0% { transform: translateY(-30px); }
    100% { transform: translateY(100vh); }
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-corners {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.corner {
    position: absolute;
    width: 100px;
    height: 100px;
}

.corner::before,
.corner::after {
    content: '';
    position: absolute;
    background: var(--cyan);
    box-shadow: var(--neon-glow);
}

.corner::before {
    width: 100%;
    height: 2px;
}

.corner::after {
    width: 2px;
    height: 100%;
}

.corner-tl {
    top: 100px;
    left: 50px;
}

.corner-tl::before { top: 0; left: 0; }
.corner-tl::after { top: 0; left: 0; }

.corner-tr {
    top: 100px;
    right: 50px;
}

.corner-tr::before { top: 0; right: 0; }
.corner-tr::after { top: 0; right: 0; }

.corner-bl {
    bottom: 50px;
    left: 50px;
}

.corner-bl::before { bottom: 0; left: 0; }
.corner-bl::after { bottom: 0; left: 0; }

.corner-br {
    bottom: 50px;
    right: 50px;
}

.corner-br::before { bottom: 0; right: 0; }
.corner-br::after { bottom: 0; right: 0; }

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--cyan);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.badge-separator {
    color: var(--cyan);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px var(--cyan-glow));
}

.hero-subtitle {
    font-family: var(--font-ui);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--yellow);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(250, 204, 21, 0.5);
}

.hero-description {
    font-family: var(--font-ui);
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--cyan);
    line-height: 1;
    text-shadow: var(--neon-glow);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--cyan),
        transparent
    );
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-metadata {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
}

.metadata-line {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: var(--obsidian);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--cyan-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--cyan);
    border: 2px solid var(--cyan);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: scale(1.05);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1rem;
}

.btn-icon {
    font-size: 1.25rem;
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    color: var(--cyan);
    margin-bottom: 1rem;
    text-shadow: var(--neon-glow);
}

.title-bracket {
    color: var(--purple);
}

.section-subtitle {
    font-family: var(--font-ui);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

/* === FEATURES SECTION === */
.features {
    padding: var(--spacing-xl) 0;
    position: relative;
}

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

.feature-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 30px var(--cyan-glow);
    transform: translateY(-5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--cyan);
    margin-bottom: 1.5rem;
    filter: drop-shadow(var(--neon-glow));
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-description {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.feature-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--cyan);
    color: var(--cyan);
}

/* === HEROES SECTION === */
.heroes {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--obsidian) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.heroes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.hero-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-card[data-rarity="legendary"] {
    border-color: var(--legendary);
}

.hero-card[data-rarity="epic"] {
    border-color: var(--epic);
}

.hero-card[data-rarity="rare"] {
    border-color: var(--rare);
}

.hero-card[data-rarity="mythic"] {
    border-color: var(--mythic);
}

.hero-card:hover {
    transform: translateY(-5px);
}

.hero-card[data-rarity="legendary"]:hover {
    box-shadow: 0 0 30px rgba(250, 204, 21, 0.4);
}

.hero-card[data-rarity="epic"]:hover {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}

.hero-card[data-rarity="rare"]:hover {
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.4);
}

.hero-card[data-rarity="mythic"]:hover {
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.4);
}

.hero-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-card:hover .hero-card-glow {
    opacity: 0.1;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-codename {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--cyan);
}

.hero-status {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border: 1px solid;
}

.hero-status.unlocked {
    color: var(--cyan);
    border-color: var(--cyan);
    background: rgba(0, 229, 255, 0.1);
}

.hero-status.locked {
    color: var(--red);
    border-color: var(--red);
    background: rgba(255, 0, 60, 0.1);
}

.hero-card-body {
    margin-bottom: 1rem;
}

.hero-class {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.hero-league {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.league-badge,
.rarity-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border: 1px solid;
}

.league-badge.bronze { color: var(--bronze); border-color: var(--bronze); background: rgba(205, 127, 50, 0.1); }
.league-badge.chrome { color: var(--chrome); border-color: var(--chrome); background: rgba(192, 192, 192, 0.1); }
.league-badge.gold { color: var(--gold); border-color: var(--gold); background: rgba(255, 215, 0, 0.1); }
.league-badge.plasma { color: var(--plasma); border-color: var(--plasma); background: rgba(168, 85, 247, 0.1); }
.league-badge.aivanced { color: var(--aivanced); border-color: var(--aivanced); background: rgba(0, 229, 255, 0.1); }

.rarity-badge.rare { color: var(--rare); border-color: var(--rare); background: rgba(96, 165, 250, 0.1); }
.rarity-badge.epic { color: var(--epic); border-color: var(--epic); background: rgba(168, 85, 247, 0.1); }
.rarity-badge.legendary { color: var(--legendary); border-color: var(--legendary); background: rgba(250, 204, 21, 0.1); }
.rarity-badge.mythic { color: var(--mythic); border-color: var(--mythic); background: rgba(255, 0, 60, 0.1); }

.hero-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-stat {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    gap: 0.5rem;
    align-items: center;
}

.stat-label-small {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--cyan);
}

.stat-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    box-shadow: 0 0 10px var(--cyan-glow);
    transition: width 0.6s ease;
}

.stat-value-small {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
}

.hero-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

/* === SYNDICATES SECTION === */
.syndicates {
    padding: var(--spacing-xl) 0;
    background: rgba(10, 10, 10, 0.5);
}

.syndicates-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.syndicates-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.syndicate-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--cyan);
    opacity: 0.3;
    line-height: 1;
}

.feature-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.syndicates-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.syndicate-stat-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.syndicate-stat-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
    transform: translateY(-5px);
}

.stat-icon {
    width: 32px;
    height: 32px;
    color: var(--cyan);
    margin: 0 auto 1rem;
    filter: drop-shadow(var(--neon-glow));
}

.emblems-showcase {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(168, 85, 247, 0.2);
    padding: 3rem;
    text-align: center;
}

.emblems-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--purple);
    margin-bottom: 2rem;
}

.emblems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.emblem-item {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid var(--purple);
    color: var(--purple);
    transition: all 0.3s ease;
}

.emblem-item:hover {
    background: rgba(168, 85, 247, 0.2);
    box-shadow: 0 0 20px var(--purple-glow);
    transform: scale(1.05);
}

/* === ARENA SECTION === */
.arena {
    padding: var(--spacing-xl) 0;
}

.leagues-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.league-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: var(--glass-blur);
    border: 2px solid;
    padding: 2rem 1.5rem;
    text-align: center;
    min-width: 140px;
    transition: all 0.3s ease;
}

.league-card:hover {
    transform: scale(1.1);
}

.bronze-league { border-color: var(--bronze); }
.chrome-league { border-color: var(--chrome); }
.gold-league { border-color: var(--gold); }
.plasma-league { border-color: var(--plasma); }
.diamond-league { border-color: var(--diamond); }
.aivanced-league { border-color: var(--aivanced); }

.bronze-league:hover { box-shadow: 0 0 30px rgba(205, 127, 50, 0.4); }
.chrome-league:hover { box-shadow: 0 0 30px rgba(192, 192, 192, 0.4); }
.gold-league:hover { box-shadow: 0 0 30px rgba(255, 215, 0, 0.4); }
.plasma-league:hover { box-shadow: 0 0 30px rgba(168, 85, 247, 0.4); }
.diamond-league:hover { box-shadow: 0 0 30px rgba(185, 242, 255, 0.4); }
.aivanced-league:hover { box-shadow: 0 0 30px var(--cyan-glow); }

.league-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.bronze-league .league-icon { color: var(--bronze); }
.chrome-league .league-icon { color: var(--chrome); }
.gold-league .league-icon { color: var(--gold); }
.plasma-league .league-icon { color: var(--plasma); }
.diamond-league .league-icon { color: var(--diamond); }
.aivanced-league .league-icon { color: var(--aivanced); }

.league-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.bronze-league .league-name { color: var(--bronze); }
.chrome-league .league-name { color: var(--chrome); }
.gold-league .league-name { color: var(--gold); }
.plasma-league .league-name { color: var(--plasma); }
.diamond-league .league-name { color: var(--diamond); }
.aivanced-league .league-name { color: var(--aivanced); }

.league-requirement {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.league-arrow {
    font-size: 2rem;
    color: var(--cyan);
    opacity: 0.5;
}

.arena-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.arena-feature-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 2rem;
    transition: all 0.3s ease;
}

.arena-feature-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
    transform: translateY(-5px);
}

.arena-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.arena-feature-card p {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* === TECH STACK SECTION === */
.tech-stack {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, var(--obsidian) 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tech-item {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(168, 85, 247, 0.2);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: var(--purple);
    box-shadow: 0 0 20px var(--purple-glow);
    transform: translateY(-5px);
}

.tech-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--purple);
    margin-bottom: 0.5rem;
}

.tech-description {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.performance-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.perf-stat {
    text-align: center;
}

.perf-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--purple);
    text-shadow: 0 0 20px var(--purple-glow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.perf-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

/* === DOWNLOAD SECTION === */
.download {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.download-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: var(--glass-blur);
    border: 2px solid var(--cyan);
}

.download-corners {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.download-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-subtitle {
    font-family: var(--font-ui);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.download-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.download-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--cyan);
    width: 50px;
    height: 50px;
    border: 2px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.step-text {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--cyan);
    opacity: 0.5;
}

.download-metadata {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    padding: var(--spacing-lg) 0 2rem;
    background: var(--obsidian-light);
    border-top: 1px solid rgba(0, 229, 255, 0.2);
}

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

.footer-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.footer-description {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--purple);
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.footer-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-separator {
    color: var(--cyan);
}

.footer-metadata {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    gap: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 6rem 1rem 2rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .features-grid,
    .heroes-grid,
    .syndicates-stats,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .leagues-showcase {
        flex-direction: column;
    }

    .league-arrow {
        transform: rotate(90deg);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
