/* GUNBOUND NOVA (Holographic Modern) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Nova Palette (Iridescent) */
    --nv-primary: #6c5ce7;
    --nv-accent: #00cec9;
    --nv-pink: #fd79a8;

    --grad-nova: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    --grad-holo: linear-gradient(135deg, #00cec9 0%, #6c5ce7 50%, #fd79a8 100%);

    --nv-dark: #2d3436;
    --nv-text: #636e72;
    --nv-gray: #dfe6e9;

    --bg-page: #f8f9fa;
    --bg-card: #ffffff;

    --radius-nv: 12px;
    --shadow-nv: 0 10px 40px rgba(108, 92, 231, 0.05), 0 2px 10px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 15px 50px rgba(108, 92, 231, 0.12);
}

/* Animaciones Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(108, 92, 231, 0.6);
    }
}

/* Clases de animación para scroll reveal */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-up.animated {
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-left.animated {
    transform: translateX(0);
}

.fade-in-right {
    transform: translateX(30px);
}

.fade-in-right.animated {
    transform: translateX(0);
}

.scale-in {
    transform: scale(0.9);
}

.scale-in.animated {
    transform: scale(1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--nv-text);
    font-size: 13px;
    background: #fdfdfd;
    background-image:
        radial-gradient(circle at 0% 0%, rgba(108, 92, 231, 0.03), transparent 40%),
        radial-gradient(circle at 100% 0%, rgba(0, 206, 201, 0.03), transparent 40%);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Animación de entrada para el body */
body.loaded {
    animation: fadeIn 0.5s ease-in;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

ul {
    list-style: none;
}

.container {
    width: 1380px;
    max-width: 95%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}


/* --- TOP BAR (Full Width Black) --- */
.top-bar-nv {
    width: 100%;
    background: #000000;
    padding: 8px 0;
    font-size: 11px;
    font-weight: 700;
    color: #b2bec3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    animation: slideInLeft 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

/* Efecto de brillo animado en top bar */
.top-bar-nv::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 206, 201, 0.1), transparent);
    animation: shimmer 3s infinite;
}

/* --- HEADER (Sticky Flush) --- */
.nova-header {
    background: rgba(255, 255, 255, 0.95);
    /* Slight transparency */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-nv);
    box-shadow: var(--shadow-nv);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Flush to top */
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto cuando se hace scroll */
.nova-header.scrolled {
    box-shadow: 0 5px 30px rgba(108, 92, 231, 0.15);
    background: rgba(255, 255, 255, 0.98);
}

/* Subtle holographic shine on header */
.nova-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--grad-holo);
}

.logo-nv {
    font-size: 20px;
    font-weight: 800;
    color: var(--nv-dark);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo-nv:hover {
    transform: scale(1.05);
}

.logo-nv i {
    font-size: 24px;
    background: var(--grad-holo);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    transition: transform 0.3s ease;
}

.logo-nv:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* Nav & Dropdowns */
.nav-nv {
    display: flex;
    gap: 5px;
    height: 100%;
    align-items: center;
}

.nav-item-wrap {
    position: relative;
    height: 100%;
}

.nav-v-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--nv-text);
    font-size: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-v-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-v-link:hover::before,
.nav-v-link.active::before {
    width: 300px;
    height: 300px;
}

.nav-v-link:hover,
.nav-v-link.active,
.nav-item-wrap:hover .nav-v-link {
    background: #f8f9fa;
    color: var(--nv-primary);
    transform: translateY(-2px);
}

.nav-v-link i {
    transition: transform 0.3s ease;
}

.nav-item-wrap:hover .nav-v-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nova-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item-wrap:hover .nova-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nova-dropdown a {
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--nv-text);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nova-dropdown a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--grad-nova);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.nova-dropdown a:hover::before {
    transform: scaleY(1);
}

.nova-dropdown a:hover {
    background: #f1f2f6;
    color: var(--nv-primary);
    padding-left: 20px;
    transform: translateX(5px);
}


/* --- CARDS (Borderless) --- */
.nova-card {
    background: #fff;
    border-radius: var(--radius-nv);
    box-shadow: var(--shadow-nv);
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
}

.nova-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.05), transparent);
    transition: left 0.5s;
}

.nova-card:hover::before {
    left: 100%;
}

.nova-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

.nv-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.nv-title {
    font-weight: 800;
    font-size: 14px;
    color: var(--nv-dark);
}

.nv-more {
    font-size: 11px;
    font-weight: 700;
    color: #a4b0be;
    text-transform: uppercase;
    cursor: pointer;
}

.nv-more:hover {
    color: var(--nv-primary);
}


/* --- HERO GRID (Dense) --- */
.hero-grid-nv {
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    gap: 20px;
}

/* Login */
.inp-nv {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: #f1f2f6;
    border-radius: 10px;
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans';
    font-size: 12px;
    font-weight: 600;
    transition: 0.2s;
}

.inp-nv:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.btn-nv {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-nv::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-nv:hover::before {
    width: 300px;
    height: 300px;
}

.btn-nv:active {
    transform: scale(0.98);
}

.bn-primary {
    background: var(--grad-nova);
    background-size: 200% 200%;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.25);
    animation: gradientShift 3s ease infinite;
}

.bn-primary:hover {
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.bn-social {
    background: #dfe6e9;
    color: var(--nv-dark);
    margin-top: 8px;
}

.bn-social:hover {
    background: #b2bec3;
    transform: translateY(-2px);
}

/* Hero Slider */
.hero-nv {
    height: 100%;
    min-height: 300px;
    border-radius: var(--radius-nv);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-nv);
    transition: all 0.4s ease;
}

.hero-nv:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.hero-nv-bg {
    width: 100%;
    height: 100%;
    background: url('../images/gb-pg2.jpg') no-repeat center center;
    background-size: cover;
    transition: transform 0.5s ease;
    background-position-y: -30px;
}

.hero-nv:hover .hero-nv-bg {
    transform: scale(1.1);
}

.hero-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    color: var(--nv-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: scale(1.1);
    animation: glow 1s ease-in-out infinite;
}

/* Download */
.dl-nv {
    background: #fff;
    border-radius: var(--radius-nv);
    box-shadow: var(--shadow-nv);
    padding: 25px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dl-nv::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s;
}

.dl-nv:hover::before {
    transform: scale(1);
}

.dl-nv:hover {
    border-color: var(--nv-primary);
    background: #fbfbfb;
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.dl-icon-nv {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: var(--bg-page);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--nv-primary);
    transition: all 0.4s ease;
    position: relative;
}

.dl-nv:hover .dl-icon-nv {
    transform: rotate(360deg) scale(1.1);
    background: var(--grad-nova);
    color: #fff;
    animation: float 2s ease-in-out infinite;
}

.dl-nv h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--nv-dark);
}

.dl-nv span {
    font-size: 11px;
    color: #b2bec3;
    font-weight: 600;
}


/* --- EVENT STRIP --- */
.strip-nv {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.nv-event {
    background: #fff;
    padding: 10px;
    border-radius: var(--radius-nv);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.nv-event::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nv-event:hover::after {
    left: 100%;
}

.nv-event:hover {
    border-color: var(--nv-gray);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ne-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    transition: all 0.4s ease;
    position: relative;
}

.nv-event:hover .ne-icon {
    transform: rotate(10deg) scale(1.15);
    animation: pulse 1s ease-in-out infinite;
}

.ne-info h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--nv-dark);
    line-height: 1.3;
}

.ne-info span {
    font-size: 10px;
    color: #b2bec3;
    font-weight: 600;
}

.bg-grad-1 {
    background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 100%);
}

.bg-grad-2 {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.bg-grad-3 {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
}

.bg-grad-4 {
    background: linear-gradient(135deg, #cfd9df 0%, #e2ebf0 100%);
    color: #666;
}


/* --- SHOP --- */
.shop-nv-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.nv-item {
    text-align: center;
    padding: 15px 10px;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: #fdfdfd;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.nv-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nv-item:hover::before {
    width: 200px;
    height: 200px;
}

.nv-item:hover {
    background: #fff;
    border-color: var(--nv-gray);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px) scale(1.05);
}

.nv-item-img {
    width: 50px;
    height: 50px;
    margin: 0 auto 8px;
    border-radius: 10px;
    background: #f1f2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b2bec3;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.nv-item:hover .nv-item-img {
    transform: rotateY(360deg) scale(1.2);
    background: var(--grad-nova);
    color: #fff;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.nv-item h5 {
    font-size: 12px;
    font-weight: 700;
    color: var(--nv-dark);
}

.nv-item span {
    font-size: 11px;
    font-weight: 600;
    color: var(--nv-primary);
}


/* --- CONTENT SPLIT --- */
.split-nv {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

/* Rank List */
.rank-nv-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 5px;
    background: #fafafa;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.rank-nv-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--grad-nova);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.rank-nv-item:hover::before {
    transform: scaleY(1);
}

.rank-nv-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.ri-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.ri-pos {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--nv-dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-weight: 800;
}

.rank-nv-item:hover .ri-pos {
    background: var(--grad-nova);
    color: #fff;
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 3px 10px rgba(108, 92, 231, 0.3);
}

.ri-val {
    font-weight: 800;
    color: var(--nv-primary);
}

/* Social Buttons */
.soc-nv-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
    transition: 0.2s;
}

.soc-nv-btn:hover {
    transform: scale(1.02);
}

.sb-discord {
    background: #5865F2;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

.sb-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3);
}


/* --- FOOTER --- */
.foot-nv {
    margin-top: 60px;
    padding: 40px 0;
    border-top: 1px solid #f1f2f6;
    font-size: 12px;
}

.fn-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

.fn-brand {
    font-size: 18px;
    font-weight: 800;
    color: var(--nv-dark);
    margin-bottom: 10px;
}

.fn-col h6 {
    font-size: 11px;
    font-weight: 800;
    color: #b2bec3;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.fn-col a {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--nv-text);
}

.fn-col a {
    transition: all 0.3s ease;
    display: inline-block;
}

.fn-col a:hover {
    color: var(--nv-primary);
    transform: translateX(5px);
}

/* Login Modal */
#loginModal {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

#loginModal .nova-card {
    animation: fadeInUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--nv-dark);
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
    border-radius: 8px;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
    background: rgba(108, 92, 231, 0.1);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.mobile-nav-link {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    cursor: pointer;
}

.mobile-nav-link span {
    flex: 1;
}

.mobile-nav-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    width: 300px;
    height: 300px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--nv-primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Nav Item (contenedor con submenu) */
.mobile-nav-item {
    display: flex;
    flex-direction: column;
}

.mobile-nav-toggle {
    cursor: pointer;
}

.mobile-nav-item.active .mobile-nav-toggle i {
    transform: rotate(180deg);
}

.mobile-nav-item.active .mobile-nav-toggle {
    color: var(--nv-primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
    padding-left: 20px;
    margin-top: 5px;
}

.mobile-nav-item.active .mobile-submenu {
    max-height: 500px;
    opacity: 1;
}

.mobile-submenu-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 5px;
    position: relative;
    padding-left: 40px;
}

.mobile-submenu-link::before {
    content: '→';
    position: absolute;
    left: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--nv-primary);
}

.mobile-submenu-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 45px;
    transform: translateX(5px);
}

.mobile-submenu-link:hover::before {
    opacity: 1;
    left: 25px;
}

/* Responsive - Menú móvil */
@media (max-width: 1024px) {
    .nav-nv {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .nova-header {
        flex-wrap: wrap;
    }
    
    .nova-header .btn-nv.bn-primary {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }
    
    .hero-grid-nv {
        grid-template-columns: 1fr;
    }
    
    .split-nv {
        grid-template-columns: 1fr;
    }
    
    .strip-nv {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-nv-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .fn-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .strip-nv {
        grid-template-columns: 1fr;
    }
    
    .shop-nv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nova-header {
        padding: 10px 15px;
        flex-wrap: wrap;
    }
    
    .logo-nv {
        font-size: 18px;
        flex: 1;
    }
    
    .mobile-menu-toggle {
        font-size: 20px;
        padding: 6px 10px;
    }
    
    .nova-header .btn-nv.bn-primary {
        order: 3;
        width: 100%;
        margin-top: 10px;
        padding: 10px;
    }
    
    .mobile-nav {
        padding: 15px;
        max-width: 100%;
    }
    
    .mobile-nav-link {
        font-size: 18px;
        padding: 12px 15px;
    }
    
    .mobile-submenu-link {
        font-size: 14px;
        padding: 10px 15px;
        padding-left: 35px;
    }
    
    .mobile-submenu-link:hover {
        padding-left: 40px;
    }
}

/* Loading animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading {
    animation: spin 1s linear infinite;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}


/* --- HERO SLIDER (Nova) --- */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hs-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hs-sub {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 5;
    display: flex;
    gap: 6px;
}

.slider-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.slider-dots span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.slider-dots span:hover::before {
    width: 20px;
    height: 20px;
}

.slider-dots span.active {
    background: #fff;
    width: 15px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

/* Badge update */
.hero-badge {
    margin-bottom: 10px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}