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

:root {
    --red: #e63946;
    --red-dark: #9d0208;
    --red-glow: rgba(230, 57, 70, 0.4);
    --bg: #06060e;
    --bg2: #0c0c18;
    --card: rgba(12, 12, 24, 0.8);
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --text2: #8888aa;
    --font: 'Rajdhani', 'Inter', sans-serif;
    --font-display: 'Orbitron', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); overflow-x: hidden; cursor: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* LOADER */
#loader {
    position: fixed; inset: 0; z-index: 99999;
    background: #0a0a12;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content { text-align: center; position: relative; }

.loader-ring {
    width: 120px; height: 120px; margin: 0 auto 2rem; position: relative;
    display: flex; align-items: center; justify-content: center;
}
.loader-ring::before {
    content: ''; position: absolute; inset: 0;
    border: 3px solid transparent; border-top-color: #e63946; border-radius: 50%;
    animation: loaderRingSpin 1.2s linear infinite;
}
.loader-ring::after {
    content: ''; position: absolute; inset: 8px;
    border: 3px solid transparent; border-bottom-color: #ff6b7a; border-radius: 50%;
    animation: loaderRingSpin 1.8s linear infinite reverse;
}
.loader-logo {
    width: 70px; height: 70px; border-radius: 50%;
    background: linear-gradient(135deg, #e63946, #96212a);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 40px rgba(230,57,70,0.4), 0 0 80px rgba(230,57,70,0.15);
    animation: loaderPulse 2s ease-in-out infinite;
    position: relative; z-index: 1; overflow: hidden;
}
.loader-glow {
    position: absolute; inset: -20px; border-radius: 50%;
    background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
    animation: loaderGlow 2s ease-in-out infinite;
}

@keyframes loaderRingSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(230,57,70,0.4), 0 0 80px rgba(230,57,70,0.15); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(230,57,70,0.6), 0 0 120px rgba(230,57,70,0.25); }
}
@keyframes loaderGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.loader-text {
    font-family: 'Orbitron', sans-serif; font-size: 0.8rem;
    color: rgba(255,255,255,0.3); letter-spacing: 6px; text-transform: uppercase;
    margin-bottom: 1.5rem; animation: loaderTextFlicker 3s ease-in-out infinite;
}
@keyframes loaderTextFlicker {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.loader-progress-wrap {
    width: 200px; height: 2px; background: rgba(255,255,255,0.05); border-radius: 2px;
    margin: 0 auto; overflow: hidden;
}
.loader-progress {
    width: 0%; height: 100%; background: linear-gradient(90deg, #e63946, #ff6b7a);
    border-radius: 2px; transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(230,57,70,0.5);
}
.loader-percent {
    font-family: 'Rajdhani', sans-serif; font-size: 0.7rem;
    color: rgba(255,255,255,0.2); margin-top: 0.8rem; letter-spacing: 2px;
}

.dots::after { content: ''; animation: dots 1.5s infinite; }
@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* CURSOR */
.cursor-dot {
    width: 6px; height: 6px; background: var(--red);
    border-radius: 50%; position: fixed; pointer-events: none; z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    box-shadow: 0 0 12px var(--red-glow);
}
.cursor-ring {
    width: 40px; height: 40px;
    border: 1.5px solid rgba(230, 57, 70, 0.4);
    border-radius: 50%; position: fixed; pointer-events: none; z-index: 99997;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

body:hover .cursor-dot, body:hover .cursor-ring { opacity: 1; }

.cursor-hover .cursor-dot { width: 12px; height: 12px; background: #fff; }
.cursor-hover .cursor-ring { width: 60px; height: 60px; border-color: rgba(255,255,255,0.5); }

/* CANVAS */
#bg-canvas {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
}

/* NAV */
.nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: all 0.4s;
}
.nav.scrolled {
    background: rgba(6, 6, 14, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.6rem 0;
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-icon {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 10px; font-size: 0.9rem;
    box-shadow: 0 4px 15px var(--red-glow);
}
.logo-text { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
.red { color: var(--red); }

.nav-menu { display: flex; gap: 2rem; }
.nav-link {
    font-size: 0.95rem; font-weight: 500; color: var(--text2);
    position: relative; transition: color 0.3s;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--red); transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-btn {
    padding: 0.6rem 1.5rem; border-radius: 10px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    font-weight: 600; font-size: 0.9rem; font-family: var(--font);
    transition: all 0.3s; box-shadow: 0 4px 15px var(--red-glow);
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 25px var(--red-glow); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; }
.hamburger span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s; }

/* HERO */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; padding: 100px 2rem; overflow: hidden;
}
.hero-content { position: relative; z-index: 10; text-align: center; max-width: 800px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.2rem; border-radius: 50px;
    background: var(--glass); border: 1px solid var(--glass-border);
    font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--red); margin-bottom: 2rem;
}
.badge-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
    font-family: var(--font-display); font-size: 4.5rem; font-weight: 900;
    line-height: 1.05; margin-bottom: 1.5rem;
}
.title-word { display: inline-block; color: var(--text); margin-right: 0.3em; }
.title-gradient {
    background: linear-gradient(135deg, var(--red), #ff6b6b);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.title-gradient2 {
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.2rem; color: var(--text2); max-width: 550px; margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3rem; }

.btn-glow {
    position: relative; display: inline-flex; padding: 0.9rem 2rem;
    border-radius: 12px; font-weight: 600; font-size: 1rem;
    overflow: hidden; cursor: none;
}
.btn-glow-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    z-index: 0;
}
.btn-glow-content {
    position: relative; z-index: 1; display: flex; align-items: center; gap: 0.5rem; color: #fff;
}
.btn-glow::after {
    content: ''; position: absolute; inset: -2px; border-radius: 14px;
    background: linear-gradient(135deg, var(--red), #ff6b6b, var(--red));
    z-index: -1; opacity: 0; transition: opacity 0.3s;
}
.btn-glow:hover::after { opacity: 1; }
.btn-glow:hover { transform: translateY(-2px); }

.btn-outline {
    padding: 0.9rem 2rem; border-radius: 12px;
    border: 2px solid var(--glass-border); font-weight: 600; font-size: 1rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: all 0.3s; cursor: none;
}
.btn-outline:hover {
    border-color: var(--red); background: rgba(230, 57, 70, 0.1);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex; align-items: center; justify-content: center; gap: 2.5rem;
}
.stat { text-align: center; }
.stat-value {
    font-family: var(--font-display); font-size: 2rem; font-weight: 800;
    color: var(--red); text-shadow: 0 0 20px var(--red-glow);
}
.stat-label { font-size: 0.8rem; color: var(--text2); text-transform: uppercase; letter-spacing: 2px; margin-top: 0.2rem; }
.stat-divider { width: 1px; height: 40px; background: var(--glass-border); }

/* SCROLL HINT */
.scroll-hint {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-mouse {
    width: 22px; height: 34px; border: 2px solid var(--text2); border-radius: 11px;
    display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
    width: 3px; height: 8px; background: var(--red); border-radius: 2px;
    animation: scrollAnim 1.5s infinite;
}
@keyframes scrollAnim { 0%,100% { opacity:1; transform:translateY(0); } 50% { opacity:0.3; transform:translateY(8px); } }
.scroll-hint span { font-size: 0.7rem; color: var(--text2); letter-spacing: 3px; text-transform: uppercase; }

/* FLOATING SHAPES */
.floating-shapes { position: absolute; inset: 0; overflow: hidden; }
.shape {
    position: absolute; border: 1px solid rgba(230, 57, 70, 0.15);
    animation: floatShape 20s infinite linear;
}
.shape-1 { width: 80px; height: 80px; top: 15%; left: 10%; animation-duration: 25s; }
.shape-2 { width: 50px; height: 50px; top: 70%; left: 80%; animation-duration: 20s; animation-delay: -5s; }
.shape-3 { width: 120px; height: 120px; top: 60%; left: 15%; animation-duration: 30s; animation-delay: -10s; }
.shape-4 { width: 40px; height: 40px; top: 20%; left: 75%; animation-duration: 18s; animation-delay: -3s; }
.shape-5 { width: 60px; height: 60px; top: 80%; left: 50%; animation-duration: 22s; animation-delay: -8s; }
.shape-6 { width: 30px; height: 30px; top: 40%; left: 85%; animation-duration: 15s; animation-delay: -12s; }
.shape-7 { width: 100px; height: 100px; top: 10%; left: 50%; animation-duration: 28s; animation-delay: -7s; }
.shape-8 { width: 45px; height: 45px; top: 50%; left: 30%; animation-duration: 20s; animation-delay: -15s; }
@keyframes floatShape {
    0% { transform: rotate(0deg) translate(0, 0); }
    25% { transform: rotate(90deg) translate(30px, -30px); }
    50% { transform: rotate(180deg) translate(0, 0); }
    75% { transform: rotate(270deg) translate(-30px, 30px); }
    100% { transform: rotate(360deg) translate(0, 0); }
}

/* SECTIONS */
.section { padding: 100px 0; position: relative; z-index: 10; }
.section-dark { background: var(--bg2); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-tag {
    display: inline-block; padding: 0.4rem 1rem; border-radius: 50px;
    background: rgba(230, 57, 70, 0.1); border: 1px solid rgba(230, 57, 70, 0.2);
    font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--red); margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display); font-size: 3rem; font-weight: 800;
    margin-bottom: 1rem; line-height: 1.1;
}
.section-desc { font-size: 1.1rem; color: var(--text2); max-width: 500px; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-desc { margin: 0 auto; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.about-feature { display: flex; gap: 1rem; align-items: flex-start; }
.about-feature-icon {
    width: 48px; height: 48px; min-width: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(230, 57, 70, 0.1); border-radius: 12px;
    color: var(--red); font-size: 1.1rem;
}
.about-feature h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.about-feature p { font-size: 0.9rem; color: var(--text2); }

.about-right { position: relative; height: 400px; perspective: 1000px; }
.about-3d-card {
    width: 280px; height: 350px; margin: 0 auto;
    position: relative; transform-style: preserve-3d;
    animation: aboutCardFloat 6s ease-in-out infinite;
}
@keyframes aboutCardFloat {
    0%, 100% { transform: rotateY(-5deg) rotateX(5deg) translateY(0); }
    50% { transform: rotateY(5deg) rotateX(-5deg) translateY(-15px); }
}
.about-card-inner {
    width: 100%; height: 100%; position: relative;
    transform-style: preserve-3d;
}
.about-card-front {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--bg2), rgba(230, 57, 70, 0.05));
    border: 1px solid var(--glass-border); border-radius: 20px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1rem; padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.card-icon-large { font-size: 4rem; color: var(--red); text-shadow: 0 0 40px var(--red-glow); }
.about-card-front h3 { font-family: var(--font-display); font-size: 1.5rem; }
.about-card-front p { color: var(--text2); }

.about-float-card {
    position: absolute; padding: 0.8rem 1.2rem; border-radius: 12px;
    background: var(--card); border: 1px solid var(--glass-border);
    display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: floatCard 4s ease-in-out infinite;
}
.about-float-card i { color: var(--red); }
.card-1 { top: 20px; right: 0; animation-delay: 0s; }
.card-2 { bottom: 80px; left: 0; animation-delay: -1.5s; }
.card-3 { bottom: 10px; right: 20px; animation-delay: -3s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
    position: relative; padding: 2rem; border-radius: 16px;
    background: var(--card); border: 1px solid var(--glass-border);
    overflow: hidden; transition: all 0.4s;
}
.feature-card:hover { transform: translateY(-8px); border-color: rgba(230,57,70,0.3); }
.feature-card-bg {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(230,57,70,0.08), transparent 70%);
    opacity: 0; transition: opacity 0.4s;
}
.feature-card:hover .feature-card-bg { opacity: 1; }
.feature-icon-wrap { margin-bottom: 1.5rem; position: relative; z-index: 1; }
.feature-icon {
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 14px; font-size: 1.3rem;
    box-shadow: 0 8px 20px var(--red-glow);
}
.feature-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.feature-card p { font-size: 0.95rem; color: var(--text2); line-height: 1.7; position: relative; z-index: 1; }
.feature-link {
    display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem;
    font-size: 0.85rem; color: var(--red); font-weight: 600;
    position: relative; z-index: 1;
    transition: gap 0.3s;
}
.feature-link:hover { gap: 0.8rem; }

/* SERVER */
.server-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.server-details { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.server-detail {
    display: flex; align-items: center; gap: 1rem; padding: 1rem;
    background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px;
    transition: border-color 0.3s;
}
.server-detail:hover { border-color: var(--red); }
.detail-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(230,57,70,0.1); border-radius: 10px; color: var(--red); min-width: 40px; }
.detail-label { font-size: 0.75rem; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; display: block; }
.detail-value { font-family: var(--font-display); font-size: 1rem; font-weight: 600; display: block; }
.detail-copy {
    margin-left: auto; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    background: var(--glass); border: 1px solid var(--glass-border); border-radius: 8px;
    color: var(--text2); cursor: none; transition: all 0.3s;
}
.detail-copy:hover { background: var(--red); color: white; border-color: var(--red); }

.server-status-box {
    display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.5rem;
    background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px;
}
.status-pulse { width: 10px; height: 10px; background: #888; border-radius: 50%; animation: pulse 2s infinite; }
.status-pulse.online { background: #00ff44; box-shadow: 0 0 15px rgba(0,255,68,0.5); }
.status-pulse.offline { background: #ff4444; box-shadow: 0 0 15px rgba(255,68,68,0.5); }
.status-text { font-weight: 600; font-size: 0.9rem; }
.status-players { margin-left: auto; color: var(--text2); font-size: 0.85rem; }

/* SERVER 3D VISUAL */
.server-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
    height: 400px; perspective: 800px;
}
.server-3d-scene {
    width: 200px; height: 200px; position: relative;
    transform-style: preserve-3d;
    animation: serverCubeSpin 12s infinite linear;
}
@keyframes serverCubeSpin {
    0% { transform: rotateX(-15deg) rotateY(0deg); }
    100% { transform: rotateX(-15deg) rotateY(360deg); }
}
.server-cube { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; }
.sc-face {
    position: absolute; width: 200px; height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.8rem; font-weight: 900;
    background: linear-gradient(135deg, var(--red-dark), rgba(157, 2, 8, 0.3));
    border: 2px solid var(--red); backface-visibility: visible;
    box-shadow: inset 0 0 60px rgba(230, 57, 70, 0.15);
}
.sc-face span { text-shadow: 0 0 20px var(--red-glow); }
.sc-front  { transform: translateZ(100px); }
.sc-back   { transform: rotateY(180deg) translateZ(100px); }
.sc-right  { transform: rotateY(90deg) translateZ(100px); }
.sc-left   { transform: rotateY(-90deg) translateZ(100px); }
.sc-top    { transform: rotateX(90deg) translateZ(100px); }
.sc-bottom { transform: rotateX(-90deg) translateZ(100px); }

.orbit-ring {
    position: absolute; border: 1px solid rgba(230,57,70,0.15); border-radius: 50%;
    animation: orbitSpin 8s infinite linear;
}
.ring-1 { width: 300px; height: 300px; }
.ring-2 { width: 380px; height: 380px; animation-duration: 12s; animation-direction: reverse; }
@keyframes orbitSpin { 0% { transform: rotateX(70deg) rotateZ(0deg); } 100% { transform: rotateX(70deg) rotateZ(360deg); } }

.orbit-dot {
    position: absolute; width: 8px; height: 8px; background: var(--red);
    border-radius: 50%; box-shadow: 0 0 10px var(--red-glow);
}
.dot-1 { animation: orbitDot1 8s infinite linear; }
.dot-2 { animation: orbitDot2 12s infinite linear; }
@keyframes orbitDot1 {
    0% { transform: rotateX(70deg) rotateZ(0deg) translateX(150px); }
    100% { transform: rotateX(70deg) rotateZ(360deg) translateX(150px); }
}
@keyframes orbitDot2 {
    0% { transform: rotateX(70deg) rotateZ(0deg) translateX(190px); }
    100% { transform: rotateX(70deg) rotateZ(-360deg) translateX(190px); }
}

/* DISCORD BANNER */
.discord-banner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 3rem; border-radius: 20px;
    background: linear-gradient(135deg, rgba(88,101,242,0.1), rgba(88,101,242,0.02));
    border: 1px solid rgba(88,101,242,0.2);
}
.discord-icon-big {
    width: 80px; height: 80px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #5865F2, #4752c4); border-radius: 22px;
    font-size: 2.2rem; color: white; box-shadow: 0 10px 30px rgba(88,101,242,0.3);
}
.discord-center h2 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 0.3rem; }
.discord-center p { color: var(--text2); }
.discord-btn .btn-glow-bg { background: linear-gradient(135deg, #5865F2, #4752c4); }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.step-card {
    padding: 2rem; border-radius: 16px;
    background: var(--card); border: 1px solid var(--glass-border);
    text-align: center; position: relative; transition: all 0.3s;
}
.step-card:hover { border-color: var(--red); transform: translateY(-5px); }
.step-num {
    font-family: var(--font-display); font-size: 3rem; font-weight: 900;
    color: var(--red); opacity: 0.15; position: absolute; top: 10px; right: 15px;
}
.step-icon {
    width: 60px; height: 60px; margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
    background: rgba(230,57,70,0.1); border-radius: 50%;
    font-size: 1.3rem; color: var(--red);
}
.step-card h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.4rem; }
.step-card p { font-size: 0.9rem; color: var(--text2); }

.copy-ip-section { text-align: center; }
.copy-ip-box {
    display: inline-flex; border-radius: 14px; overflow: hidden;
    border: 2px solid var(--red); box-shadow: 0 0 30px var(--red-glow);
}
.copy-ip-box input {
    background: transparent; border: none; color: white; padding: 1rem 1.5rem;
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
    width: 300px; outline: none;
}
.copy-ip-box button {
    background: var(--red); border: none; color: white; padding: 1rem 1.5rem;
    font-family: var(--font); font-size: 1rem; font-weight: 600;
    display: flex; align-items: center; gap: 0.5rem; cursor: none;
    transition: background 0.3s;
}
.copy-ip-box button:hover { background: #ff4757; }
.copy-msg { margin-top: 0.8rem; color: #00ff44; font-weight: 600; opacity: 0; transition: opacity 0.3s; }
.copy-msg.show { opacity: 1; }

/* FOOTER */
.footer { padding: 4rem 0 2rem; background: var(--bg2); border-top: 1px solid var(--glass-border); position: relative; z-index: 10; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--text2); margin-top: 0.5rem; font-size: 0.9rem; }
.footer-links h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 1px; }
.footer-links a { display: block; color: var(--text2); font-size: 0.9rem; margin-bottom: 0.6rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--red); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem; border-top: 1px solid var(--glass-border);
}
.footer-bottom p { color: var(--text2); font-size: 0.85rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
    background: var(--glass); border: 1px solid var(--glass-border); border-radius: 10px;
    color: var(--text2); transition: all 0.3s;
}
.footer-socials a:hover { background: var(--red); border-color: var(--red); color: white; transform: translateY(-2px); }

/* ANIMATIONS */
.animate-in {
    opacity: 0; transform: translateY(30px);
    animation: animIn 0.8s forwards;
    animation-delay: var(--delay, 0s);
}
@keyframes animIn { to { opacity: 1; transform: translateY(0); } }

[data-reveal] {
    opacity: 0; transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .server-grid { grid-template-columns: 1fr; }
    .server-visual { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu, .nav-btn { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: 2.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { font-size: 2rem; }
    .discord-banner { flex-direction: column; text-align: center; gap: 1.5rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .hero-stats { flex-wrap: wrap; justify-content: center; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .cursor-dot, .cursor-ring { display: none; }
    body { cursor: auto; }
}

@media (max-width: 480px) {
    .steps-grid { grid-template-columns: 1fr; }
    .copy-ip-box { flex-direction: column; }
    .copy-ip-box input { width: 100%; text-align: center; }
    .hero-title { font-size: 2rem; }
}

.discord-widget-container {
    max-width: 600px; margin: 0 auto;
    border-radius: 16px; overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.discord-widget-container iframe {
    display: block; width: 100%; height: 500px;
    border: none;
}
@media (max-width: 768px) {
    .discord-widget-container iframe { height: 400px; }
}
