/* ===================================================================
   QUINIELA 2026 – MODERN DESIGN SYSTEM
   style_home.css – Landing, Auth, Layout
   =================================================================== */

/* =========== VARIABLES =========== */
:root {
    --q-primary: #6366F1;
    --q-primary-dark: #4F46E5;
    --q-primary-light: #818CF8;
    --q-secondary: #10B981;
    --q-secondary-dark: #059669;
    --q-accent: #F59E0B;
    --q-accent-light: #FCD34D;
    --q-dark: #1E293B;
    --q-dark-2: #334155;
    --q-dark-3: #475569;
    --q-text: #334155;
    --q-text-muted: #64748B;
    --q-text-light: #94A3B8;
    --q-bg: #F8FAFC;
    --q-bg-2: #F1F5F9;
    --q-bg-3: #E2E8F0;
    --q-white: #FFFFFF;
    --q-border: #E2E8F0;
    --q-danger: #EF4444;
    --q-danger-dark: #DC2626;
    --q-radius-sm: 8px;
    --q-radius: 12px;
    --q-radius-lg: 16px;
    --q-radius-xl: 20px;
    --q-radius-full: 9999px;
    --q-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --q-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --q-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --q-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --q-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --q-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --q-transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========== BASE =========== */
html,
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--q-bg);
    color: var(--q-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    padding-top: 80px;
}

#app.app-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1 1 auto;
}


/* ######################## NAVBAR – PREMIUM SAAS DESIGN ######################### */
.navbar-collapse {
    visibility: visible !important;
}

.navbar-mundial {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.85); /* Sleek slate-900 transparent */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 0.6rem 0;
    transition: var(--q-transition);
}

.navbar-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.3));
    transition: var(--q-transition);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-mundial .navbar-brand {
    transition: var(--q-transition);
}

.navbar-mundial .navbar-brand span {
    font-size: 1.25rem;
    font-weight: 800 !important;
    letter-spacing: 0.8px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Nav links in Pill glassmorphic style */
.navbar-mundial .nav-link-modern {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75) !important;
    background: transparent;
    padding: 8px 16px !important;
    border-radius: var(--q-radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.navbar-mundial .nav-link-modern:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.navbar-mundial .nav-link-modern.active-link {
    color: #ffffff !important;
    background: rgba(99, 102, 241, 0.16);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.navbar-mundial .nav-link-modern.active-link i {
    color: var(--q-primary-light) !important;
    transform: scale(1.1);
}

.navbar-mundial .nav-link-modern .nav-icon {
    font-size: 0.88rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    transition: var(--q-transition);
}

.navbar-mundial .nav-link-modern:hover .nav-icon {
    transform: translateY(-1px);
}

.nav-avatar-img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-right: 2px;
}

.navbar-mundial .nav-link-modern:hover .nav-avatar-img {
    border-color: var(--q-primary-light, #818CF8);
    transform: scale(1.1);
}

/* NAVBAR BUTTONS */
.btn-navbar-logout,
.btn-navbar-register,
.btn-navbar-login {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    padding: 8px 18px !important;
    border-radius: var(--q-radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-navbar-logout .nav-icon,
.btn-navbar-register .nav-icon,
.btn-navbar-login .nav-icon {
    font-size: 0.88rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.btn-navbar-register {
    background: linear-gradient(135deg, var(--q-secondary), var(--q-secondary-dark)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.btn-navbar-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    background: linear-gradient(135deg, #10b981, #059669) !important;
    filter: brightness(1.05);
}

.btn-navbar-login {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1.5px solid var(--q-accent) !important;
    color: var(--q-accent) !important;
}

.btn-navbar-login:hover {
    background: var(--q-accent) !important;
    color: var(--q-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-navbar-logout {
    background: rgba(239, 68, 68, 0.05) !important;
    border: 1.5px solid var(--q-danger) !important;
    color: var(--q-danger) !important;
}

.btn-navbar-logout:hover {
    background: var(--q-danger) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.nav-item-action {
    margin-top: 0;
}

/* CUSTOM NAVBAR TOGGLER (HAMBURGER TO X EFFECT) */
.custom-navbar-toggler {
    border: none !important;
    background: transparent !important;
    width: 44px;
    height: 38px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    border-radius: var(--q-radius-sm);
    transition: var(--q-transition);
}

.custom-navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.05);
}

.custom-navbar-toggler .toggler-icon {
    position: absolute;
    left: 11px;
    width: 22px;
    height: 2px;
    background-color: #ffffff !important;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-navbar-toggler .top-bar {
    top: 13px;
}

.custom-navbar-toggler .middle-bar {
    top: 18px;
}

.custom-navbar-toggler .bottom-bar {
    top: 23px;
}

.custom-navbar-toggler:not(.collapsed) .top-bar {
    transform: rotate(45deg);
    top: 18px;
}

.custom-navbar-toggler:not(.collapsed) .middle-bar {
    opacity: 0;
    width: 0;
    left: 22px;
}

.custom-navbar-toggler:not(.collapsed) .bottom-bar {
    transform: rotate(-45deg);
    top: 18px;
}

/* ===== RESPONSIVE NAVBAR ===== */
@media (min-width: 1200px) and (max-width: 1380px) {
    .navbar-mundial .nav-link-modern {
        padding: 8px 10px !important;
        font-size: 0.85rem;
        gap: 6px;
    }
    .btn-navbar-logout,
    .btn-navbar-register,
    .btn-navbar-login {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
        gap: 6px;
    }
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        background: rgba(15, 23, 42, 0.95) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: var(--q-radius-xl) !important;
        padding: 20px !important;
        margin-top: 15px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-mundial .navbar-nav {
        padding: 0.5rem 0 !important;
        gap: 8px !important;
    }

    .navbar-mundial .nav-link-modern {
        display: flex !important;
        justify-content: flex-start !important;
        padding: 12px 20px !important;
        border-radius: var(--q-radius-lg) !important;
        width: 100%;
        background: rgba(255, 255, 255, 0.02);
    }

    .navbar-mundial .nav-link-modern:hover {
        background: rgba(255, 255, 255, 0.06) !important;
    }

    .navbar-mundial .nav-link-modern.active-link {
        background: rgba(99, 102, 241, 0.15) !important;
        border-color: rgba(99, 102, 241, 0.3) !important;
    }

    /* Botones centrados en mobile */
    .nav-item-action {
        margin-top: 4px;
        width: 100%;
        text-align: center;
    }

    .btn-navbar-logout,
    .btn-navbar-register,
    .btn-navbar-login {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 12px !important;
    }
}

/* ===== FOOTER SOCIAL ICONS ===== */
.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--q-transition);
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Brand colors on hover */
.footer-social a[aria-label="Facebook"]:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

.footer-social a[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
    border-color: transparent;
    color: #fff;
}

.footer-social a[aria-label="TikTok"]:hover {
    background: #010101;
    border-color: #25F4EE;
    color: #fff;
    box-shadow: 0 0 15px rgba(37, 244, 238, 0.3);
}


/* LinkedIn */
.footer-social a[aria-label="LinkedIn"]:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: #fff;
}

/* WhatsApp */
.footer-social a[aria-label="WhatsApp"]:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.35);
}

@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--q-transition-fast);
}

.footer-links a:hover {
    color: var(--q-primary-light);
}



/* ##################### SPONSORS ############################ */
.sponsors-section {
    background: var(--q-bg);
    padding: 3rem 0;
}

.sponsors-box {
    background: var(--q-white);
    border-radius: var(--q-radius-xl);
    padding: 26px 0;
    box-shadow: var(--q-shadow-md);
    border: 1px solid var(--q-border);
    position: relative;
}

.sponsors-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 10px 70px;
}

.sponsor-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
}

.sponsor-logo img {
    max-height: 100%;
    max-width: 150px;
    width: auto;
    object-fit: contain;
    transition: var(--q-transition);
}

.sponsor-logo img:hover {
    transform: scale(1.1);
}

.sponsor-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--q-white);
    border: 1px solid var(--q-border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    box-shadow: var(--q-shadow);
    z-index: 10;
    color: var(--q-text);
    transition: var(--q-transition);
}

.sponsor-arrow.left {
    left: -10px;
}

.sponsor-arrow.right {
    right: -10px;
}

.sponsor-arrow:hover {
    background: var(--q-primary);
    color: #fff;
    border-color: var(--q-primary);
    box-shadow: var(--q-shadow-md);
}

@media (max-width: 768px) {
    .sponsors-carousel {
        gap: 32px;
        padding: 10px 50px;
    }

    .sponsor-logo {
        height: 52px;
    }

    .sponsor-logo img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .sponsors-carousel {
        gap: 26px;
        padding: 10px 45px;
    }

    .sponsor-logo {
        height: 48px;
    }

    .sponsor-logo img {
        max-width: 100px;
    }
}



/* ##################### ALIADOS COMERCIALES ############## */
.section-carousel {
    background: var(--q-bg);
    padding: 3rem 0;
    border-top: none;
}

.ads-carousel-wrapper {
    max-width: 1320px;
    margin: 0 auto;
}

.ad-card {
    position: relative;
    width: 100%;
    border-radius: var(--q-radius-xl);
    overflow: hidden;
    background: var(--q-dark);
    box-shadow: var(--q-shadow-lg);
}

.ad-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ad-card:hover img {
    transform: scale(1.03);
}

.ad-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.5rem;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0));
    color: #fff;
    text-align: center;
}

.ad-overlay h5 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
}

.ad-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.ad-overlay .btn {
    font-size: 0.75rem;
    padding: 0.4rem 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--q-radius-full);
    transition: var(--q-transition);
    backdrop-filter: blur(4px);
}

.ad-overlay .btn:hover {
    background-color: #fff;
    color: var(--q-dark);
}

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
}

@media (max-width: 768px) {
    .ad-card {
        border-radius: var(--q-radius-lg);
    }

    .ad-overlay {
        padding: 1.6rem;
    }

    .ad-overlay h5 {
        font-size: 1.25rem;
    }
}


/* ######################### HERO ##################### */
.hero-section {
    min-height: 85vh;
    background:
        linear-gradient(135deg, rgba(30, 41, 59, 0.65), rgba(99, 102, 241, 0.3)),
        url('../../img/inicio/stadium2.png') center/cover no-repeat;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--q-bg), transparent);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-section h2 {
    font-weight: 700;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.hero-section .btn-success {
    background: linear-gradient(135deg, var(--q-secondary), var(--q-secondary-dark));
    border: none;
    border-radius: var(--q-radius-full);
    padding: 0.9rem 2.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
    transition: var(--q-transition);
}

.hero-section .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.45);
}

.card img {
    height: 180px;
    object-fit: cover;
}


/* ######################### COUNTDOWN ##################### */
.countdown-section {
    background: var(--q-bg);
    padding: 4rem 0 3.5rem;
    position: relative;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--q-border), transparent);
}

.countdown-section h3 {
    letter-spacing: 2px;
    color: var(--q-dark);
    font-weight: 800;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.time-box {
    background: var(--q-white);
    border-radius: var(--q-radius-lg);
    width: 120px;
    padding: 1.4rem 0.5rem;
    box-shadow: var(--q-shadow-md);
    border: 1px solid var(--q-border);
    transition: var(--q-transition);
}

.time-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--q-shadow-lg);
    border-color: var(--q-primary-light);
}

.time-box span {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--q-primary), var(--q-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.time-box small {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--q-text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .time-box {
        width: 95px;
    }

    .time-box span {
        font-size: 1.8rem;
    }
}


/* ######################### FOOTER ##################### */
.footer {
    background: linear-gradient(135deg, var(--q-dark), #0F172A);
    color: rgba(255, 255, 255, 0.85);
    padding: 2rem 0 1.5rem;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand strong {
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #fff;
}

.footer-brand-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.footer-brand-title strong {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-brand-title img {
    transition: transform .2s ease;
}

.footer-brand-title img:hover {
    transform: scale(1.08);
}

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 4px 0 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--q-transition-fast);
}

.footer-links a:hover {
    color: var(--q-primary-light);
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}


/* ######################### REGISTRO ##################### */
.bg-quiniela {
    background: linear-gradient(135deg, var(--q-bg), var(--q-bg-2));
}

.card-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--q-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--q-shadow-lg);
}

.gradient-title {
    background: linear-gradient(135deg, var(--q-primary), var(--q-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* PILLS */
.custom-pills .nav-link {
    border-radius: var(--q-radius-full);
    padding: 10px 28px;
    font-weight: 600;
    color: var(--q-text-muted);
    border: 2px solid transparent;
    transition: var(--q-transition);
}

.custom-pills .nav-link:hover {
    background: var(--q-bg-2);
    color: var(--q-primary);
}

.custom-pills .nav-link.active {
    background: linear-gradient(135deg, var(--q-primary), var(--q-primary-dark));
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* FORM */
.form-control {
    border-radius: var(--q-radius);
    border: 1.5px solid var(--q-border);
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    transition: var(--q-transition);
    background: var(--q-white);
}

.form-control:focus {
    border-color: var(--q-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--q-text);
    margin-bottom: 0.4rem;
}

/* INFO CARD */
.card-info {
    border-radius: var(--q-radius-xl);
    overflow: hidden;
    background: linear-gradient(160deg, var(--q-primary), var(--q-primary-dark));
    border: none;
}

.hero-text span {
    font-size: 0.9rem;
    opacity: 0.85;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--q-accent-light);
}

.tip-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: var(--q-radius);
    border-left: 4px solid var(--q-accent);
    backdrop-filter: blur(4px);
}

.card-glass,
.card-info {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-glass .card-body,
.card-info .card-body {
    flex: 1;
}

/* HERO CARD INFO */
.card-hero {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hero:hover img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.65));
}

.hero-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
}

.hero-text h3 {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.5px;
}


/* ###################### LOGIN ########################## */
.q26-login-section {
    background: linear-gradient(135deg, var(--q-bg), var(--q-bg-2));
}

.q26-login-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--q-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--q-shadow-lg);
}

.q26-login-title {
    font-weight: 800;
    background: linear-gradient(135deg, var(--q-primary), var(--q-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.q26-login-input {
    border-radius: var(--q-radius);
    border: 1.5px solid var(--q-border);
}

.q26-login-input:focus {
    border-color: var(--q-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

/* BOTÓN LOGIN */
.q26-login-btn {
    background: linear-gradient(135deg, var(--q-primary), var(--q-primary-dark));
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--q-radius-full);
    padding: 0.9rem 2.8rem;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--q-transition);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.q26-login-btn span {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.q26-login-btn:hover,
.q26-login-btn:focus {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--q-primary-light), var(--q-primary));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* efecto luz */
.q26-login-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    z-index: 1;
}

.q26-login-btn:hover::before {
    left: 125%;
    transition: left 0.6s ease;
}

/* INFO CARD LOGIN */
.q26-info-body {
    position: relative;
    z-index: 2;
}

.q26-info-body::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 100% 38px;
    z-index: 0;
}

.q26-info-body::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 64px;
    background-position: 0 20px;
    z-index: 0;
}

.q26-info-body>* {
    position: relative;
    z-index: 1;
}

.q26-info-card {
    position: relative;
    border-radius: var(--q-radius-xl);
    overflow: hidden;
    border: none;
    background: linear-gradient(160deg,
            var(--q-primary-dark) 0%,
            var(--q-primary) 45%,
            var(--q-dark) 100%);
}

.q26-info-hero {
    position: relative;
    height: 220px;
}

.q26-info-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.q26-info-hero:hover img {
    transform: scale(1.05);
}

.q26-info-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.7));
}

.q26-info-text {
    position: absolute;
    bottom: 20px;
    left: 24px;
    color: #fff;
}

.q26-info-text h3 {
    margin: 0;
    font-weight: 800;
    letter-spacing: 1px;
}

.q26-info-text span {
    font-size: 0.9rem;
    opacity: 0.85;
}

.q26-info-list {
    list-style: none;
    padding: 0;
}

.q26-info-list li {
    margin-bottom: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.q26-info-tip {
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--q-accent);
    padding: 16px 20px;
    border-radius: var(--q-radius);
    backdrop-filter: blur(4px);
}

.q26-info-card img {
    height: 100% !important;
    object-fit: cover;
}



















































/* =================================================================
   EVENTOS SECTION – PREMIUM DESIGN
   ================================================================= */

.eventos-section {
    background: var(--q-bg);
    padding: 3rem 0 4rem;
    min-height: 60vh;
}

/* ===== HEADER ===== */
.eventos-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--q-border);
}

.eventos-header-content {
    flex: 1;
}

.eventos-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--q-dark);
    margin: 0 0 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: -0.5px;
}

.eventos-title i {
    background: linear-gradient(135deg, var(--q-primary), var(--q-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
}

.eventos-subtitle {
    color: var(--q-text-muted);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

/* ===== FILTER BAR ===== */
.eventos-filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.eventos-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1.2rem;
    border-radius: var(--q-radius-full);
    border: 1.5px solid var(--q-border);
    background: var(--q-white);
    color: var(--q-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--q-transition);
    white-space: nowrap;
}

.eventos-filter-btn:hover {
    border-color: var(--q-primary-light);
    color: var(--q-primary);
    background: rgba(99, 102, 241, 0.04);
}

.eventos-filter-btn.active {
    background: linear-gradient(135deg, var(--q-primary), var(--q-primary-dark));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.eventos-filter-btn i {
    font-size: 0.75rem;
}

/* ===== GRID ===== */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.8rem;
}

/* ===== CARD ===== */
.evento-card {
    background: var(--q-white);
    border-radius: var(--q-radius-xl);
    overflow: hidden;
    border: 1px solid var(--q-border);
    box-shadow: var(--q-shadow-sm);
    transition: var(--q-transition);
    position: relative;
    display: flex;
    flex-direction: column;
    animation: eventoFadeIn 0.5s both;
}

.evento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--q-shadow-lg);
    border-color: rgba(99, 102, 241, 0.15);
}

/* ===== CARD MEDIA ===== */
.evento-card-media {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--q-dark-2), var(--q-dark));
}

.evento-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.evento-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--q-bg-2), var(--q-bg-3));
}

.evento-card-placeholder i {
    font-size: 3rem;
    color: var(--q-text-light);
    opacity: 0.5;
}

.evento-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 40%,
            rgba(0, 0, 0, 0.08) 100%);
    pointer-events: none;
}

/* ===== BADGE ===== */
.evento-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.3rem 0.85rem;
    border-radius: var(--q-radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.evento-badge i {
    font-size: 0.62rem;
}

.evento-badge-privado {
    background: rgba(245, 158, 11, 0.9);
    color: #fff;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.35);
}

.evento-badge-publico {
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.35);
}

/* ===== CARD BODY ===== */
.evento-card-body {
    padding: 1.4rem 1.5rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ===== FECHA ===== */
.evento-fecha {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
}

.evento-fecha-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--q-radius);
    background: linear-gradient(135deg, var(--q-primary), var(--q-primary-dark));
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(99, 102, 241, 0.25);
}

.evento-fecha-dia {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
}

.evento-fecha-mes {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.9;
    line-height: 1;
    margin-top: 2px;
}

.evento-fecha-full {
    font-size: 0.82rem;
    color: var(--q-text-muted);
    font-weight: 500;
}

/* ===== TITULO ===== */
.evento-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--q-dark);
    margin: 0 0 0.5rem;
    line-height: 1.35;
    letter-spacing: -0.3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== DESCRIPCIÓN ===== */
.evento-card-desc {
    font-size: 0.88rem;
    color: var(--q-text-muted);
    line-height: 1.6;
    margin: 0 0 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== CARD FOOTER ===== */
.evento-card-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--q-border);
    margin-top: auto;
    flex-wrap: wrap;
}

.evento-location {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--q-text-muted);
    font-weight: 500;
    min-width: 0;
    flex: 1;
}

.evento-location i {
    color: var(--q-danger);
    font-size: 0.82rem;
    flex-shrink: 0;
}

.evento-location span {
    word-break: break-word;
    line-height: 1.4;
}

/* ===== GOOGLE MAPS BTN ===== */
.evento-maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.9rem;
    border-radius: var(--q-radius-full);
    background: rgba(66, 133, 244, 0.08);
    border: 1px solid rgba(66, 133, 244, 0.2);
    color: #4285f4;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--q-transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.evento-maps-btn:hover {
    background: rgba(66, 133, 244, 0.15);
    border-color: rgba(66, 133, 244, 0.4);
    color: #1a73e8;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(66, 133, 244, 0.15);
}

.evento-maps-btn svg {
    flex-shrink: 0;
}

/* ===== EXPAND BTN ===== */
.evento-expand-btn {
    position: absolute;
    bottom: 12px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.3rem 0.75rem;
    border-radius: var(--q-radius-full);
    background: var(--q-bg-2);
    border: 1px solid var(--q-border);
    color: var(--q-primary);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--q-transition);
    opacity: 0;
    transform: translateY(4px);
}

.evento-card:hover .evento-expand-btn {
    opacity: 1;
    transform: translateY(0);
}

.evento-expand-btn:hover {
    background: var(--q-primary);
    border-color: var(--q-primary);
    color: #fff;
}

.evento-expand-btn i {
    font-size: 0.65rem;
}

/* ===== EMPTY STATE ===== */
.eventos-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.eventos-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--q-bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.eventos-empty-icon i {
    font-size: 2rem;
    color: var(--q-text-light);
}

.eventos-empty h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--q-dark);
    margin: 0 0 0.5rem;
}

.eventos-empty p {
    font-size: 0.92rem;
    color: var(--q-text-muted);
    margin: 0;
}

/* ===== MODAL ===== */
.evento-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.evento-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.evento-modal {
    background: var(--q-white);
    border-radius: var(--q-radius-xl);
    max-width: 560px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem 2.2rem;
    position: relative;
    box-shadow: var(--q-shadow-xl);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.evento-modal-overlay.active .evento-modal {
    transform: translateY(0) scale(1);
}

.evento-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--q-bg-2);
    color: var(--q-text-muted);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--q-transition);
}

.evento-modal-close:hover {
    background: var(--q-danger);
    color: #fff;
}

.evento-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--q-dark);
    margin: 0 0 1.2rem;
    padding-right: 2.5rem;
    line-height: 1.4;
}

.evento-modal-body {
    font-size: 0.92rem;
    color: var(--q-text);
    line-height: 1.75;
}

/* ===== ANIMATIONS ===== */
@keyframes eventoFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes eventoFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .eventos-section {
        padding: 2rem 0 3rem;
    }

    .eventos-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .eventos-title {
        font-size: 1.6rem;
    }

    .eventos-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .evento-card-media {
        height: 190px;
    }

    .evento-expand-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .evento-modal {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .eventos-filter-bar {
        width: 100%;
    }

    .eventos-filter-btn {
        flex: 1;
        justify-content: center;
        padding: 0.55rem 0.8rem;
        font-size: 0.78rem;
    }

    .evento-card-media {
        height: 170px;
    }

    .evento-card-body {
        padding: 1.1rem 1.2rem 1rem;
    }
}

/* ===== ZOOM HINT EN IMAGEN ===== */
.evento-img-clickable {
    cursor: pointer;
}

.evento-zoom-hint {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--q-transition);
    z-index: 3;
    pointer-events: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.evento-card:hover .evento-zoom-hint {
    opacity: 1;
    transform: scale(1);
}

/* ===== LIGHTBOX ===== */
.evento-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.evento-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.evento-lightbox-content {
    max-width: 90vw;
    max-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.evento-lightbox-content img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: var(--q-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.evento-lightbox.active .evento-lightbox-content img {
    transform: scale(1);
}

.evento-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--q-transition);
    z-index: 10001;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.evento-lightbox-close:hover {
    background: rgba(239, 68, 68, 0.8);
    border-color: transparent;
    transform: rotate(90deg);
}

.evento-lightbox-caption {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    font-weight: 500;
    text-align: center;
    padding: 0 2rem;
    margin-top: 1rem;
    max-width: 600px;
    letter-spacing: 0.3px;
    order: 2;
}

@media (max-width: 768px) {
    .evento-lightbox-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .evento-lightbox-content img {
        border-radius: var(--q-radius);
    }
}

/* ===================================================================
   ADDITIONAL MODERN & COMPACT STYLES FOR REGISTER & LOGIN
   =================================================================== */

/* Container width limits to prevent huge cards on widescreen */
.container-auth {
    max-width: 900px !important;
    margin: 0 auto;
}

.container-auth-register {
    max-width: 1040px !important;
    margin: 0 auto;
}

.card-body-compact {
    padding: 2.2rem !important;
}

/* INPUT GROUP CUSTOM (FOR COMPACT SAAS LOOK) */
.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-group-custom .input-icon-left {
    position: absolute;
    left: 14px;
    z-index: 10;
    color: var(--q-text-light);
    font-size: 0.9rem;
    transition: var(--q-transition-fast);
    pointer-events: none;
}

.form-control-custom {
    padding: 0.62rem 1rem 0.62rem 42px !important;
    background: rgba(255, 255, 255, 0.75) !important;
    border: 1.5px solid var(--q-border) !important;
    border-radius: var(--q-radius) !important;
    color: var(--q-dark) !important;
    font-size: 0.9rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.form-control-custom:focus {
    background: #ffffff !important;
    border-color: var(--q-primary) !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12) !important;
}

.input-group-custom:focus-within .input-icon-left {
    color: var(--q-primary);
    transform: scale(1.05);
}

.form-control-custom.is-invalid {
    border-color: var(--q-danger) !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12) !important;
}

.form-control-custom.is-invalid ~ .input-icon-left {
    color: var(--q-danger);
}

/* COMPACT FEATURE BADGES */
.feature-badge-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0 0 20px 0;
    list-style: none;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 14px;
    border-radius: var(--q-radius);
    transition: var(--q-transition);
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.feature-badge .badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.bg-info-soft {
    background: rgba(56, 189, 248, 0.15) !important;
}
.text-info {
    color: #38bdf8 !important;
}

.bg-warning-soft {
    background: rgba(253, 224, 71, 0.15) !important;
}
.text-warning {
    color: #fde047 !important;
}

.bg-success-soft {
    background: rgba(74, 222, 128, 0.15) !important;
}
.text-success {
    color: #4ade80 !important;
}

.feature-badge .badge-text {
    font-weight: 600;
    font-size: 0.88rem;
    color: #f1f5f9;
}

/* DECORATORS & HIGHLIGHTS */
.glowing-bg-decorator {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
    z-index: 1;
}

.q26-info-tip {
    background: rgba(255, 255, 255, 0.06);
    border-left: 4px solid var(--q-accent);
    padding: 1rem !important;
    border-radius: var(--q-radius);
    backdrop-filter: blur(4px);
}

/* COMPACT HERO SECTION HEIGHT */
.q26-info-hero, .card-hero {
    position: relative;
    height: 165px !important;
    overflow: hidden;
}

.q26-info-hero img, .card-hero img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.q26-info-hero:hover img, .card-hero:hover img {
    transform: scale(1.05);
}

/* CARDS CONFIG */
.tab-glass-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--q-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.card-info-premium {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #0f172a 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
}

/* PROFILE BANNER WIDGET STYLES (ELITE LUXURY WORLD CUP THEMED) */
.profile-alert-section {
    background: #f8fafc !important;
    padding: 28px 0;
    position: relative;
    overflow: hidden;
}

.profile-banner-link {
    display: block;
    outline: none;
    text-decoration: none !important;
}

/* Hairline gradient borders card (frosted white glass) */
.profile-banner-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    position: relative;
    border: 1px solid transparent !important;
    background-image: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), 
                      linear-gradient(135deg, #EF4444 0%, #10B981 50%, #3B82F6 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.05), 
                0 5px 15px -3px rgba(15, 23, 42, 0.03) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    cursor: pointer;
}

.profile-banner-card:hover {
    transform: translateY(-4px) scale(1.005);
    box-shadow: 0 25px 45px -10px rgba(15, 23, 42, 0.12), 
                0 0 20px rgba(59, 130, 246, 0.08) !important;
}

/* Luxury backdrops ambient glow of World Cup host countries */
.profile-glow-ambient {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
    transition: all 0.6s ease;
}

.profile-glow-ambient.red {
    background: #EF4444;
    top: -120px;
    left: -50px;
}

.profile-glow-ambient.green {
    background: #10B981;
    bottom: -120px;
    left: 40%;
}

.profile-glow-ambient.blue {
    background: #3B82F6;
    top: -120px;
    right: -50px;
}

.profile-banner-card:hover .profile-glow-ambient {
    opacity: 0.08;
    transform: scale(1.1);
}

.profile-banner-inner {
    z-index: 2;
}

/* Category Badge (SaaS indicator) */
.profile-badge-category {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.08);
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    display: inline-block;
    box-shadow: 0 1px 2px rgba(59, 130, 246, 0.05);
}

/* Typography styles */
.profile-banner-title {
    color: #0f172a;
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.3px;
}

.profile-banner-text {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Profile Avatar Stacked Overlapping Previews */
.profile-avatars-stacked-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 120px;
    position: relative;
}

.avatar-stacked-item {
    position: absolute;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.avatar-stacked-item.player {
    left: 12px;
    z-index: 2;
}

.avatar-stacked-item.flag {
    right: 12px;
    z-index: 3;
    transform: translateY(12px);
}

.profile-banner-card:hover .avatar-stacked-item.player {
    transform: translate(-16px, -8px) rotate(-12deg) scale(1.05);
}

.profile-banner-card:hover .avatar-stacked-item.flag {
    transform: translate(16px, 20px) rotate(12deg) scale(1.05);
}

.profile-banner-avatar-img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 3;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
    background: #ffffff;
}

.avatar-border-gradient {
    position: relative;
    border-radius: 50%;
    padding: 2.5px;
    background: linear-gradient(135deg, #EF4444 0%, #10B981 50%, #3B82F6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.avatar-multicolor-glow {
    position: absolute;
    width: 154px;
    height: 154px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    filter: blur(16px);
    z-index: 1;
    pointer-events: none;
}

.profile-banner-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    z-index: 3;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
    background: #0f172a;
    border: 4px solid #ffffff;
}

.profile-banner-mini-flag {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #EF4444;
    color: #ffffff;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    z-index: 4;
}

/* Button Luxury SaaS styling */
.btn-banner-luxury {
    background: #0f172a;
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.profile-banner-card:hover .btn-banner-luxury {
    background: #1e293b;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.22);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-banner-luxury-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.profile-banner-card:hover .btn-banner-luxury-icon {
    transform: translateX(4px);
}

/* Animations */
@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 1; }
}

.animate-pulse-glow {
    animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.animate-bounce {
    animation: bounce-gentle 2.5s infinite ease-in-out;
}

/* First time login dynamic modal */
.first-time-welcome-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    animation: welcomeFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.first-time-welcome-backdrop.hide {
    animation: welcomeFadeOut 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.welcome-modal-card {
    width: 90%;
    max-width: 580px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    transform: scale(0.9) translateY(40px);
    animation: welcomeScaleUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

.first-time-welcome-backdrop.hide .welcome-modal-card {
    animation: welcomeScaleDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Glowing backdrops */
.welcome-glow-ambient {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
.welcome-glow-ambient.red {
    background: #EF4444;
    top: 10%;
    left: 10%;
}
.welcome-glow-ambient.green {
    background: #10B981;
    bottom: 10%;
    right: 15%;
}
.welcome-glow-ambient.blue {
    background: #3B82F6;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Confetti particles styled dynamically */
.welcome-confetti-particle {
    position: absolute;
    width: 8px;
    height: 16px;
    border-radius: 3px;
    opacity: 0.85;
    animation: confettiFall 4s linear infinite;
    pointer-events: none;
}
.welcome-confetti-particle.p1  { background: #EF4444; left: 10%; top: -20px; animation-delay: 0s; }
.welcome-confetti-particle.p2  { background: #10B981; left: 25%; top: -20px; animation-delay: 1.2s; }
.welcome-confetti-particle.p3  { background: #3B82F6; left: 40%; top: -20px; animation-delay: 0.5s; }
.welcome-confetti-particle.p4  { background: #F59E0B; left: 55%; top: -20px; animation-delay: 2.1s; }
.welcome-confetti-particle.p5  { background: #EC4899; left: 70%; top: -20px; animation-delay: 0.8s; }
.welcome-confetti-particle.p6  { background: #10B981; left: 85%; top: -20px; animation-delay: 1.6s; }
.welcome-confetti-particle.p7  { background: #EF4444; left: 20%; top: -20px; animation-delay: 2.5s; }
.welcome-confetti-particle.p8  { background: #3B82F6; left: 65%; top: -20px; animation-delay: 3s; }
.welcome-confetti-particle.p9  { background: #F59E0B; left: 80%; top: -20px; animation-delay: 0.2s; }
.welcome-confetti-particle.p10 { background: #EC4899; left: 45%; top: -20px; animation-delay: 1.9s; }

@keyframes confettiFall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(600px) rotate(360deg);
        opacity: 0;
    }
}

/* Trophy animation */
.welcome-trophy-container {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-trophy-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, transparent 70%);
    filter: blur(8px);
    z-index: 1;
}

.welcome-trophy-inner-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    font-size: 2.3rem;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
    border: 3px solid #ffffff;
}

.welcome-badge {
    font-size: 0.70rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.08);
    padding: 6px 16px;
    border-radius: 999px;
    text-transform: uppercase;
}

.welcome-title {
    color: #0f172a;
    font-weight: 800;
    font-size: 1.95rem;
    letter-spacing: -0.5px;
}

.welcome-text {
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.7;
    font-weight: 500;
}

.btn-welcome-primary {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff !important;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}
.btn-welcome-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2) !important;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.btn-welcome-secondary {
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a !important;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-welcome-secondary:hover {
    background: rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

/* Animations declarations */
@keyframes welcomeFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes welcomeFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
@keyframes welcomeScaleUp {
    from { transform: scale(0.9) translateY(40px); }
    to { transform: scale(1) translateY(0); }
}
@keyframes welcomeScaleDown {
    from { transform: scale(1) translateY(0); }
    to { transform: scale(0.9) translateY(40px); }
}