/* ============================================================
   El Séquito del Terror - Website V5.0
   Full overhaul: Fixed bugs, improved lore section, 
   new navbar, better animations, neon-pink lore theme.
   ============================================================ */

:root {
    --bg-base: #020005;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    /* Core Palette */
    --neon-green: #39ff14;
    --neon-pink: #f72585;    /* Hot pink (not garish magenta) */
    --fel-green: #4ade80;
    --fel-dark: #14532d;
    --void-purple: #9333ea;
    --void-dark: #3b0764;
    
    /* Blood Theme */
    --blood-red: #ef4444;
    --blood-dark: #7f1d1d;
    --grad-blood: linear-gradient(135deg, var(--blood-dark), var(--blood-red));
    
    /* Gradients */
    --grad-fel: linear-gradient(135deg, var(--fel-green), var(--neon-green));
    --grad-void: linear-gradient(135deg, var(--void-purple), var(--fel-green));
    --grad-pink: linear-gradient(135deg, #b5179e, var(--neon-pink));
    --grad-lore: linear-gradient(135deg, var(--neon-pink), var(--void-purple));
    
    /* Fonts */
    --font-cinzel: 'Cinzel', serif;
    --font-inter: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESETS & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* ============================================================
   CANVAS PARTICLES
   ============================================================ */
#particleCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* ============================================================
   Z-INDEX STACKING
   ============================================================ */
.navbar,
.hero,
.leader-section,
.lore-section,
.ecosystem-section,
.core-tech-section,
.tribute-section,
.main-footer {
    position: relative;
    z-index: 10;
}

/* ============================================================
   CONTAINER & TYPOGRAPHY
   ============================================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-cinzel);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.section-title span {
    background: var(--grad-fel);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: rgba(3, 4, 11, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(74, 222, 128, 0.08);
    transition: var(--transition-fast);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(3, 4, 11, 0.97);
    border-bottom-color: rgba(74, 222, 128, 0.25);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-cinzel);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--text-main);
    text-decoration: none;
}

.nav-logo {
    width: 38px;
    filter: drop-shadow(0 0 10px rgba(74,222,128,0.5));
}

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

.nav-link {
    font-family: var(--font-cinzel);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition-fast);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--grad-fel);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-main);
}

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

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition-fast);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(2, 0, 5, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-link {
    font-family: var(--font-cinzel);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.discord-mobile {
    color: var(--fel-green);
}

/* ============================================================
   CYBER BUTTON
   ============================================================ */
.cyber-button {
    position: relative;
    display: inline-flex;
    padding: 0.8rem 2rem;
    background: rgba(74, 222, 128, 0.05);
    color: var(--text-main);
    border: 1px solid var(--fel-green);
    font-family: var(--font-cinzel);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.1);
}

.cyber-button span {
    position: relative;
    z-index: 2;
}

.cyber-button-glitch {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--grad-fel);
    z-index: 1;
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.cyber-button:hover {
    color: var(--bg-base);
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.6);
}

.cyber-button:hover .cyber-button-glitch {
    transform: translateX(0);
}

/* Button Variants */
.discord-btn { border-color: #5865F2; }
.discord-btn .cyber-button-glitch { background: linear-gradient(135deg, #5865F2, #7289da); }
.discord-btn:hover { box-shadow: 0 0 30px rgba(88, 101, 242, 0.6); color: #fff; }

.void-btn { border-color: var(--void-purple); }
.void-btn .cyber-button-glitch { background: var(--grad-void); }
.void-btn:hover { box-shadow: 0 0 30px rgba(147, 51, 234, 0.5); color: #fff; }

.blood-btn { border-color: var(--blood-red); box-shadow: 0 0 20px rgba(220, 38, 38, 0.3); }
.blood-btn .cyber-button-glitch { background: var(--grad-blood); }
.blood-btn:hover { box-shadow: 0 0 40px rgba(220, 38, 38, 0.8); color: #fff; }

.lore-btn { border-color: var(--neon-pink); }
.lore-btn .cyber-button-glitch { background: var(--grad-lore); }
.lore-btn:hover { box-shadow: 0 0 30px rgba(247, 37, 133, 0.6); color: #fff; }

.arsenal-btn { border-color: var(--void-purple); }
.arsenal-btn .cyber-button-glitch { background: var(--grad-void); }
.arsenal-btn:hover { color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('assets/hero-bg.png') no-repeat center center/cover;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-base) 80%);
}

.hero-content {
    position: relative;
    max-width: 900px;
    padding: 0 2rem;
}

.main-logo {
    width: 200px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 35px rgba(74, 222, 128, 0.4));
}

.mega-title {
    font-family: var(--font-cinzel);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    background: var(--grad-fel);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px; height: 42px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px; height: 8px;
    background: var(--fel-green);
    border-radius: 2px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* Animations */
.float-anim { animation: float 6s ease-in-out infinite; }

@keyframes float {
    0%   { transform: translateY(0);    filter: drop-shadow(0 0 30px rgba(74, 222, 128, 0.4)); }
    50%  { transform: translateY(-20px); filter: drop-shadow(0 0 60px rgba(74, 222, 128, 0.8)); }
    100% { transform: translateY(0);    filter: drop-shadow(0 0 30px rgba(74, 222, 128, 0.4)); }
}

.heartbeat-slow { animation: heartbeatSlow 3s cubic-bezier(0.25, 0.8, 0.25, 1) infinite; }

@keyframes heartbeatSlow {
    0%   { transform: scale(1);    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.2)); }
    15%  { transform: scale(1.02); filter: drop-shadow(0 0 40px rgba(220, 38, 38, 0.6)); }
    30%  { transform: scale(1);    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.2)); }
    45%  { transform: scale(1.02); filter: drop-shadow(0 0 40px rgba(220, 38, 38, 0.6)); }
    100% { transform: scale(1);    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.2)); }
}

/* ============================================================
   LEADER SECTION
   ============================================================ */
.leader-section {
    padding: 8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.leader-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.leader-image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(74,222,128,0.15), rgba(147,51,234,0.15));
    backdrop-filter: blur(15px);
}

.image-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: var(--void-purple);
    filter: blur(100px);
    opacity: 0.35;
    z-index: -1;
}

.leader-portrait {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.9);
    display: block;
    object-fit: cover;
}

.leader-name {
    font-family: var(--font-cinzel);
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: 2px;
}

.leader-tagline {
    font-size: 1.1rem;
    color: var(--fel-green);
    margin-bottom: 1.5rem;
}

.leader-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Leader Stats */
.leader-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    flex: 1;
    text-align: center;
}

.stat-number {
    font-family: var(--font-cinzel);
    font-size: 2rem;
    font-weight: 900;
    background: var(--grad-fel);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

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

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-card {
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-card .platform {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.social-card .handle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.social-card.twitch:hover {
    border-color: #9146FF;
    background: rgba(145, 70, 255, 0.1);
    box-shadow: 0 0 20px rgba(145, 70, 255, 0.25);
}

.social-card.kick:hover {
    border-color: #53FC18;
    background: rgba(83, 252, 24, 0.08);
    box-shadow: 0 0 20px rgba(83, 252, 24, 0.2);
}

/* ============================================================
   LORE SECTION — THE PINK BEARD CHRONICLES
   ============================================================ */
.lore-section {
    padding: 8rem 0 10rem 0;
    background:
        radial-gradient(ellipse at top left, rgba(74, 222, 128, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(147, 51, 234, 0.06) 0%, transparent 50%);
    border-top: 1px solid rgba(74, 222, 128, 0.08);
    border-bottom: 1px solid rgba(147, 51, 234, 0.08);
}

.lore-header-wrapper {
    margin-bottom: 6rem;
}

.lore-prelude {
    font-family: var(--font-cinzel);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--neon-pink);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.lore-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Lore Timeline */
.lore-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Lore Act */
.lore-act {
    position: relative;
    padding: 1rem 0 5rem 0;
}

.lore-act-badge {
    font-family: var(--font-cinzel);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(147, 51, 234, 0.2);
    border: 1px solid var(--void-purple);
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 3px;
    margin-bottom: 2rem;
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.3);
}

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

.lore-act-reverse .lore-grid {
    grid-template-columns: 1fr 1fr;
}

.lore-act-reverse .lore-grid .lore-text-box {
    order: 2;
}

.lore-act-reverse .lore-grid .lore-image-container {
    order: 1;
}

.lore-text-box {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 2.5rem;
    background: rgba(10, 5, 20, 0.7);
    border: 1px solid rgba(247, 37, 133, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.03);
    transition: var(--transition-slow);
}

.lore-text-box:hover {
    border-color: rgba(247, 37, 133, 0.35);
    box-shadow: 0 8px 60px rgba(0,0,0,0.6), 0 0 40px rgba(247, 37, 133, 0.08);
    transform: translateY(-6px);
}

.lore-title {
    font-family: var(--font-cinzel);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 60%, var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lore-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.85;
}

.lore-desc strong {
    color: var(--text-main);
    font-weight: 700;
}

.lore-desc em {
    color: var(--fel-green);
    font-style: italic;
}

.lore-quote {
    font-family: var(--font-cinzel);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--neon-pink);
    border-left: 3px solid var(--neon-pink);
    padding-left: 1rem;
    margin-top: 0.5rem;
    line-height: 1.6;
    opacity: 0.85;
}

.void-glow-text {
    color: var(--void-purple);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
}

.fel-glow-text {
    color: var(--fel-green);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.4);
}

/* Lore Image */
.lore-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 350px;
    background: rgba(10, 5, 20, 0.5);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.05);
}

.lore-image-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: 0;
    background: var(--neon-pink);
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.lore-image-glow--red    { background: var(--blood-red); }
.lore-image-glow--purple { background: var(--void-purple); }
.lore-image-glow--green  { background: var(--fel-green); }
.lore-image-glow--fel    { background: var(--fel-green); }
.lore-image-glow--void   { background: var(--void-purple); }

.lore-image-container:hover .lore-image-glow { opacity: 0.5; }

.lore-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.lore-image-container:hover .lore-img {
    transform: scale(1.06);
}

.lore-image-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(2, 0, 5, 0.9));
    padding: 2rem 1.5rem 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Lore Divider */
.lore-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 1rem 0 3rem 0;
}

.lore-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 37, 133, 0.3), transparent);
}

.lore-divider-rune {
    font-size: 1.5rem;
    color: rgba(247, 37, 133, 0.6);
    animation: pulseGlow 4s infinite alternate;
}

/* Lore CTA */
.lore-cta {
    margin-top: 5rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(247, 37, 133, 0.06), rgba(147, 51, 234, 0.06));
    border: 1px solid rgba(247, 37, 133, 0.15);
    border-radius: 20px;
}

.lore-cta-text {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ============================================================
   ECOSYSTEM SECTION (Glassmorphism)
   ============================================================ */
.ecosystem-section {
    padding: 8rem 0;
}

.section-header {
    margin-bottom: 5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.category-title {
    grid-column: 1 / -1;
    font-family: var(--font-cinzel);
    font-size: 1.8rem;
    color: var(--text-main);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-title i { font-style: normal; opacity: 0.6; font-size: 1.2rem; }

.category-title.core-cat { border-color: rgba(74, 222, 128, 0.3); color: var(--fel-green); }
.category-title.combat-cat { border-color: rgba(239, 68, 68, 0.3); color: #ef4444; }
.category-title.utility-cat { border-color: rgba(147, 51, 234, 0.3); color: var(--void-purple); }
.category-title.economy-cat { border-color: rgba(251, 191, 36, 0.3); color: #fbbf24; }

.category-title:first-of-type { margin-top: 0; }

.glass-card {
    position: relative;
    background: rgba(12, 15, 26, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 20px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.glass-orb {
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--fel-green) 0%, transparent 60%);
    top: -50px; right: -50px;
    opacity: 0.12;
    transition: var(--transition-slow);
    border-radius: 50%;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(74, 222, 128, 0.25);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 50px rgba(74, 222, 128, 0.08);
}

.glass-card:hover .glass-orb {
    opacity: 0.35;
    transform: scale(1.5);
}

.glass-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.glass-content h4 {
    font-family: var(--font-cinzel);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.badge {
    align-self: flex-start;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(74, 222, 128, 0.08);
    color: var(--fel-green);
    border: 1px solid rgba(74,222,128,0.25);
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.badge.secondary {
    background: rgba(147, 51, 234, 0.08);
    color: #d8b4fe;
    border-color: rgba(147, 51, 234, 0.25);
}

.glass-content p {
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.7;
}

.card-footer {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--fel-green);
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
    letter-spacing: 1px;
}

.glass-card:hover .card-footer {
    padding-left: 8px;
}

/* ============================================================
   ESBIRRO DEL TERROR TARGET
   ============================================================ */
.esbirro-card {
    border-color: rgba(220, 38, 38, 0.4) !important;
    background: rgba(127, 29, 29, 0.1) !important;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.1) !important;
    grid-column: 1 / -1;
}
.esbirro-card:hover {
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.4), 0 10px 30px rgba(0,0,0,0.8) !important;
    border-color: rgba(220, 38, 38, 0.8) !important;
}
.esbirro-card .orb-ai {
    background: radial-gradient(circle, var(--blood-red) 0%, transparent 60%);
    opacity: 0.2;
}
.esbirro-card:hover .orb-ai {
    opacity: 0.5;
    animation: AIpulse 2s infinite;
}
.ai-badge {
    background: rgba(220, 38, 38, 0.15) !important;
    color: #fca5a5 !important;
    border-color: rgba(220, 38, 38, 0.4) !important;
}

@keyframes AIpulse {
    0%   { transform: scale(1.5); filter: brightness(1); }
    50%  { transform: scale(1.6); filter: brightness(1.5); }
    100% { transform: scale(1.5); filter: brightness(1); }
}

/* ============================================================
   CORE TECH SECTION
   ============================================================ */
.core-tech-section {
    padding: 6rem 0 10rem 0;
}

.core-card {
    position: relative;
    padding: 5rem;
    border-radius: 30px;
    background: linear-gradient(to right, rgba(12,15,26,0.97), rgba(15,10,30,0.9));
    border: 1px solid rgba(147,51,234,0.2);
    text-align: center;
    overflow: hidden;
}

.core-flare {
    position: absolute;
    width: 100vw; height: 100vw;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(147,51,234,0.06) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.core-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.core-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* ============================================================
   TRIBUTE SECTION
   ============================================================ */
.tribute-section {
    padding: 6rem 0 8rem 0;
    border-top: 1px solid rgba(220, 38, 38, 0.08);
    background: radial-gradient(circle at center, rgba(127, 29, 29, 0.06) 0%, transparent 70%);
}

.tribute-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
}

.altar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.altar-img {
    width: 260px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.9);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.altar-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 140%; height: 140%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.25) 0%, transparent 60%);
    z-index: 1;
    filter: blur(25px);
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0%   { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 1;   transform: translate(-50%, -50%) scale(1.1); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
    padding: 4rem 0;
    background: rgba(1, 0, 3, 0.97);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    width: 55px;
    margin-bottom: 0.5rem;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.footer-logo:hover { opacity: 1; filter: drop-shadow(0 0 10px var(--fel-green)); }

.footer-left p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-sub {
    font-size: 0.8rem !important;
    opacity: 0.6;
    font-style: italic;
}

.footer-right {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-right a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-right a:hover {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* ============================================================
   REVEAL ANIMATIONS (Intersection Observer)
   ============================================================ */
.reveal {
    opacity: 0;
    visibility: hidden;
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    visibility: visible;
}

.scale-in           { transform: scale(0.9); }
.scale-in.active    { transform: scale(1); }

.from-left          { transform: translateX(-50px); }
.from-left.active   { transform: translateX(0); }

.from-right         { transform: translateX(50px); }
.from-right.active  { transform: translateX(0); }

.staggered          { transform: translateY(40px); transition-delay: var(--delay); }
.staggered.active   { transform: translateY(0); }

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: #1e1030; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: rgba(147,51,234,0.4); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .leader-grid { gap: 3rem; }
    .lore-grid   { gap: 3rem; }
}

@media (max-width: 992px) {
    .leader-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .leader-image-wrapper { max-width: 400px; margin: 0 auto; }
    .social-links         { justify-content: center; }
    .leader-stats         { justify-content: center; }

    .lore-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .lore-act-reverse .lore-grid .lore-text-box,
    .lore-act-reverse .lore-grid .lore-image-container {
        order: unset;
    }

    .lore-image-container {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .navbar { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .mega-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .hero-cta-group { flex-direction: column; align-items: center; }

    .core-card { padding: 3rem 2rem; }

    .footer-flex {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .footer-right { justify-content: center; }

    .lore-text-box { padding: 2rem; }
    .lore-act-badge { margin-bottom: 1rem; }

    .leader-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1.2rem; }
    .grid-advanced { grid-template-columns: 1fr; }
}

/* ============================================================
   INSTALL BUTTON VARIANT
   ============================================================ */
.install-btn { border-color: #f59e0b; }
.install-btn .cyber-button-glitch { background: linear-gradient(135deg, #b45309, #f59e0b); }
.install-btn:hover { box-shadow: 0 0 30px rgba(245, 158, 11, 0.6); color: #000; }

/* ============================================================
   CORE CARD (Arsenal Grid WCS_Brain)
   ============================================================ */
.core-card-grid {
    border-color: rgba(147, 51, 234, 0.6) !important;
    background: rgba(59, 7, 100, 0.3) !important;
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.2) !important;
}
.core-card-grid:hover {
    box-shadow: 0 0 50px rgba(147, 51, 234, 0.5) !important;
}

.badge.core-badge {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.5);
}

/* ============================================================
   INSTALL SECTION
   ============================================================ */
.install-section {
    padding: 8rem 0;
    background:
        radial-gradient(ellipse at top right, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(147, 51, 234, 0.04) 0%, transparent 50%);
    border-top: 1px solid rgba(245, 158, 11, 0.08);
    border-bottom: 1px solid rgba(245, 158, 11, 0.05);
}

.install-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Install Timeline */
.install-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 5rem;
    padding-left: 2rem;
    border-left: 2px solid rgba(245, 158, 11, 0.15);
}

.install-step {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    position: relative;
}

.install-step::before {
    content: '';
    position: absolute;
    left: -2.7rem;
    top: 1.5rem;
    width: 10px;
    height: 2px;
    background: rgba(245, 158, 11, 0.4);
}

.install-step-num {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    border: 2px solid rgba(245, 158, 11, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-cinzel);
    font-size: 1.5rem;
    font-weight: 900;
    color: #f59e0b;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
    position: relative;
    z-index: 2;
    margin-left: -4.1rem;
}

.install-step-body {
    flex: 1;
    padding: 2rem 2.5rem;
    background: rgba(10, 5, 20, 0.6);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition-slow);
}

.install-step-body:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 30px rgba(245, 158, 11, 0.06);
    transform: translateX(6px);
}

.install-step-title {
    font-family: var(--font-cinzel);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.install-step-desc {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Addon Download Grid */
.addon-download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.addon-dl-link {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.addon-dl-link:hover {
    border-color: rgba(74, 222, 128, 0.4);
    background: rgba(74, 222, 128, 0.06);
    transform: translateY(-2px);
}

.addon-dl-link.core-link {
    border-color: rgba(147, 51, 234, 0.4);
    background: rgba(147, 51, 234, 0.08);
    grid-column: 1 / -1;
}

.addon-dl-link.core-link:hover {
    border-color: rgba(147, 51, 234, 0.8);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.25);
}

.addon-dl-name {
    font-family: var(--font-cinzel);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.addon-dl-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Install Code Block */
.install-code-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 8px;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.install-code-block code {
    font-family: 'Courier New', monospace;
    color: var(--fel-green);
    font-size: 1rem;
    font-weight: 700;
}

.install-code-alt {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.install-code-alt code {
    color: var(--fel-green);
    font-size: 0.85rem;
}

/* Install Warning & Success */
.install-warning {
    padding: 1rem 1.5rem;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 8px;
    color: #fde68a;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.install-warning strong { color: #f59e0b; }
.install-warning code {
    font-family: 'Courier New', monospace;
    background: rgba(0,0,0,0.3);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-size: 0.85rem;
}

.install-success {
    padding: 1rem 1.5rem;
    background: rgba(74, 222, 128, 0.07);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 8px;
    color: var(--fel-green);
}

/* Addon Download Buttons (JS Copy) */
button.addon-dl-link {
    cursor: pointer;
    text-align: left;
    outline: none;
}

button.addon-dl-link:active {
    transform: scale(0.96);
}

/* Fake UI Box for Launcher */
.fake-ui-box {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--fel-dark);
    border-radius: 6px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

/* Manual Install Details (old zip method) */
.manual-install-details {
    cursor: pointer;
    transition: var(--transition-fast);
}

.manual-install-summary {
    font-weight: 600;
    color: var(--text-muted);
    list-style: none; /* Hide default arrow in webkit */
    outline: none;
    position: relative;
    padding-left: 1.5rem;
}

.manual-install-summary::-webkit-details-marker {
    display: none;
}

.manual-install-summary::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.8rem;
    color: var(--fel-green);
    transition: transform 0.3s ease;
}

.manual-install-details[open] .manual-install-summary::before {
    transform: rotate(90deg);
}

.manual-install-content p {
    margin-bottom: 0.8rem;
}

.manual-install-content code {
    background: rgba(0,0,0,0.3);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    color: var(--fel-green);
}

/* ============================================================
   MEMBERS SECTION
   ============================================================ */
.members-section {
    padding: 8rem 0;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(10, 5, 20, 0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    transition: var(--transition-slow);
}

.member-card:hover {
    border-color: rgba(147, 51, 234, 0.3);
    box-shadow: 0 12px 60px rgba(0,0,0,0.5), 0 0 40px rgba(147, 51, 234, 0.07);
    transform: translateY(-8px);
}

.member-card--empty {
    border-style: dashed;
    border-color: rgba(255,255,255,0.1);
    opacity: 0.7;
}

.member-card--empty:hover {
    border-color: rgba(74, 222, 128, 0.3);
    opacity: 1;
}

.member-portrait-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
}

.member-glow {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.member-glow--purple { background: var(--void-purple); }
.member-glow--void   { background: rgba(74,222,128,0.3); }

.member-card:hover .member-glow { opacity: 0.7; }

.member-portrait {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(147, 51, 234, 0.5);
    position: relative;
    z-index: 1;
}

.member-portrait-empty {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px dashed rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-cinzel);
    font-size: 3rem;
    color: rgba(255,255,255,0.15);
    position: relative;
    z-index: 1;
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.member-name {
    font-family: var(--font-cinzel);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.member-class {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
}

.member-class.warlock {
    background: rgba(147, 51, 234, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.member-class.unknown {
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.1);
}

.member-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.member-role.leader-role {
    color: #f59e0b;
    font-weight: 700;
}

.member-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   RECRUITMENT SECTION
   ============================================================ */
.recruitment-section {
    padding: 8rem 0;
    background:
        radial-gradient(ellipse at center, rgba(88, 101, 242, 0.05) 0%, transparent 60%);
    border-top: 1px solid rgba(88, 101, 242, 0.08);
    border-bottom: 1px solid rgba(88, 101, 242, 0.06);
}

.recruitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.recruit-card {
    padding: 2.5rem;
    background: rgba(10, 5, 20, 0.6);
    border: 1px solid rgba(88, 101, 242, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    transition: var(--transition-slow);
}

.recruit-card:hover {
    border-color: rgba(88, 101, 242, 0.35);
    box-shadow: 0 8px 50px rgba(0,0,0,0.4), 0 0 30px rgba(88, 101, 242, 0.07);
}

.recruit-title {
    font-family: var(--font-cinzel);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.recruit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.recruit-list li {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    padding: 0.6rem 1rem;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition-fast);
}

.recruit-list li:hover {
    background: rgba(74, 222, 128, 0.05);
    border-color: rgba(74, 222, 128, 0.2);
    color: var(--text-main);
}

.recruit-list strong { color: var(--text-main); }

.recruit-steps {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.recruit-step {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.recruit-step-num {
    flex-shrink: 0;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(88, 101, 242, 0.05));
    border: 1px solid rgba(88, 101, 242, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-cinzel);
    font-size: 0.9rem;
    font-weight: 900;
    color: #7289da;
}

.recruit-step h4 {
    font-family: var(--font-cinzel);
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.recruit-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   Z-INDEX: nuevas secciones
   ============================================================ */
.install-section,
.members-section,
.recruitment-section {
    position: relative;
    z-index: 10;
}

/* ============================================================
   RESPONSIVE: nuevas secciones
   ============================================================ */
@media (max-width: 900px) {
    .install-timeline {
        padding-left: 1rem;
    }
    .install-step {
        gap: 1.5rem;
    }
    .install-step-num {
        width: 3rem;
        height: 3rem;
        font-size: 1.2rem;
        margin-left: -2.7rem;
    }
    .addon-download-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    .recruitment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .members-grid {
        grid-template-columns: 1fr 1fr;
    }
    .install-step {
        flex-direction: column;
        padding-left: 1rem;
    }
    .install-step-num {
        margin-left: 0;
    }
}

/* ============================================================
   DEVELOPER SECTION: Gravity AI Bridge
   ============================================================ */
.developer-section {
    padding: 8rem 0;
    background: radial-gradient(circle at top, rgba(0, 255, 255, 0.05), transparent 70%);
    position: relative;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.developer-subtitle {
    font-size: 1.1rem;
    color: var(--text-main);
    opacity: 0.8;
    max-width: 700px;
    margin: 1rem auto 0;
}

.dev-master-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.dev-info-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 255, 255, 0.05);
    text-align: left;
}

.dev-tool-title {
    font-size: 1.8rem;
    color: cyan;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.dev-tool-subtitle {
    font-size: 1rem;
    color: var(--void-purple);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.dev-desc {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.dev-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.dev-features li {
    margin-bottom: 1rem;
    display: flex;
    gap: 12px;
}

.dev-features span {
    color: cyan;
}

.dev-visual-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dev-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2), transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.dev-core-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.2);
}

@media (max-width: 900px) {
    .dev-master-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .dev-info-card {
        padding: 2rem;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .dev-features li {
        justify-content: center;
    }

    .dev-core-img {
        max-width: 320px;
        margin: 0 auto;
    }
}
