:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a25;
    --neon-purple: #b026ff;
    --neon-blue: #00d4ff;
    --neon-pink: #ff00a0;
    --neon-green: #00ff88;
    --neon-yellow: #ffee00;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    --border-color: #2a2a3a;
    --glow-purple: 0 0 20px rgba(176, 38, 255, 0.5);
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.5);
    --glow-pink: 0 0 20px rgba(255, 0, 160, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Scanlines & Effects */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0) 50%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.1)
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    z-index: 9998;
}

/* Glitch Text */
.glitch-text {
    position: relative;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
}

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

.glitch-text::before {
    animation: glitch-1 0.3s infinite;
    color: var(--neon-pink);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.3s infinite;
    color: var(--neon-blue);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 30% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(50% 0 20% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(10% 0 60% 0); transform: translate(-2px, 0); }
    80% { clip-path: inset(80% 0 5% 0); transform: translate(2px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(60% 0 10% 0); transform: translate(2px, -2px); }
    40% { clip-path: inset(30% 0 40% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(10% 0 70% 0); transform: translate(2px, 0); }
    80% { clip-path: inset(40% 0 30% 0); transform: translate(-2px, -2px); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-brand {
    font-size: 1.8rem;
    color: var(--neon-purple);
    text-shadow: var(--glow-purple);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    position: relative;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s;
    box-shadow: var(--glow-blue);
}

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

.discord-live-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.status-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    position: relative;
}

.status-pulse.online {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulse 2s infinite;
}

.status-pulse.idle {
    background: var(--neon-yellow);
    box-shadow: 0 0 10px var(--neon-yellow);
}

.status-pulse.dnd {
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(176, 38, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 38, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--neon-purple);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--neon-blue);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--neon-pink);
    top: 50%;
    left: 30%;
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(176, 38, 255, 0.1);
    border: 1px solid var(--neon-purple);
    color: var(--neon-purple);
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(176, 38, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--neon-purple);
    text-shadow: var(--glow-purple);
    position: relative;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-glow {
    background: var(--neon-purple);
    color: white;
    box-shadow: var(--glow-purple);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(176, 38, 255, 0.8);
}

.btn-twitch {
    background: #9146ff;
    box-shadow: 0 0 20px rgba(145, 70, 255, 0.5);
}

.btn-twitch:hover {
    box-shadow: 0 0 40px rgba(145, 70, 255, 0.8);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

/* Discord Card */
.discord-card {
    width: 380px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    z-index: 2;
}

.card-glitch {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(176, 38, 255, 0.1) 50%, transparent 70%);
    animation: card-shine 5s infinite;
    pointer-events: none;
}

@keyframes card-shine {
    0%, 100% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

.discord-banner {
    height: 120px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    position: relative;
    overflow: hidden;
}

.discord-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discord-avatar-wrap {
    position: relative;
    margin-top: -60px;
    padding: 0 2rem;
    display: flex;
    align-items: flex-end;
}

.discord-avatar-wrap img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--bg-card);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    object-fit: cover;
}

.status-ring {
    position: absolute;
    bottom: 5px;
    left: 115px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 4px solid var(--bg-card);
    background: var(--text-muted);
}

.status-ring.online { background: var(--neon-green); box-shadow: 0 0 10px var(--neon-green); }
.status-ring.idle { background: var(--neon-yellow); }
.status-ring.dnd { background: var(--neon-pink); }
.status-ring.offline { background: var(--text-muted); }

.discord-info {
    padding: 1.5rem 2rem;
}

.discord-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.discord-clan {
    color: var(--neon-purple);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.discord-activity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
}

.activity-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discord-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    background: rgba(176, 38, 255, 0.1);
    border: 1px solid rgba(176, 38, 255, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--neon-purple);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.card-corners span {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--neon-purple);
}

.card-corners span:nth-child(1) { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.card-corners span:nth-child(2) { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.card-corners span:nth-child(3) { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.card-corners span:nth-child(4) { bottom: 10px; right: 10px; border-left: none; border-top: none; }

/* Sections General */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
}

/* About Section */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
}

.stat-num {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
    line-height: 1;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

/* Terminal */
.bio-terminal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border-color);
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.terminal-btn:nth-child(1) { background: #ff5f56; }
.terminal-btn:nth-child(2) { background: #ffbd2e; }
.terminal-btn:nth-child(3) { background: #27c93f; }

.terminal-title {
    margin-left: auto;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.terminal-body {
    padding: 2rem;
    font-family: 'Rajdhani', monospace;
    font-size: 1.1rem;
}

.terminal-body p {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.prompt {
    color: var(--neon-green);
    margin-right: 0.5rem;
}

.cursor-line {
    margin-top: 1rem;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 20px;
    background: var(--neon-green);
    animation: blink 1s infinite;
}

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

/* Games Section */
.games {
    background: var(--bg-primary);
}

/* Fortnite Showcase */
.game-showcase {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.game-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #9d4dbb, #00d4ff);
}

.fortnite {
    border-color: rgba(157, 77, 187, 0.3);
}

.game-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.game-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.fortnite-icon {
    background: linear-gradient(135deg, #9d4dbb, #00d4ff);
    box-shadow: 0 0 30px rgba(157, 77, 187, 0.5);
}

.game-title h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.game-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.battle-pass {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.bp-level {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--neon-yellow);
}

.bp-bar {
    width: 150px;
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 3px;
    overflow: hidden;
}

.bp-bar div {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-yellow), var(--neon-green));
    transition: width 0.5s;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.stat-card.main-stat {
    background: linear-gradient(135deg, rgba(176, 38, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-color: var(--neon-purple);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.stat-name {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* Mode Tabs */
.mode-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.mode-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 8px;
}

.mode-btn:hover,
.mode-btn.active {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    color: white;
    box-shadow: var(--glow-purple);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 200px;
    cursor: pointer;
    transition: all 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.game-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.rust .game-bg { background: linear-gradient(135deg, #8b4513, #cd853f); }
.minecraft .game-bg { background: linear-gradient(135deg, #55aa55, #2d5016); }
.gta .game-bg { background: linear-gradient(135deg, #ff6b6b, #4ecdc4); }
.gmod .game-bg { background: linear-gradient(135deg, #3498db, #2980b9); }

.game-card:hover .game-bg {
    opacity: 0.5;
}

.game-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-content i {
    font-size: 2.5rem;
    color: white;
    opacity: 0.9;
}

.game-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.game-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

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

.game-tags span {
    padding: 0.25rem 0.75rem;
    background: rgba(0,0,0,0.5);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Streams Section */
.streams {
    background: var(--bg-secondary);
}

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

.platform-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.platform-card:hover {
    transform: translateX(10px);
    border-color: currentColor;
}

.platform-card.twitch {
    color: #9146ff;
}

.platform-card.kick {
    color: #53fc18;
}

.platform-glitch {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.platform-card:hover .platform-glitch {
    opacity: 0.1;
    animation: glitch-slide 0.5s;
}

@keyframes glitch-slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.platform-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(255,255,255,0.05);
}

.platform-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.platform-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.platform-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: currentColor;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}

.kick-dot {
    animation: none;
    opacity: 0.5;
}

.platform-arrow {
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.platform-card:hover .platform-arrow {
    color: currentColor;
    transform: translateX(5px);
}

/* Schedule */
.schedule-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.schedule-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--neon-yellow);
}

.schedule-header h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
}

.schedule-note {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.schedule-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.schedule-tags span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand .glitch-text {
    font-size: 2rem;
    color: var(--neon-purple);
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    border-color: var(--neon-purple);
    color: var(--neon-purple);
    box-shadow: var(--glow-purple);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.made-with i {
    color: var(--neon-pink);
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .discord-card {
        width: 100%;
        max-width: 400px;
        margin-top: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-grid {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mode-tabs {
        justify-content: center;
    }
}