/* Reset and Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --sidebar-bg: #0f0f0f;
    --primary: #44ff1e;
    /* Kick Green */
    --primary-light: #5cff3c;
    --accent-cyan: #00f2ea;
    /* TikTok Cyan / Tech Glow */
    --accent-red: #ff0050;
    /* TikTok Red / Alert */
    --success: #00e676;
    --text-main: #ffffff;
    --text-dim: #999;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    cursor: url('https://cur.cursors-4u.net/games/gam-4/gam340.cur'), auto;
    /* Gaming Hand Cursor */
}

/* --- Launcher Effects --- */
.digital-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 242, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 234, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(0, 242, 234, 0.02) 50%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.1;
}

.hud-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2000;
    border: 20px solid transparent;
    border-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 20 L0 0 L20 0" fill="none" stroke="rgba(68, 255, 30, 0.3)" stroke-width="2"/><path d="M80 0 L100 0 L100 20" fill="none" stroke="rgba(68, 255, 30, 0.3)" stroke-width="2"/><path d="M100 80 L100 100 L80 100" fill="none" stroke="rgba(68, 255, 30, 0.3)" stroke-width="2"/><path d="M20 100 L0 100 L0 80" fill="none" stroke="rgba(68, 255, 30, 0.3)" stroke-width="2"/></svg>') 20 stretch;
}

.hud-data {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

/* Animations */
@keyframes gridMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50px);
    }
}

@keyframes flicker {
    0% {
        opacity: 0.9;
    }

    5% {
        opacity: 0.8;
    }

    10% {
        opacity: 0.9;
    }

    100% {
        opacity: 1;
    }
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

/* XP Bar Styles */
.xp-container {
    width: 100%;
    padding: 0 24px;
    margin-bottom: 20px;
}

.xp-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.xp-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.xp-bar-fill {
    height: 100%;
    width: 85%;
    /* Example level progress */
    background: linear-gradient(90deg, var(--primary), var(--success));
    box-shadow: 0 0 10px var(--primary);
    border-radius: 10px;
    position: relative;
}

.xp-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: xpGlow 2s linear infinite;
}

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

    100% {
        transform: translateX(100%);
    }
}

/* Gaming Launcher Styles */
.launcher-container {
    display: flex;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Left Panel - User Profile */
.left-panel {
    width: 260px;
    background: var(--sidebar-bg);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.brand-logo {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 242, 234, 0.5));
}

.brand-name {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-name span {
    color: var(--text-dim);
    font-weight: 400;
}

.user-profile {
    padding: 10px 24px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user-avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    padding: 4px;
    box-shadow: 0 0 15px rgba(68, 255, 30, 0.3);
}

.user-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.user-bio {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.4;
    margin-bottom: 12px;
}

.wacom-link {
    font-size: 0.8rem;
    color: var(--primary-light);
    text-decoration: underline;
    cursor: pointer;
}

/* HUD Data placements */
.top-left-data {
    top: 30px;
    left: 30px;
}

.bottom-right-data {
    bottom: 30px;
    right: 30px;
}

.system-status {
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

/* Navigation active refinement */
.nav-item.active {
    background: #8a2be2;
    color: white;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.nav-menu {
    flex: 1;
    padding: 0 12px;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 4px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ccc;
    /* Improved contrast */
}

.nav-item:hover {
    background: var(--glass);
    color: #fff;
}

.nav-item.active {
    background: #8a2be2;
    color: white;
}

.nav-icon {
    width: 18px;
    margin-right: 12px;
    font-size: 1.1rem;
}

.nav-text {
    font-size: 0.9rem;
    font-weight: 400;
}

.sidebar-footer {
    padding: 24px;
    font-size: 0.7rem;
    color: #444;
    border-top: 1px solid var(--glass-border);
}

/* Main Content Area */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* Top Bar */
.top-bar {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 5;
}

.search-container {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    font-size: 0.9rem;
}

.search-input {
    width: 100%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 10px 16px 10px 44px;
    color: var(--text-main);
    font-size: 0.9rem;
    outline: none;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-links-top {
    display: flex;
    gap: 12px;
    margin-right: 20px;
}

.social-icon-top {
    color: var(--text-dim);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid transparent;
}

.social-icon-top:hover {
    color: var(--text-main);
    border-color: var(--primary-light);
    box-shadow: 0 0 10px var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin-right: 16px;
}

.lang-btn {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    background: transparent;
}

.lang-btn.active {
    background: #8a2be2;
    color: white;
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.4);
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: #8a2be2;
}

/* New Contact Section */
.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    margin-top: 20px;
}

.contact-card-v2 {
    background: #141414;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Slightly more visible border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-header-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-header-v2 i {
    color: #4a90e2;
    font-size: 1.2rem;
}

.contact-header-v2 span {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.contact-email-v2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff9d00;
    margin-bottom: 16px;
    display: block;
    word-break: break-all;
}

.contact-desc-v2 {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 400px;
}

/* Social Mini Grid */
.social-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}

.social-item-v2 {
    background: #252525;
    border-radius: 12px;
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-item-v2:hover {
    background: #333;
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.social-item-v2 i {
    font-size: 1.5rem;
}

.social-item-v2 span {
    font-size: 0.65rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contour Light for Social Items */
.social-item-v2:hover {
    box-shadow: 0 0 15px currentColor;
    border-color: currentColor;
}

.si-instagram:hover {
    color: #E1306C !important;
}

.si-tiktok:hover {
    color: #ff0050 !important;
}

.si-artstation:hover {
    color: #13AFF0 !important;
}

.si-twitter:hover {
    color: #1DA1F2 !important;
}

.si-linkedin:hover {
    color: #0077B5 !important;
}

.si-youtube:hover {
    color: #FF0000 !important;
}

.si-whatsapp:hover {
    color: #25D366 !important;
}

.si-discord:hover {
    color: #5865F2 !important;
}

/* Icon Colors */
.si-instagram i {
    color: #E1306C;
}

.si-tiktok i {
    color: #ff0050;
}

.si-artstation i {
    color: #13AFF0;
}

.si-twitter i {
    color: #1DA1F2;
}

.si-linkedin i {
    color: #0077B5;
}

.si-youtube i {
    color: #FF0000;
}

.si-whatsapp i {
    color: #25D366;
}

.si-discord i {
    color: #5865F2;
}

@media (max-width: 1100px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* Scrollable Area */
.scroll-area {
    flex: 1;
    overflow-y: auto;
    padding: 0 32px 32px;
}

/* Hero Section */
.hero-section {
    display: flex;
    gap: 24px;
    margin-top: 10px;
    margin-bottom: 32px;
    align-items: stretch;
}

.main-hero {
    flex: 1;
    /* More flexible */
    height: 500px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.allied-brands {
    width: 200px;
    /* Further reduced width to ensure grid below is not compressed */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.live-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #ff2d2d;
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 45, 45, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 45, 45, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 45, 45, 0);
    }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin-bottom: 32px;
    line-height: 1.5;
    opacity: 0.9;
}

.btn-kick {
    background: #44ff1e;
    /* Correct Kick Green */
    color: #000000;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    font-size: 1rem;
}

.btn-kick:hover {
    transform: translateY(-2px);
    background: #5cff3c;
    box-shadow: 0 10px 20px rgba(68, 255, 30, 0.2);
}

.section-header {
    margin-top: 40px;
    margin-bottom: 24px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #555);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.section-title-small {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brands-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brand-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    /* Vertical layout */
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 130px;
    /* Slightly adjusted height */
    width: 100%;
    background-size: cover !important;
    background-position: center !important;
}

.brand-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Restoring the dark overlay */
    z-index: 1;
}

.brand-pill>* {
    position: relative;
    z-index: 2;
    /* Ensure content is above overlay */
}

.brand-pill:hover {
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(68, 255, 30, 0.3);
    transform: translateY(-5px);
}

.brand-pill img {
    max-height: 28px;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
    margin-right: 0;
}

.brand-pill i {
    font-size: 1.8rem !important;
    margin-bottom: 12px;
    margin-right: 0;
}

/* Cards Grid Responsive Optimization */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

/* Luminescent Glow Effect */
.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(0, 242, 234, 0);
    transition: box-shadow 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(0, 242, 234, 0.05);
    border-color: var(--accent-cyan);
    box-shadow:
        0 10px 30px rgba(0, 242, 234, 0.3),
        0 0 40px rgba(0, 242, 234, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: conic-gradient(transparent,
            rgba(0, 242, 234, 0.3),
            transparent 30%);
    animation: rotate 4s linear infinite;
    transition: opacity 0.3s;
    z-index: -1;
    pointer-events: none;
}

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

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

/* Scanning Line on Card Hover */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 242, 234, 0.4),
            transparent);
    transition: none;
    pointer-events: none;
    z-index: 2;
}

.card:hover::after {
    animation: scanCard 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

    100% {
        left: 100%;
    }
}

/* Card Image container glow */
.card-img-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 242, 234, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .card-img-container::after {
    opacity: 1;
}

.card-img-container {
    height: 120px;
    position: relative;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-arte {
    background: #00e5ff;
    color: #000;
}

.badge-gratis {
    background: #00ff88;
    color: #000;
}

.badge-educacion {
    background: #007bff;
    color: #fff;
}

.badge-proximo {
    background: #ff2d55;
    color: #fff;
}

.badge-comunidad {
    background: var(--accent-red);
    color: #fff;
}

.card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ff9800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 152, 0, 0.3);
    transition: all 0.3s;
}

.card:hover .card-title {
    color: #ffb74d;
    text-shadow: 0 0 15px rgba(255, 152, 0, 0.6);
    transform: scale(1.05);
}

.card-desc {
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 16px;
    line-height: 1.4;
    flex: 1;
}

.btn-stone {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8a2be2 !important;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-shadow: none;
    position: relative;
    overflow: hidden;
}

/* Standard Cards Button Hover */
.card .btn-stone:hover {
    border-color: #8a2be2;
    background: rgba(138, 43, 226, 0.1);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
    transform: translateY(-3px);
    color: #fff !important;
}

/* Legendary Cards Button Override */
.featured-card .btn-stone {
    border-color: rgba(255, 152, 0, 0.3);
    color: #ff9800 !important;
    background: rgba(255, 152, 0, 0.05);
    font-weight: 700;
}

.featured-card .btn-stone:hover {
    border-color: #ff9800;
    background: rgba(255, 152, 0, 0.15);
    box-shadow: 0 0 25px rgba(255, 152, 0, 0.4);
    transform: translateY(-3px);
    color: #fff !important;
}

/* Expanding Neon Effects to Sponsors and Featured Cards */
/* Extended Neon Effects */
.brand-pill:hover,
.featured-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 20px rgba(0, 242, 234, 0.2);
}

/* Legendary Orange Glow for Bóveda & Cartas Contours */
.featured-row .featured-card {
    border: 3px solid #ff9800 !important;
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.4), inset 0 0 15px rgba(255, 152, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.featured-row .featured-card:hover {
    box-shadow: 0 0 40px rgba(255, 152, 0, 0.6), inset 0 0 20px rgba(255, 152, 0, 0.2) !important;
    border-color: #ffcc00 !important;
}

.brand-pill::before,
.featured-card::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: conic-gradient(transparent, rgba(0, 242, 234, 0.3), transparent 30%);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
    pointer-events: none;
}

.brand-pill:hover::before,
.featured-card:hover::before {
    opacity: 1;
}

.brand-pill::after,
.featured-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
}

.brand-pill:hover::after,
.featured-card:hover::after {
    animation: scan 2s linear infinite;
    opacity: 1;
}

/* --- Special Vault (Bóveda) Theme --- */
.vault-card {
    overflow: hidden;
    position: relative;
    background: #111 !important;
    border: 2px solid #333 !important;
}

.vault-card::before {
    background: conic-gradient(transparent, #888, transparent 30%) !important;
    pointer-events: none;
}

.vault-door {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../images/vault_stylized.png') center/cover no-repeat;
    z-index: 5;
    transition: transform 1s cubic-bezier(0.7, 0, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    box-shadow: inset 0 0 50px #000;
}

.vault-prompt {
    color: #ff9800;
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 152, 0, 0.6), 2px 2px 4px #000;
    transition: opacity 0.4s;
    margin: 0;
    position: relative;
    z-index: 10;
}

.vault-card:hover .vault-prompt {
    opacity: 0;
}

/* Removed circular iris icon as requested to allow proper centering */
.vault-door::after {
    display: none;
}

.vault-card:hover .vault-door {
    transform: translateX(110%);
}

.vault-hud {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--primary);
    z-index: 6;
    opacity: 0;
    transition: opacity 0.3s;
}

.vault-card:hover .vault-hud {
    opacity: 1;
    animation: flicker 0.1s infinite;
}

.vault-status::before {
    content: "[ STATUS: DECRYPTING... ]";
    animation: vaultStatusChange 2s forwards;
}

@keyframes vaultStatusChange {

    0%,
    80% {
        content: "[ STATUS: DECRYPTING... ]";
        color: var(--accent-cyan);
    }

    100% {
        content: "[ ACCESS GRANTED ]";
        color: var(--primary);
    }
}

/* Removed old hover as .btn-stone handles itself */

/* Featured Sections */
.featured-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.featured-card {
    height: 320px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}



.badge-exclusivo {
    background: #ff9800;
    color: #fff;
}

.badge-nuevo {
    background: #6200ea;
    color: #fff;
}

/* Testimonials */
.section-header-testimonials {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    margin-top: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.testimonial-card-v2 {
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card-v2.hidden {
    display: none !important;
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.avatar-mc {
    background: linear-gradient(135deg, #FF4B2B, #FF416C);
}

.avatar-jr {
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

.avatar-lp {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
}

.avatar-cr {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.avatar-eg {
    background: linear-gradient(135deg, #f2994a, #f2c94c);
}

.avatar-rd {
    background: linear-gradient(135deg, #ee0979, #ff6a00);
}

.testi-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.testi-info p {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.testi-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.btn-show-more {
    display: block;
    margin: 0 auto 40px;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-show-more:hover {
    background: var(--glass);
    color: white;
    border-color: var(--primary);
}

/* Social Buttons V2 (Next to Title) */
.social-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    margin-bottom: 24px;
    gap: 20px;
}


.social-grid-v2 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn-v2 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 90px;
}

.social-btn-v2:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-btn-v2 i {
    font-size: 1.4rem;
}

.social-btn-v2 span {
    font-size: 0.65rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-btn-v2:hover span {
    color: white;
}

/* Glowing Contour for Social Buttons V2 */
.social-btn-v2:hover {
    border-color: currentColor;
    box-shadow: 0 0 15px currentColor;
}

.btn-v2-instagram:hover {
    color: #E1306C !important;
}

.btn-v2-tiktok:hover {
    color: #ff0050 !important;
}

.btn-v2-artstation:hover {
    color: #13AFF0 !important;
}

.btn-v2-youtube:hover {
    color: #FF0000 !important;
}

.btn-v2-patreon:hover {
    color: #F96854 !important;
}

.btn-v2-linkedin:hover {
    color: #0077B5 !important;
}

.btn-v2-discord:hover {
    color: #5865F2 !important;
}

.btn-v2-whatsapp:hover {
    color: #25D366 !important;
}

/* Icon Colors */
.btn-v2-instagram i {
    color: #E1306C;
}

.btn-v2-artstation i {
    color: #13AFF0;
}

.btn-v2-youtube i {
    color: #FF0000;
}

.btn-v2-patreon i {
    color: #F96854;
}

.btn-v2-linkedin i {
    color: #0077B5;
}

.btn-v2-discord i {
    color: #5865F2;
}

.btn-v2-tiktok i {
    color: #ff0050;
}

.btn-v2-whatsapp i {
    color: #25D366;
}

/* Contact Section */
.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-box {
    background: var(--glass);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.contact-email {
    font-size: 1.2rem;
    color: #ff9800;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

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

.social-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s;
    color: var(--text-dim);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.social-item:hover {
    background: var(--primary);
    border-color: var(--primary-light);
    color: white;
    transform: scale(1.05);
}

.social-item i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.social-item span {
    font-size: 0.65rem;
    font-weight: 400;
}

.contact-box {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

/* Custom Scrollbar */
.scroll-area::-webkit-scrollbar {
    width: 6px;
}

.scroll-area::-webkit-scrollbar-track {
    background: transparent;
}

.scroll-area::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}

.scroll-area::-webkit-scrollbar-thumb:hover {
    background: #333;
}

@media (max-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Preserve cards as grid */
        gap: 12px;
    }

    .card-img-container {
        height: 140px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .featured-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Still 2 columns for extra small */
        gap: 8px;
    }

    .card-title {
        font-size: 0.8rem;
    }

    .card-desc {
        display: none;
        /* Hide description on very small screens to keep layout clean */
    }
}

@media (max-width: 900px) {
    .launcher-container {
        flex-direction: column;
        height: auto;
        overflow-y: visible;
    }

    .left-panel {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }

    .main-content {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .scroll-area {
        padding: 0 16px 16px;
        overflow: visible;
    }

    .hero-section {
        flex-direction: column;
    }

    .testimonials-grid,
    .contact-row {
        grid-template-columns: 1fr;
    }
}

/* Glassmorphic Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-glam-content {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    padding: 40px;
    position: relative;
    box-shadow: 0 0 40px rgba(68, 255, 30, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-y: auto;
}

.modal-overlay.active .modal-glam-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-light);
    transform: rotate(90deg);
}

.modal-body h2 {
    background: linear-gradient(90deg, #1e1e1e 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.modal-body p {
    line-height: 1.8;
    color: #ddd;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.modal-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

@media (max-width: 480px) {
    .modal-glam-content {
        padding: 24px;
    }

    .modal-body h2 {
        font-size: 1.8rem;
    }
}

/* Mentorship Grid System */
.mentorship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.mentor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mentor-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #ff9800;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.15);
}

.mentor-img-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #111;
}

.mentor-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.mentor-card:hover .mentor-img-wrapper img {
    transform: scale(1.1);
}

.mentor-title {
    color: #ff9800;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mentor-desc {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.6;
}

.mentor-footer-text {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

@media (max-width: 900px) {
    .mobile-logo {
        display: flex !important;
    }

    .mentorship-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Character Stats (About Modal) */
.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
}

.stat-bar-bg {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    border-radius: 2px;
}
