/* ============================================================
   DCE GAMING — ULTRA PREMIUM STYLESHEET
   ============================================================ */

/* BACKGROUND SLIDESHOW */
#bg-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -999;
    pointer-events: none;
    background-color: #000;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
}

.bg-slide.active {
    opacity: 0.12;
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loading-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #000;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-lambda {
    font-size: 5rem;
    color: #ffaa00;
    text-shadow: 0 0 30px #ffaa00, 0 0 60px rgba(255,170,0,0.5);
    animation: loadingPulse 1s ease-in-out infinite;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.loading-bar-container {
    width: 200px;
    height: 2px;
    background: rgba(255,170,0,0.15);
    position: relative;
    overflow: hidden;
}

.loading-bar {
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffaa00, transparent);
    animation: loadingSlide 1.2s ease-in-out infinite;
}

.loading-text {
    font-family: 'Rajdhani', sans-serif;
    color: #555;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

@keyframes loadingPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; text-shadow: 0 0 50px #ffaa00, 0 0 100px rgba(255,170,0,0.6); }
}

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

/* ============================================================
   RESET & TOKENS
   ============================================================ */
:root {
    --primary:       #ffaa00;
    --primary-dim:   rgba(255, 170, 0, 0.15);
    --primary-glow:  rgba(255, 170, 0, 0.55);
    --secondary:     #00ffaa;
    --secondary-dim: rgba(0, 255, 170, 0.12);
    --secondary-glow:rgba(0, 255, 170, 0.55);
    --accent:        #ff6b00;

    --bg-dark:   #080808;
    --bg-darker: #030303;
    --bg-card:   #101010;
    --bg-glass:  rgba(255,255,255,0.03);

    --text-main:  #f0f0f0;
    --text-muted: #888;
    --text-dim:   #555;

    --font-heading: 'Orbitron', 'Rajdhani', sans-serif;
    --font-sub:     'Rajdhani', sans-serif;
    --font-body:    'Roboto', sans-serif;

    --border-subtle: rgba(255,170,0,0.18);
    --border-glow-sm: 0 0 8px var(--primary-glow);
    --border-glow:    0 0 20px var(--primary-glow);
    --text-glow:      0 0 12px var(--primary-glow);

    --transition:       all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-slow:  all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius:  6px;
    --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(255,170,0,0.04) 0%, transparent 65%),
        linear-gradient(180deg, #080808 0%, #030303 100%);
}



/* ============================================================
   SCANLINES & VIGNETTE
   ============================================================ */
body::before {
    content: "";
    display: block;
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(18,16,16,0) 50%, rgba(0,0,0,0.08) 50%),
        linear-gradient(90deg, rgba(255,0,0,0.02), rgba(0,255,0,0.008), rgba(0,0,255,0.02));
    z-index: 9998;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

body::after {
    content: "";
    display: block;
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.7) 100%);
    z-index: 9997;
    pointer-events: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.highlight {
    color: var(--primary);
    text-shadow: var(--text-glow);
}

.highlight-green {
    color: var(--secondary);
    text-shadow: 0 0 12px var(--secondary-glow);
}

.dce-highlight {
    color: #ff2222;
    border: 2px solid var(--primary);
    padding: 2px 12px;
    border-radius: var(--radius);
    box-shadow: 0 0 14px var(--primary-glow);
    display: inline-block;
    transition: var(--transition);
    text-shadow: 0 0 12px #ff2222;
}

.dce-highlight:hover {
    transform: scale(1.08) rotate(-1.5deg);
    background: rgba(255,170,0,0.08);
    box-shadow: 0 0 30px var(--primary), inset 0 0 12px var(--primary);
    letter-spacing: 2px;
}

.section-padding { padding: 110px 0; }

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    line-height: 1.1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    box-shadow: var(--border-glow-sm);
    transition: width 0.6s ease;
}

.section-title:hover::after { width: 100%; }

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

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================================
   HEADER & NAV
   ============================================================ */
header {
    background: rgba(4, 4, 4, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,170,0,0.1);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(2, 2, 2, 0.98);
    border-bottom-color: rgba(255,170,0,0.2);
    box-shadow: 0 4px 40px rgba(0,0,0,0.8), 0 1px 0 rgba(255,170,0,0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 0 20px var(--primary-glow);
    animation: logoPulse 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 15px var(--primary-glow); }
    50% { box-shadow: 0 0 35px var(--primary-glow), 0 0 60px rgba(255,170,0,0.3); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-family: var(--font-sub);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.88rem;
    transition: var(--transition);
    position: relative;
    padding: 7px 14px;
    letter-spacing: 1.5px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    overflow: hidden;
}

.nav-links a::before,
.nav-links a::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    transition: var(--transition);
    opacity: 0;
}

.nav-links a::before {
    top: 0; left: 0;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
}

.nav-links a::after {
    bottom: 0; right: 0;
    border-bottom: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(255,170,0,0.06);
    text-shadow: 0 0 8px var(--primary-glow);
}

.nav-links a:hover::before,
.nav-links a:hover::after,
.nav-links a.active::before,
.nav-links a.active::after {
    opacity: 1;
    width: 100%;
    height: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--primary);
    padding: 6px;
}

/* ============================================================
   HERO SECTION (INDEX)
   ============================================================ */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(8,8,8,0.75), rgba(8,8,8,0.85)), url('inicio.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

#particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 950px;
}

.hero-eyebrow {
    font-family: var(--font-sub);
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 28px;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 0.9s ease forwards 0.4s;
}

/* GLITCH EFFECT */
.glitch {
    position: relative;
    display: inline-block;
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
}

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

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #00ffaa;
    animation: glitch1 3.5s infinite;
    color: var(--primary);
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 #ff2222;
    animation: glitch2 3.5s infinite;
    color: var(--primary);
}

@keyframes glitch1 {
    0%, 85%, 100% { clip-path: polygon(0 0, 0 0, 0 0, 0 0); transform: none; }
    86% { clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%); transform: translateX(-3px); }
    88% { clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%); transform: translateX(3px); }
    90% { clip-path: polygon(0 10%, 100% 10%, 100% 30%, 0 30%); transform: translateX(-2px); }
    92% { clip-path: polygon(0 0, 0 0, 0 0, 0 0); transform: none; }
}

@keyframes glitch2 {
    0%, 88%, 100% { clip-path: polygon(0 0, 0 0, 0 0, 0 0); transform: none; }
    89% { clip-path: polygon(0 50%, 100% 50%, 100% 70%, 0 70%); transform: translateX(3px); }
    91% { clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%); transform: translateX(-3px); }
    93% { clip-path: polygon(0 0, 0 0, 0 0, 0 0); transform: none; }
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    color: var(--text-muted);
    letter-spacing: 5px;
    margin-bottom: 50px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.9s ease forwards 0.65s;
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.9s ease forwards 0.9s;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.scroll-indicator span {
    font-family: var(--font-sub);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    animation: scrollBounce 1.5s ease-in-out infinite;
    box-shadow: 2px 2px 8px var(--primary-glow);
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
    50% { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
}

/* ============================================================
   STATS SECTION (Index)
   ============================================================ */
.stats-section {
    padding: 70px 0;
    background: linear-gradient(90deg, rgba(255,170,0,0.03), rgba(0,255,170,0.03), rgba(255,170,0,0.03));
    border-top: 1px solid rgba(255,170,0,0.08);
    border-bottom: 1px solid rgba(255,170,0,0.08);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,170,0,0.02) 50%, transparent 100%);
    animation: shimmerBg 4s ease-in-out infinite;
}

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

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

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 25px var(--primary-glow);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-family: var(--font-sub);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ============================================================
   FEATURES SECTION (Index)
   ============================================================ */
.features-section { padding: 100px 0; }

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

.feature-card {
    background: var(--bg-glass);
    border: 1px solid rgba(255,170,0,0.12);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

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

.feature-card:hover::before { left: 100%; }

.feature-card:hover {
    border-color: rgba(255,170,0,0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(255,170,0,0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--primary-dim);
    border: 1px solid rgba(255,170,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(255,170,0,0.15);
    box-shadow: 0 0 25px var(--primary-glow);
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: var(--font-sub);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #fff;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 38px;
    font-family: var(--font-sub);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--primary);
    background: rgba(255,170,0,0.08);
    color: var(--primary);
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

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

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

.btn:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 35px var(--primary-glow), 0 0 70px rgba(255,170,0,0.2);
    transform: translateY(-2px);
}

.btn-green {
    border-color: var(--secondary);
    color: var(--secondary);
    background: var(--secondary-dim);
}

.btn-green:hover {
    background: var(--secondary);
    color: #000;
    box-shadow: 0 0 35px var(--secondary-glow);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255,170,0,0.3);
    color: var(--text-muted);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255,170,0,0.05);
}

/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */
.page-hero {
    padding: 160px 0 70px;
    background: linear-gradient(180deg, rgba(255,170,0,0.04) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255,170,0,0.08);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: attr(data-title);
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255,170,0,0.03);
    letter-spacing: 10px;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 70px;
    align-items: start;
    margin-top: 60px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: #ccc;
    line-height: 1.8;
}

.about-text p strong { color: var(--primary); }

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.value-item {
    background: var(--bg-glass);
    border: 1px solid rgba(255,170,0,0.1);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}

.value-item:hover {
    border-color: rgba(255,170,0,0.35);
    background: rgba(255,170,0,0.04);
    transform: translateY(-3px);
}

.value-item i {
    color: var(--secondary);
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: block;
}

.value-item h4 {
    font-family: var(--font-sub);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 6px;
}

.value-item p {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* Founder Box */
.founder-box {
    background: linear-gradient(145deg, rgba(255,170,0,0.04) 0%, rgba(0,0,0,0.6) 100%);
    border: 1px solid rgba(255,170,0,0.25);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 40px rgba(255,170,0,0.08), inset 0 0 40px rgba(0,0,0,0.4);
    transition: var(--transition);
}

.founder-box:hover {
    border-color: rgba(255,170,0,0.5);
    box-shadow: 0 0 60px rgba(255,170,0,0.15), inset 0 0 40px rgba(0,0,0,0.4);
}

.founder-box::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 35px; height: 35px;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.founder-box::after {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    width: 35px; height: 35px;
    border-bottom: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.founder-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-dim), rgba(0,255,170,0.1));
    border: 2px solid rgba(255,170,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    box-shadow: 0 0 20px var(--primary-glow);
}

.founder-role {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 4px;
    line-height: 1.1;
}

.founder-real-name {
    font-size: 0.78rem;
    color: var(--text-dim);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.founder-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    margin-bottom: 18px;
}

.founder-quote {
    font-style: italic;
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.founder-icons {
    display: flex;
    gap: 14px;
    align-items: center;
}

.founder-icons i {
    font-size: 1.6rem;
}

.founder-icons .fa-crown { color: var(--secondary); }
.founder-icons .fa-lambda {
    color: var(--primary);
    font-size: 2rem;
    text-shadow: 0 0 12px var(--primary-glow);
}

/* ============================================================
   SERVERS PAGE
   ============================================================ */
.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.server-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.server-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,170,0,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.server-card:hover {
    border-color: rgba(255,170,0,0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(255,170,0,0.12);
}

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

.server-card.offline {
    opacity: 0.6;
}

.server-img {
    height: 180px;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #2a2a2a;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.server-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.server-card:hover .server-img img {
    transform: scale(1.06);
}

.server-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: var(--font-sub);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.server-status-badge.online {
    background: rgba(0,255,100,0.15);
    border: 1px solid rgba(0,255,100,0.4);
    color: #00ff64;
    box-shadow: 0 0 12px rgba(0,255,100,0.25);
}

.server-status-badge.offline {
    background: rgba(255,50,50,0.12);
    border: 1px solid rgba(255,50,50,0.3);
    color: #ff5050;
}

.server-status-badge.soon {
    background: rgba(255,170,0,0.12);
    border: 1px solid rgba(255,170,0,0.3);
    color: var(--primary);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.online .status-dot {
    animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px currentColor; }
    50% { opacity: 0.4; box-shadow: none; }
}

.server-info {
    padding: 24px 28px 28px;
    position: relative;
    z-index: 2;
}

.server-info h3 {
    font-family: var(--font-sub);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
}

.server-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.tag {
    font-size: 0.72rem;
    padding: 3px 10px;
    border: 1px solid rgba(255,170,0,0.2);
    border-radius: 3px;
    color: rgba(255,170,0,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255,170,0,0.04);
}

.server-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.server-ip-box {
    background: rgba(0,220,255,0.05);
    border: 1px solid rgba(0,220,255,0.15);
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.server-ip-label {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 3px;
}

.server-ip-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #00d9ff;
    font-weight: bold;
}

.copy-ip-btn {
    background: none;
    border: 1px solid rgba(0,220,255,0.25);
    color: #00d9ff;
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-family: var(--font-sub);
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.copy-ip-btn:hover {
    background: rgba(0,220,255,0.12);
    border-color: #00d9ff;
    box-shadow: 0 0 12px rgba(0,220,255,0.25);
}

.copy-ip-btn.copied {
    color: var(--secondary);
    border-color: var(--secondary);
    background: var(--secondary-dim);
}

.server-actions { display: flex; flex-direction: column; gap: 8px; }

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.project-timeline {
    border-left: 1px solid rgba(255,170,0,0.15);
    margin-left: 16px;
    padding-left: 44px;
    position: relative;
}

.project-timeline::before {
    content: '';
    position: absolute;
    top: 0; left: -1px;
    width: 1px; height: 100%;
    background: linear-gradient(180deg, var(--primary), rgba(255,170,0,0.05));
}

.project-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 32px;
    position: relative;
    overflow: visible;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.project-card::before {
    content: '';
    position: absolute;
    left: -52px;
    top: 32px;
    width: 14px;
    height: 14px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 14px var(--primary-glow);
    transition: var(--transition);
}

.project-card:hover {
    border-color: rgba(255,170,0,0.25);
    box-shadow: 0 15px 50px rgba(0,0,0,0.5), 0 0 20px rgba(255,170,0,0.06);
    transform: translateX(6px);
}

.project-card:hover::before {
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.project-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    font-family: var(--font-sub);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 0 0 var(--radius) var(--radius);
    border: 1px solid transparent;
    border-top: none;
}

.badge-new {
    background: rgba(0,255,170,0.12);
    color: var(--secondary);
    border-color: rgba(0,255,170,0.3);
}

.badge-active {
    background: rgba(255,170,0,0.12);
    color: var(--primary);
    border-color: rgba(255,170,0,0.3);
}

.badge-planned {
    background: rgba(100,100,100,0.15);
    color: #666;
    border-color: rgba(255,255,255,0.08);
}

.badge-live {
    background: rgba(0,210,255,0.12);
    color: #00d2ff;
    border-color: rgba(0,210,255,0.3);
}

.project-card h3 {
    font-family: var(--font-sub);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #fff;
}

.project-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.97rem;
    margin-bottom: 16px;
}

.project-progress {
    margin: 18px 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-sub);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.progress-bar {
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
    width: 0;
}

.progress-fill.green {
    background: linear-gradient(90deg, var(--secondary), rgba(0,255,170,0.5));
    box-shadow: 0 0 8px var(--secondary-glow);
}

.progress-fill.orange {
    background: linear-gradient(90deg, var(--primary), rgba(255,170,0,0.5));
    box-shadow: 0 0 8px var(--primary-glow);
}

.progress-fill.gray {
    background: linear-gradient(90deg, #444, #222);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

/* Launcher section */
.launcher-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-family: var(--font-sub);
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,255,170,0.2);
    margin-top: 16px;
}

.launcher-trigger:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--secondary-glow);
    border-bottom-color: var(--secondary);
    transform: translateX(5px);
}

.launcher-detail-section {
    animation: fadeInUp 0.5s ease-out;
    border: 1px solid rgba(0,255,170,0.15);
    padding: 48px;
    background: rgba(0,20,15,0.5);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    margin-top: 50px;
}

.launcher-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-left: 3px solid var(--secondary);
    border-radius: var(--radius);
    padding: 22px 24px;
    transition: var(--transition);
}

.launcher-item:hover {
    background: rgba(255,255,255,0.07);
    transform: scale(1.01);
}

.download-btn {
    min-width: 180px;
    font-size: 0.9rem !important;
}

/* ============================================================
   COMMUNITY PAGE
   ============================================================ */
.community-split {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    min-height: 55vh;
}

.community-box {
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.community-box::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.community-box:hover::before { transform: scaleX(1); }

.community-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.community-box i {
    font-size: 4rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.community-box:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px currentColor);
}

.community-box h3 {
    font-family: var(--font-sub);
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

.community-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }

.box-steam { border-color: rgba(102,192,244,0.15); color: #66c0f4; }
.box-steam:hover { border-color: rgba(102,192,244,0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(102,192,244,0.1); }

.box-whatsapp { border-color: rgba(37,211,102,0.15); color: #25D366; }
.box-whatsapp:hover { border-color: rgba(37,211,102,0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(37,211,102,0.1); }

.box-discord { border-color: rgba(88,101,242,0.15); color: #5865F2; }
.box-discord:hover { border-color: rgba(88,101,242,0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(88,101,242,0.1); }

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 50px;
}

.social-box {
    padding: 28px 16px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.06);
    background: var(--bg-card);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-box:hover::after { opacity: 1; }

.social-box i {
    font-size: 2.2rem;
    transition: var(--transition);
}

.social-box h4 {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
    color: #bbb;
}

.social-box:hover {
    transform: translateY(-6px);
}

.box-twitch:hover { border-color: #9146FF; box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(145,70,255,0.25); }
.box-twitch i { color: #9146FF; }
.box-twitch:hover i { filter: drop-shadow(0 0 10px #9146FF); }

.box-kick:hover { border-color: #53FC18; box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(83,252,24,0.25); }
.box-kick i { color: #53FC18; }
.box-kick:hover i { filter: drop-shadow(0 0 10px #53FC18); }

.box-tiktok:hover { border-color: #ff0050; box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(255,0,80,0.25); }
.box-tiktok i { color: #ff0050; }
.box-tiktok:hover i { filter: drop-shadow(0 0 10px #ff0050); }

.box-youtube:hover { border-color: #FF0000; box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(255,0,0,0.25); }
.box-youtube i { color: #FF0000; }
.box-youtube:hover i { filter: drop-shadow(0 0 10px #FF0000); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #000;
    border-top: 1px solid rgba(255,170,0,0.1);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-sub);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-col ul li a::before {
    content: '›';
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.2s;
}

.footer-col ul li a:hover::before { opacity: 1; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.82rem;
}

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

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse {
    0%, 100% { opacity: 0.8; text-shadow: 0 0 10px var(--primary-glow); }
    50% { opacity: 1; text-shadow: 0 0 25px var(--primary-glow), 0 0 50px var(--primary-glow); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .social-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {

    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(3, 3, 3, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        z-index: 2000;
        padding-top: 64px;
    }

    .nav-links.active {
        display: flex;
        animation: menuFadeIn 0.35s ease forwards;
    }

    .hamburger {
        display: block;
        z-index: 2001;
        position: relative;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
    }

    .nav-links.active li { animation: menuItemIn 0.5s ease forwards; }
    .nav-links.active li:nth-child(1) { animation-delay: 0.05s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.12s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.19s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.26s; }
    .nav-links.active li:nth-child(5) { animation-delay: 0.33s; }

    .nav-links a {
        font-size: 1.6rem;
        padding: 10px 30px;
        width: auto;
    }

    @keyframes menuFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

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

    .hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
    .hero-subtitle { font-size: 0.85rem; letter-spacing: 3px; }
    .btn-group { flex-direction: column; align-items: center; width: 100%; max-width: 280px; margin: 0 auto; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .stat-item { border-right: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
    .stat-item:nth-child(2n) { border-right: none; }

    .features-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-values { grid-template-columns: 1fr; }
    .community-split { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }

    .section-title { font-size: 1.8rem; letter-spacing: 2px; }

    .project-timeline { margin-left: 8px; padding-left: 28px; }
    .project-card::before { left: -36px; }

    .launcher-detail-section { padding: 24px 18px; }
    .launcher-item { flex-direction: column; }

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

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .page-hero::before { display: none; }
}

@media (max-width: 480px) {
    .social-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-number { font-size: 2.2rem; }
    .community-box { padding: 36px 20px; }
}