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

:root {
    --bg-primary: #050510;
    --bg-secondary: #0a0a1a;
    --bg-card: #0f0f24;
    --bg-card-hover: #161640;
    --accent: #2979ff;
    --accent-light: #448aff;
    --accent-glow: rgba(41, 121, 255, 0.4);
    --red: #ff1744;
    --red-light: #ff5252;
    --red-glow: rgba(255, 23, 68, 0.4);
    --green: #00e676;
    --text-primary: #f0f0f5;
    --text-secondary: #7a7a95;
    --border: rgba(255, 255, 255, 0.06);
    --radius: 14px;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --gradient: linear-gradient(135deg, #2979ff, #ff1744);
    --gradient-text: linear-gradient(135deg, #2979ff, #448aff, #ff5252, #ff1744);
}

html { scroll-behavior: smooth; }

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

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 5, 16, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px var(--accent-glow); }
    50% { opacity: 0.6; text-shadow: 0 0 20px var(--accent-glow); }
}

.accent { color: var(--accent-light); }

.nav-links {
    display: flex;
    gap: 6px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
}

.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.03); }

.nav-links a.active {
    color: var(--accent-light);
    background: rgba(41, 121, 255, 0.1);
}

.nav-btn {
    text-decoration: none;
    background: var(--gradient);
    color: white;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
}

.nav-btn:hover {
    box-shadow: 0 0 25px var(--accent-glow), 0 0 25px var(--red-glow);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    width: 100%;
    background: rgba(5, 5, 16, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 12px;
    z-index: 99;
    border-bottom: 1px solid var(--border);
}

.mobile-nav.active { display: flex; }

.mobile-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.3s;
}

.mobile-nav a.active { color: var(--accent-light); }

/* TOP BANNER */
.top-banner {
    position: relative;
    z-index: 1;
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 14px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 70px;
    animation: bannerGlow 3s ease-in-out infinite;
}

@keyframes bannerGlow {
    0%, 100% { box-shadow: 0 2px 20px var(--accent-glow); }
    50% { box-shadow: 0 2px 30px var(--red-glow); }
}

.top-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 700;
}

/* PAGE HEADER */
.page-header {
    padding: 140px 24px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content { flex: 1; max-width: 560px; }

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid var(--accent);
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-light);
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    background: rgba(41, 121, 255, 0.06);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(41, 121, 255, 0.2); }
    50% { box-shadow: 0 0 0 6px rgba(41, 121, 255, 0); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary { background: var(--gradient); color: white; }

.btn-primary:hover {
    box-shadow: 0 0 30px var(--accent-glow), 0 0 30px var(--red-glow);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(41, 121, 255, 0.1);
}

.btn-discord {
    background: #5865F2;
    color: white;
}

.btn-discord:hover {
    background: #4752c4;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.4);
    transform: translateY(-3px);
}

.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-lg { padding: 18px 48px; font-size: 1.1rem; }
.btn-icon { font-size: 0.8rem; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--accent), var(--red), transparent);
}

/* LAUNCHER PREVIEW */
.hero-visual { flex: 1; max-width: 520px; }

.launcher-preview {
    background: var(--bg-secondary);
    border-radius: 18px;
    border: 1px solid rgba(41, 121, 255, 0.15);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(41, 121, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.preview-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--border);
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; box-shadow: 0 0 6px #ff5f57; }
.dot.yellow { background: #febc2e; box-shadow: 0 0 6px #febc2e; }
.dot.green { background: #28c840; box-shadow: 0 0 6px #28c840; }

.preview-title {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.preview-content { display: flex; height: 280px; }

.preview-sidebar {
    width: 140px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 8px;
    border-right: 1px solid var(--border);
}

.sidebar-item {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-item.active { background: var(--gradient); color: white; }
.sidebar-item:hover:not(.active) { background: var(--bg-card); }

.preview-main {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-news { display: flex; gap: 10px; flex: 1; }

.news-card {
    flex: 1;
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.news-card:hover { border-color: var(--accent); }

.news-img { height: 70px; background: var(--gradient); }
.news-img.alt { background: linear-gradient(135deg, #ff1744, #2979ff); }
.news-text { padding: 8px; }
.news-title { font-size: 0.7rem; font-weight: 600; margin-bottom: 2px; }
.news-desc { font-size: 0.6rem; color: var(--text-secondary); }

.play-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-display);
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 3px;
}

.play-btn:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 25px var(--accent-glow), 0 0 25px var(--red-glow);
}

/* PAGE CONTENT */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid var(--accent);
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-light);
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    background: rgba(41, 121, 255, 0.06);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(41, 121, 255, 0.15), 0 0 0 1px rgba(41, 121, 255, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* SERVERS */
.server-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.server-card:hover::before { transform: scaleX(1); }

.server-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(41, 121, 255, 0.1);
}

.server-card.featured-server {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(41, 121, 255, 0.08), rgba(255, 23, 68, 0.04));
    padding: 36px 40px;
}

.server-card.featured-server::before { transform: scaleX(1); }

.server-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.server-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
}

.server-status.online {
    background: var(--green);
    box-shadow: 0 0 12px rgba(0, 230, 118, 0.6);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(0, 230, 118, 0.4); }
    50% { box-shadow: 0 0 16px rgba(0, 230, 118, 0.8); }
}

.server-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.server-ip {
    color: var(--accent-light);
    font-size: 0.82rem;
    font-family: 'Fira Code', monospace;
}

.server-details { display: flex; gap: 28px; flex: 1; }

.server-stat-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.server-stat-value { font-size: 0.9rem; font-weight: 600; }
.server-card .btn { margin-left: auto; }

.server-info-extra {
    text-align: center;
    padding: 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.server-info-extra strong { color: var(--red-light); }

.servers-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* DOWNLOAD */
.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.download-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.download-card:hover::before { transform: scaleX(1); }

.download-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(41, 121, 255, 0.15);
}

.download-card.coming-soon {
    opacity: 0.6;
}

.download-icon { margin-bottom: 20px; }

.download-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.download-version {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.download-status {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.download-status.available { color: var(--green); }
.download-status.coming { color: var(--red-light); }

.download-note {
    text-align: center;
    margin-top: 32px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* UPDATE NOTICE */
.update-notice {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(41, 121, 255, 0.08), rgba(255, 23, 68, 0.04));
    border: 1px solid rgba(41, 121, 255, 0.2);
    border-radius: var(--radius);
    padding: 24px 32px;
    animation: noticeGlow 4s ease-in-out infinite;
}

@keyframes noticeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(41, 121, 255, 0.05); }
    50% { box-shadow: 0 0 30px rgba(255, 23, 68, 0.08); }
}

.update-notice-icon { font-size: 2.5rem; }

.update-notice h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 4px;
}

.update-notice p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.update-notice a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
}

.update-notice a:hover { text-decoration: underline; }

/* FAQ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active { border-color: var(--accent); }

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    transition: color 0.3s;
}

.faq-question:hover { color: var(--accent-light); }

.faq-toggle {
    font-size: 1.4rem;
    color: var(--accent-light);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* HELP */
.help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.help-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s;
}

.help-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.help-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.help-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.help-card a {
    color: var(--accent-light);
    text-decoration: none;
}

.help-card a:hover { text-decoration: underline; }

/* TERMINAL */
.terminal-section {
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.terminal-section .section-container {
    padding: 80px 24px;
    max-width: 800px;
}

.terminal-window {
    background: #080c18;
    border-radius: 16px;
    border: 1px solid rgba(41, 121, 255, 0.15);
    overflow: hidden;
    font-family: 'Fira Code', monospace;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(41, 121, 255, 0.05);
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(41, 121, 255, 0.1);
}

.terminal-title {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.terminal-body {
    padding: 20px;
    height: 240px;
    overflow-y: auto;
    font-size: 0.82rem;
    line-height: 1.9;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.terminal-body::-webkit-scrollbar {
    width: 4px;
}

.terminal-body::-webkit-scrollbar-track {
    background: transparent;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

.terminal-line {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.terminal-prompt {
    color: var(--green);
    font-weight: 500;
    white-space: nowrap;
}

.terminal-cmd { color: #e0e0e0; }

.terminal-cursor {
    color: var(--accent-light);
    animation: blink 0.8s step-end infinite;
    font-weight: bold;
}

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

.terminal-output {
    color: var(--text-secondary);
    padding-left: 0;
    white-space: pre-wrap;
    margin-bottom: 8px;
}

.terminal-success { color: var(--green); }

/* TEAM */
.team-section {
    position: relative;
    z-index: 1;
}

.team-section .section-container {
    padding: 80px 24px;
    max-width: 800px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transition: transform 0.4s;
}

.team-card.founder::before {
    background: linear-gradient(90deg, #2979ff, #448aff);
    transform: scaleX(0);
}

.team-card.co-founder::before {
    background: linear-gradient(90deg, #ff1744, #ff5252);
    transform: scaleX(0);
}

.team-card:hover::before { transform: scaleX(1); }

.team-card:hover {
    transform: translateY(-6px);
}

.team-card.founder {
    border-color: rgba(41, 121, 255, 0.2);
}

.team-card.founder:hover {
    box-shadow: 0 10px 40px rgba(41, 121, 255, 0.15);
}

.team-card.co-founder {
    border-color: rgba(255, 23, 68, 0.2);
}

.team-card.co-founder:hover {
    box-shadow: 0 10px 40px rgba(255, 23, 68, 0.15);
}

.team-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.team-card.founder .team-badge {
    background: rgba(41, 121, 255, 0.1);
    color: var(--accent-light);
    border: 1px solid rgba(41, 121, 255, 0.3);
}

.team-card.co-founder .team-badge {
    background: rgba(255, 23, 68, 0.1);
    color: var(--red-light);
    border: 1px solid rgba(255, 23, 68, 0.3);
}

.team-avatar {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: float 4s ease-in-out infinite;
}

.team-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-handle {
    font-size: 0.85rem;
    font-family: 'Fira Code', monospace;
    margin-bottom: 8px;
}

.team-card.founder .team-handle { color: var(--accent-light); }
.team-card.co-founder .team-handle { color: var(--red-light); }

.team-role {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* DISCORD CTA */
.discord-section {
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.discord-section .section-container {
    padding: 80px 24px;
}

/* FOOTER */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand { max-width: 300px; }

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 12px;
}

.footer-links { display: flex; gap: 60px; }

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-buttons { justify-content: center; flex-wrap: wrap; }
    .hero-stats { justify-content: center; }
    .hero h1 { font-size: 2.2rem; }

    .features-grid,
    .download-grid,
    .help-grid,
    .team-grid { grid-template-columns: 1fr; }

    .nav-links { display: none; }
    .nav-btn { display: none; }
    .mobile-menu { display: block; }

    .server-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .server-details { justify-content: center; }
    .server-card .btn { margin-left: 0; }
    .footer-top { flex-direction: column; }
    .footer-links { gap: 30px; flex-wrap: wrap; }
    .terminal-body { font-size: 0.72rem; height: 200px; }
    .update-notice { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 1.7rem; }
    .page-header h1 { font-size: 2rem; }
    .section-header h2 { font-size: 1.5rem; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 40px; height: 1px; }
    .preview-sidebar { display: none; }
    .terminal-body { font-size: 0.68rem; height: 180px; }
}
