/* ========================================
   VKRP - Vaikunthapuram Roleplay Website
   ULTIMATE CYBERPUNK EDITION
======================================== */

/* CSS Variables */
:root {
    --primary: #00f0ff;
    --primary-dark: #00a8b3;
    --secondary: #ff00ff;
    --tertiary: #f0ff00;
    --accent: #ff6b35;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(18, 18, 26, 0.8);
    --bg-card-hover: rgba(26, 26, 37, 0.9);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    --border-color: rgba(0, 240, 255, 0.2);
    --success: #00ff88;
    --warning: #ffaa00;
    --danger: #ff4444;
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-fire: linear-gradient(135deg, #ff6b35, #f7931e, #ffcc00);
    --gradient-neon: linear-gradient(90deg, #00f0ff, #ff00ff, #f0ff00, #00f0ff);
    --shadow-glow: 0 0 30px rgba(0, 240, 255, 0.5);
    --shadow-glow-pink: 0 0 30px rgba(255, 0, 255, 0.5);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
    --font-main: 'Rajdhani', sans-serif;
    --font-display: 'Orbitron', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary), var(--primary));
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ========================================
   Animated Background
======================================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a1628 100%);
}

.bg-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(240, 255, 0, 0.05) 0%, transparent 50%);
    animation: gradientMove 15s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(5deg); }
}

/* ========================================
   Preloader / Boot Screen - ENHANCED
======================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.15) 0%, transparent 40%);
    animation: preloaderBg 4s ease-in-out infinite;
}

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

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.boot-screen {
    padding: 40px;
}

.boot-logo-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(0, 240, 255, 0.8)) drop-shadow(0 0 80px rgba(255, 0, 255, 0.5));
    animation: logoFloat 3s ease-in-out infinite, logoPulse 2s ease-in-out infinite;
    margin-bottom: 20px;
}

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

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 40px rgba(0, 240, 255, 0.8)) drop-shadow(0 0 80px rgba(255, 0, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 60px rgba(0, 240, 255, 1)) drop-shadow(0 0 100px rgba(255, 0, 255, 0.8)); }
}

.boot-logo {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: textGlow 2s ease-in-out infinite;
    margin-bottom: 30px;
    position: relative;
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 0, 255, 0.8)); }
}

.boot-text {
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 30px;
    min-height: 30px;
    text-shadow: 0 0 10px var(--primary);
}

.cursor {
    animation: blink 0.7s infinite;
    color: var(--secondary);
}

.progress-container {
    margin-bottom: 30px;
}

.progress-bar {
    width: 400px;
    max-width: 90vw;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 15px;
    position: relative;
    border: 1px solid var(--border-color);
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

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

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-neon);
    background-size: 300% 100%;
    animation: gradientShift 2s linear infinite;
    transition: width 0.1s linear;
    box-shadow: 0 0 20px var(--primary);
}

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

.progress-text {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-secondary);
}

.boot-status {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.status-item {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.status-item.active {
    opacity: 1;
    transform: translateX(0);
    color: var(--success);
    text-shadow: 0 0 10px var(--success);
}

.status-item .status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px currentColor;
}

/* ========================================
   Navigation - ENHANCED
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-neon);
    background-size: 300% 100%;
    animation: gradientShift 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled::before {
    opacity: 1;
}

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

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.7));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoHover 3s ease-in-out infinite;
}

@keyframes logoHover {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(2deg); }
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 25px rgba(0, 240, 255, 1)) drop-shadow(0 0 50px rgba(255, 0, 255, 0.7));
    transform: scale(1.1) rotate(5deg);
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    filter: drop-shadow(0 0 10px var(--primary));
}

.logo-sub {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--primary);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scale(1);
}

/* Dropdown - Enhanced */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
    color: var(--primary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(18, 18, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 15px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 15px 15px 0 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    padding-left: 30px;
}

.dropdown-menu li a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu li a i {
    width: 20px;
    font-size: 16px;
}

/* Nav Actions - Enhanced */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-discord {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #5865F2, #7289da);
    color: white;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-discord:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.5);
}

.btn-connect {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 240, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(0, 240, 255, 0.8), 0 0 60px rgba(255, 0, 255, 0.4); }
}

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

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

.btn-connect:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.7), 0 0 60px rgba(255, 0, 255, 0.5);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Hero Section - SPECTACULAR
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 30%, #0a1628 70%, #0f0f1a 100%);
}

/* Cyber Grid */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: center top;
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(80px); }
}

/* Floating Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 240, 255, 0.3);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 0, 255, 0.3);
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(240, 255, 0, 0.2);
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(-50px, -20px) scale(1.05); }
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Light Streaks */
.light-streak {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    animation: streak 3s linear infinite;
    opacity: 0;
}

@keyframes streak {
    0% { transform: translateY(-100px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.system-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    font-family: var(--font-mono);
    font-size: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.2);
}

.info-item .label {
    color: var(--text-muted);
}

.info-item .value {
    color: var(--text-primary);
    font-weight: 600;
}

.info-item .value.online {
    color: var(--success);
    text-shadow: 0 0 10px var(--success);
    animation: pulse 2s infinite;
}

/* Epic Glitch Title */
.glitch-container {
    position: relative;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(50px, 12vw, 120px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 15px;
    margin-bottom: 0;
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #a0a0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch {
    animation: glitch 5s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #fff 0%, #a0a0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch::before {
    text-shadow: -3px 0 var(--primary);
    animation: glitch-1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
    text-shadow: 3px 0 var(--secondary);
    animation: glitch-2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); filter: blur(0); }
    91% { transform: translate(-3px, 1px); filter: blur(1px); }
    92% { transform: translate(3px, -1px); }
    93% { transform: translate(-2px, 2px); filter: blur(0.5px); }
    94% { transform: translate(2px, -2px); }
    95% { transform: translate(-1px, 1px); filter: blur(0); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); opacity: 0.8; }
    20% { transform: translate(-4px, 4px); }
    40% { transform: translate(-4px, -4px); }
    60% { transform: translate(4px, 4px); }
    80% { transform: translate(4px, -4px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); opacity: 0.8; }
    20% { transform: translate(4px, -4px); }
    40% { transform: translate(4px, 4px); }
    60% { transform: translate(-4px, -4px); }
    80% { transform: translate(-4px, 4px); }
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 50px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 30px;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: subtitleGlow 3s ease-in-out infinite;
    position: relative;
}

@keyframes subtitleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 0, 255, 0.8)); }
}

.hero-description {
    max-width: 650px;
    margin: 0 auto 50px;
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.9;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
}

/* Epic Buttons */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    box-shadow: 0 5px 30px rgba(0, 240, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.6), 0 0 80px rgba(255, 0, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.5);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-large {
    padding: 22px 55px;
    font-size: 16px;
}

/* Scroll Indicator - Enhanced */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: bounce 2s infinite;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.2s, bounce 2s infinite 1.2s;
}

.scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3), inset 0 0 10px rgba(0, 240, 255, 0.1);
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--gradient-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 28px; }
}

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

/* ========================================
   Stats Section - ENHANCED
======================================== */
.stats-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-neon);
    background-size: 300% 100%;
    animation: gradientShift 3s linear infinite;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-neon);
    background-size: 300% 100%;
    animation: gradientShift 3s linear infinite reverse;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3), 0 0 40px rgba(0, 240, 255, 0.1);
}

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

.stat-card:hover::after {
    opacity: 1;
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.5));
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.8));
}

.stat-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(180deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ========================================
   Section Styles - ENHANCED
======================================== */
section {
    padding: 120px 0;
    position: relative;
}

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

.section-tag {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    animation: tagPulse 3s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 240, 255, 0.3); }
    50% { box-shadow: 0 0 25px rgba(0, 240, 255, 0.6); }
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% { opacity: 1; transform: scaleX(1); }
    50% { opacity: 0.7; transform: scaleX(0.95); }
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   About Section - ENHANCED
======================================== */
.about-section {
    background: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.terminal-window {
    background: rgba(5, 5, 10, 0.9);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 240, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.terminal-window:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 240, 255, 0.2);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 25px;
    background: rgba(18, 18, 26, 0.8);
    border-bottom: 1px solid var(--border-color);
}

.terminal-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.terminal-btn:hover {
    transform: scale(1.2);
}

.terminal-btn.red { background: #ff5f57; box-shadow: 0 0 10px #ff5f57; }
.terminal-btn.yellow { background: #ffbd2e; box-shadow: 0 0 10px #ffbd2e; }
.terminal-btn.green { background: #28ca41; box-shadow: 0 0 10px #28ca41; }

.terminal-title {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

.terminal-body {
    padding: 30px;
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 2;
}

.terminal-body p {
    margin-bottom: 20px;
}

.prompt {
    color: var(--success);
    text-shadow: 0 0 10px var(--success);
}

.command {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.output {
    color: var(--text-secondary);
    padding-left: 20px;
}

.feature-item {
    display: block;
    margin-bottom: 8px;
    color: var(--tertiary);
    text-shadow: 0 0 10px rgba(240, 255, 0, 0.5);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    color: var(--primary);
}

.cursor-blink {
    animation: blink 0.7s infinite;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

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

/* About Image */
.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 25px;
}

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    transition: all 0.5s ease;
}

.frame-corner.tl {
    top: 0;
    left: 0;
    border-top: 3px solid var(--primary);
    border-left: 3px solid var(--primary);
    box-shadow: -5px -5px 20px rgba(0, 240, 255, 0.3);
}
.frame-corner.tr {
    top: 0;
    right: 0;
    border-top: 3px solid var(--secondary);
    border-right: 3px solid var(--secondary);
    box-shadow: 5px -5px 20px rgba(255, 0, 255, 0.3);
}
.frame-corner.bl {
    bottom: 0;
    left: 0;
    border-bottom: 3px solid var(--secondary);
    border-left: 3px solid var(--secondary);
    box-shadow: -5px 5px 20px rgba(255, 0, 255, 0.3);
}
.frame-corner.br {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    box-shadow: 5px 5px 20px rgba(0, 240, 255, 0.3);
}

.image-frame:hover .frame-corner {
    width: 60px;
    height: 60px;
}

.placeholder-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(18, 18, 26, 0.8) 0%, rgba(26, 10, 46, 0.8) 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(0, 240, 255, 0.1) 50%, transparent 60%);
    animation: shine 3s infinite;
}

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

.placeholder-image i {
    font-size: 100px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.5));
    animation: iconFloat 3s ease-in-out infinite;
}

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

.placeholder-image span {
    font-family: var(--font-display);
    font-size: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
}

/* ========================================
   Roles Section - EPIC CARDS
======================================== */
.roles-section {
    background: transparent;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.role-card {
    position: relative;
    padding: 50px 35px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.role-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 240, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.role-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 240, 255, 0.2);
}

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

.role-card:hover::after {
    opacity: 1;
}

.role-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    filter: blur(40px);
}

.role-card:hover .role-glow {
    opacity: 0.15;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.role-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.role-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.role-card:hover .role-icon {
    transform: scale(1.15) rotate(10deg);
    border-color: transparent;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.5);
}

.role-card:hover .role-icon::before {
    opacity: 1;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.role-icon i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.role-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.role-card:hover .role-title {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.role-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.role-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.role-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.role-btn:hover {
    color: var(--bg-dark);
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.4);
}

.role-btn:hover::before {
    left: 0;
}

.role-btn i {
    transition: transform 0.3s ease;
}

.role-btn:hover i {
    transform: translateX(5px);
}

/* Role Card Color Variations */
.role-card[data-role="civilian"] .role-icon i { background: linear-gradient(135deg, #00f0ff, #00d4ff); -webkit-background-clip: text; }
.role-card[data-role="police"] .role-icon i { background: linear-gradient(135deg, #4a90d9, #6ba3e0); -webkit-background-clip: text; }
.role-card[data-role="medical"] .role-icon i { background: linear-gradient(135deg, #e74c3c, #f06b5f); -webkit-background-clip: text; }
.role-card[data-role="mechanic"] .role-icon i { background: linear-gradient(135deg, #f39c12, #f5b041); -webkit-background-clip: text; }
.role-card[data-role="gang"] .role-icon i { background: linear-gradient(135deg, #9b59b6, #af7ac5); -webkit-background-clip: text; }
.role-card[data-role="business"] .role-icon i { background: linear-gradient(135deg, #2ecc71, #58d68d); -webkit-background-clip: text; }

.role-card[data-role="police"]:hover { border-color: #4a90d9; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 50px rgba(74, 144, 217, 0.3); }
.role-card[data-role="police"]::before { background: linear-gradient(90deg, #4a90d9, #6ba3e0); }
.role-card[data-role="police"] .role-btn { border-color: #4a90d9; color: #4a90d9; }
.role-card[data-role="police"] .role-btn::before { background: linear-gradient(90deg, #4a90d9, #6ba3e0); }

.role-card[data-role="medical"]:hover { border-color: #e74c3c; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 50px rgba(231, 76, 60, 0.3); }
.role-card[data-role="medical"]::before { background: linear-gradient(90deg, #e74c3c, #f06b5f); }
.role-card[data-role="medical"] .role-btn { border-color: #e74c3c; color: #e74c3c; }
.role-card[data-role="medical"] .role-btn::before { background: linear-gradient(90deg, #e74c3c, #f06b5f); }

.role-card[data-role="mechanic"]:hover { border-color: #f39c12; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 50px rgba(243, 156, 18, 0.3); }
.role-card[data-role="mechanic"]::before { background: linear-gradient(90deg, #f39c12, #f5b041); }
.role-card[data-role="mechanic"] .role-btn { border-color: #f39c12; color: #f39c12; }
.role-card[data-role="mechanic"] .role-btn::before { background: linear-gradient(90deg, #f39c12, #f5b041); }

.role-card[data-role="gang"]:hover { border-color: #9b59b6; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 50px rgba(155, 89, 182, 0.3); }
.role-card[data-role="gang"]::before { background: linear-gradient(90deg, #9b59b6, #af7ac5); }
.role-card[data-role="gang"] .role-btn { border-color: #9b59b6; color: #9b59b6; }
.role-card[data-role="gang"] .role-btn::before { background: linear-gradient(90deg, #9b59b6, #af7ac5); }

.role-card[data-role="business"]:hover { border-color: #2ecc71; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 50px rgba(46, 204, 113, 0.3); }
.role-card[data-role="business"]::before { background: linear-gradient(90deg, #2ecc71, #58d68d); }
.role-card[data-role="business"] .role-btn { border-color: #2ecc71; color: #2ecc71; }
.role-card[data-role="business"] .role-btn::before { background: linear-gradient(90deg, #2ecc71, #58d68d); }

/* ========================================
   Features Section - ENHANCED
======================================== */
.features-section {
    background: transparent;
}

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

.feature-card {
    padding: 50px 35px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg, transparent, var(--primary), transparent 30%);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--bg-card);
    border-radius: 23px;
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(255, 0, 255, 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: all 0.5s ease;
}

.feature-icon i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.3);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   Rules Section - ENHANCED
======================================== */
.rules-section {
    background: transparent;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.rule-card {
    position: relative;
    padding: 50px 35px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-fire);
    transform: scaleY(0);
    transition: transform 0.5s ease;
    transform-origin: bottom;
}

.rule-card:hover {
    transform: translateY(-15px) translateX(5px);
    border-color: var(--warning);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 170, 0, 0.15);
}

.rule-card:hover::before {
    transform: scaleY(1);
}

.rule-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 70px;
    font-weight: 900;
    background: linear-gradient(180deg, rgba(255, 170, 0, 0.2) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.5s ease;
}

.rule-card:hover .rule-number {
    background: linear-gradient(180deg, rgba(255, 170, 0, 0.5) 0%, transparent 100%);
    -webkit-background-clip: text;
    transform: scale(1.1);
}

.rule-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 15px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rule-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   Status Section - ENHANCED
======================================== */
.status-section {
    background: transparent;
}

.status-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
}

.status-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.status-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.server-name {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
}

.server-name i {
    font-size: 28px;
    color: #5865F2;
    filter: drop-shadow(0 0 10px #5865F2);
}

.status-dot-large {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: relative;
}

.status-dot-large::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: inherit;
    animation: ripple 2s ease-out infinite;
    opacity: 0;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

.status-dot-large.online {
    background: var(--success);
    box-shadow: 0 0 20px var(--success);
}

.status-badge {
    padding: 10px 20px;
    border-radius: 30px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.online {
    background: rgba(0, 255, 136, 0.15);
    color: var(--success);
    border: 1px solid var(--success);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 136, 0.4); }
}

.status-details {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(5, 5, 10, 0.5);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(0, 240, 255, 0.05);
    border-color: var(--primary);
    transform: translateX(5px);
}

.detail-label {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
}

.detail-value {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
}

.connect-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.5);
}

/* Discord Status */
.discord-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.discord-stat {
    flex: 1;
    padding: 25px;
    background: rgba(5, 5, 10, 0.5);
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.discord-stat:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: #5865F2;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-text {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #5865F2, #7289da);
    color: white;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.5);
}

/* ========================================
   CTA Section - EPIC
======================================== */
.cta-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 240, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 0, 255, 0.15) 0%, transparent 50%);
    animation: ctaBg 10s ease-in-out infinite;
}

@keyframes ctaBg {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-neon);
    background-size: 300% 100%;
    animation: gradientShift 3s linear infinite;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* ========================================
   Footer - ENHANCED
======================================== */
.footer {
    background: rgba(5, 5, 10, 0.9);
    padding: 100px 0 40px;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-neon);
    background-size: 300% 100%;
    animation: gradientShift 3s linear infinite;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.6));
    animation: logoFloat 3s ease-in-out infinite;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-text,
.footer-logo-text .logo-text {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.footer-logo .logo-sub,
.footer-logo-text .logo-sub {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.footer-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--bg-dark);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.4);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    font-size: 15px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '►';
    margin-right: 10px;
    font-size: 8px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.7;
}

/* ========================================
   Scroll Reveal Animations
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .rules-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        letter-spacing: 5px;
    }

    .hero-subtitle {
        letter-spacing: 10px;
    }

    .system-info {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .boot-logo-img {
        width: 120px;
        height: 120px;
    }

    .boot-logo {
        font-size: 40px;
    }

    .progress-bar {
        width: 280px;
    }

    .hero-subtitle {
        letter-spacing: 5px;
    }

    .btn {
        padding: 15px 30px;
        font-size: 12px;
    }

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

    .section-header {
        margin-bottom: 50px;
    }
}

/* ========================================
   Mobile Navigation
======================================== */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 30px 30px;
    gap: 20px;
    z-index: 99;
    animation: menuSlide 0.5s ease;
}

@keyframes menuSlide {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-menu.active .nav-link {
    font-size: 24px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-menu.active .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    padding: 15px 0 0 20px;
    box-shadow: none;
    display: none;
    min-width: 100%;
}

.nav-menu.active .dropdown.active .dropdown-menu {
    display: block;
}

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

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

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