/* ============================================
   KRACK5 - ESTILOS COMPLETOS
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0A0F1C 0%, #0D1B2A 100%);
    color: #FFFFFF;
    overflow-x: hidden;
}

/* ============================================
   LOGO STYLES - NUEVOS ESTILOS PARA KRACK EN BLANCO Y 5 EN VERDE
   ============================================ */

.logo {
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 800;
    flex-shrink: 0;
}


.logo-krack {
    color: #FFFFFF;
    font-weight: 800;
}

.logo-5 {
    color: #10B981;
    font-weight: 800;
    font-size: 2.7rem;
}

/* Logo en animación para pantallas de auth */
.logo-animation {
    display: flex;
    align-items: center;
}


.logo-animation .logo-krack {
    font-size: 2rem;
    color: #FFFFFF;
}

.logo-animation .logo-5 {
    font-size: 2rem;
    color: #10B981;
}

/* ============================================
   LANDING PAGE STYLES
   ============================================ */

.landing-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0A0F1C 0%, #0D1B2A 100%);
    color: #FFFFFF;
}

/* Navbar */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    gap: 1rem;
}

/* Botón hamburguesa */
.menu-hamburger {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    order: 2;
    z-index: 100;
}

.menu-hamburger:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin: 0 auto;
}

.nav-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #10B981;
}

/* Desktop: mostrar ambos (nav-links Y botón hamburguesa) */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
    }
    .menu-hamburger {
        display: flex !important;
    }
}

/* Móvil: ocultar nav-links, mantener hamburguesa */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    .menu-hamburger {
        display: flex !important;
        margin-left: auto;
    }
    .nav-container {
        padding: 0.75rem 1rem;
    }
    .logo {
        font-size: 1.4rem;
    }
    .logo i {
        font-size: 1.6rem;
    }
    .logo-krack, .logo-5 {
        font-size: 1.4rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,15,28,0.85), rgba(13,27,42,0.92));
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(16,185,129,0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16,185,129,0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #10B981, #2DD4BF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    color: #94A3B8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10B981;
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748B;
}

.hero-image {
    position: relative;
    min-height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(13, 27, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.floating-card i {
    color: #10B981;
    font-size: 1.2rem;
}

.floating-card span {
    font-size: 0.75rem;
    color: #94A3B8;
}

.floating-card strong {
    font-size: 0.875rem;
}

.card-1 {
    top: 10%;
    left: -20px;
}

.card-2 {
    top: 50%;
    right: -20px;
}

.card-3 {
    bottom: 10%;
    left: 10%;
}

.hero-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: background-image 0.5s ease;
}

.hero-illustration.has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-illustration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(10,15,28,0.7));
    z-index: 1;
}

.hero-illustration::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 8s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.illustration-placeholder {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(13,27,42,0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.illustration-placeholder i {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 1rem;
    display: block;
}

.illustration-placeholder span {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.illustration-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 30%, rgba(10,15,28,0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .floating-card {
        display: none;
    }
    .hero-illustration {
        min-height: 300px;
    }
    .illustration-placeholder {
        padding: 1rem;
    }
    .illustration-placeholder i {
        font-size: 2.5rem;
    }
}

/* Features Section */
.features-section {
    padding: 5rem 2rem;
    background: rgba(255,255,255,0.02);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: rgba(16,185,129,0.1);
    color: #10B981;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: #94A3B8;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16,185,129,0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(16,185,129,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #10B981;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: #94A3B8;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 5rem 2rem;
    background: rgba(255,255,255,0.02);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.step {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

.step-icon {
    font-size: 2.5rem;
    color: #10B981;
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    color: #94A3B8;
    font-size: 0.875rem;
}

.step-arrow {
    color: #10B981;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .step-arrow {
        transform: rotate(90deg);
    }
    .steps-container {
        flex-direction: column;
    }
    .step {
        width: 100%;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: rgba(255,255,255,0.02);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1rem;
    max-height: 200px;
}

.faq-answer p {
    color: #94A3B8;
    line-height: 1.6;
}

/* Footer */
.landing-footer {
    background: #0A0F1C;
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: #94A3B8;
    margin: 1rem 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #94A3B8;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #10B981;
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: #94A3B8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: #10B981;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #64748B;
    font-size: 0.875rem;
}

/* ============================================
   AUTH SCREENS (LOGIN & REGISTER)
   ============================================ */

.auth-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.auth-brand-side {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #0D1B2A, #1B263B);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.brand-content {
    position: relative;
    z-index: 2;
    max-width: 450px;
}

.brand-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.brand-content p {
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: #10B981;
    font-size: 1.2rem;
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(16,185,129,0.1), transparent);
    pointer-events: none;
}

.auth-form-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(10, 15, 28, 0.5);
}

.login-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    max-width: 450px;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #94A3B8;
}

.input-group {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s;
}

.input-group i {
    color: #64748B;
    margin-right: 12px;
}

.input-group input, .input-group textarea {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.input-group input::placeholder, .input-group textarea::placeholder {
    color: #64748B;
}

.input-group:focus-within {
    border-color: #10B981;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94A3B8;
    cursor: pointer;
}

.forgot-password {
    color: #10B981;
    text-decoration: none;
    font-size: 0.875rem;
}

.btn-login {
    width: 100%;
    background: linear-gradient(135deg, #10B981, #059669);
    border: none;
    color: white;
    padding: 0.875rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-login:hover {
    transform: translateY(-2px);
}

.error-message {
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 1rem;
    text-align: center;
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #94A3B8;
}

.login-footer a {
    color: #10B981;
    text-decoration: none;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    color: #64748B;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .auth-layout {
        flex-direction: column;
    }
    .auth-brand-side {
        display: none;
    }
    .auth-form-side {
        padding: 1rem;
    }
    .input-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   APP SHOWCASE CARROUSEL
   ============================================ */

.app-showcase-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0A0F1C 0%, #0D1B2A 100%);
    overflow: hidden;
}

.app-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.app-showcase-text {
    flex: 1;
    min-width: 280px;
}

.app-showcase-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.app-showcase-text > p {
    color: #94A3B8;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-carousel {
    margin-top: 1rem;
}

.carousel-feature {
    display: none;
    animation: fadeIn 0.5s ease;
}

.carousel-feature.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.feature-icon-large {
    width: 60px;
    height: 60px;
    background: rgba(16,185,129,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-large i {
    font-size: 2rem;
    color: #10B981;
}

.carousel-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.carousel-feature p {
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-tag {
    display: inline-block;
    background: rgba(16,185,129,0.1);
    color: #10B981;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
}

.carousel-dots {
    display: flex;
    gap: 12px;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2D3748;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #10B981;
    width: 24px;
    border-radius: 10px;
}

.app-showcase-mockup {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.mockup-phone-single {
    position: relative;
    width: 280px;
    margin: 0 auto;
    background: #1a1a2e;
    border-radius: 42px;
    padding: 16px 8px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5), 0 0 0 8px #2d2d44, 0 0 0 12px #1a1a2e;
}

.phone-notch-single {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 0 0 22px 22px;
    z-index: 10;
}

.phone-notch-single::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 14px;
    background: #0D1B2A;
    border-radius: 20px;
}

.phone-notch-single::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 18px;
    width: 14px;
    height: 14px;
    background: #2d2d44;
    border-radius: 50%;
}

.phone-screen-single {
    background: #0D1B2A;
    border-radius: 34px;
    overflow: hidden;
    height: 560px;
    width: 100%;
    position: relative;
}

.screenshot-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.screenshot-slide.active {
    opacity: 1;
    position: relative;
}

.screenshot-img-single {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phone-home-indicator-single {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 4px;
    background: #4a4a6a;
    border-radius: 4px;
    z-index: 20;
}

@media (max-width: 768px) {
    .app-showcase-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }
    .feature-icon-large {
        margin: 0 auto 1.5rem auto;
    }
    .carousel-dots {
        justify-content: center;
    }
    .mockup-phone-single {
        width: 260px;
    }
    .phone-screen-single {
        height: 520px;
    }
    .app-showcase-text h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   COMPLEJOS DEPORTIVOS
   ============================================ */

.venues-extended-section {
    padding: 2rem 2rem 4rem;
    background: linear-gradient(135deg, #0A0F1C 0%, #0D1B2A 100%);
}

.venues-extended-container {
    max-width: 1200px;
    margin: 0 auto;
}

.venues-extended-header {
    text-align: center;
    margin-bottom: 2rem;
}

.venues-extended-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.venues-extended-header p {
    color: #94A3B8;
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.venues-extended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.venue-card-extended {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s;
}

.venue-card-extended:hover {
    transform: translateY(-3px);
    border-color: rgba(16,185,129,0.3);
    background: rgba(16,185,129,0.02);
}

.venue-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.venue-icon {
    width: 48px;
    height: 48px;
    background: rgba(16,185,129,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-icon i {
    font-size: 1.5rem;
    color: #10B981;
}

.venue-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.venue-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #94A3B8;
}

.venue-detail-item i {
    width: 20px;
    color: #10B981;
    font-size: 0.8rem;
}

.venue-price {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 700;
    color: #10B981;
    font-size: 1rem;
}

.btn-venue {
    background: transparent;
    border: 1px solid rgba(16,185,129,0.3);
    color: #10B981;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-venue:hover {
    background: rgba(16,185,129,0.1);
}

.venues-footer {
    text-align: center;
    margin-top: 2rem;
}

.btn-view-all-venues {
    background: transparent;
    border: 1px solid rgba(16,185,129,0.3);
    color: #10B981;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
}

.btn-view-all-venues:hover {
    background: rgba(16,185,129,0.1);
}

/* Loading Overlay */
#authLoadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0A0F1C 0%, #0D1B2A 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.3s ease;
}

.loading-spinner-large {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(16, 185, 129, 0.2);
    border-top-color: #10B981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 1rem;
    color: #94A3B8;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: #0D1B2A;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal-close {
    background: none;
    border: none;
    color: #94A3B8;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(16,185,129,0.1);
    border-color: #10B981;
}

/* ============================================
   BOTÓN DE DESARROLLO Y FORMULARIO
   ============================================ */

.btn-development-large {
    background: linear-gradient(135deg, #10B981, #059669);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-development-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(16,185,129,0.3);
}

.simple-status-card {
    background: rgba(13, 27, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.simple-status-card i {
    font-size: 1.5rem;
    color: #10B981;
}

.simple-status-card div {
    display: flex;
    flex-direction: column;
}

.simple-status-card strong {
    font-size: 0.85rem;
}

.simple-status-card span {
    font-size: 0.7rem;
    color: #94A3B8;
}

/* Formulario de notificación */
.notify-form {
    margin-top: 1rem;
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    text-align: center;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.badge.inscripcion, .badge.en-juego {
    background: #10B981;
    color: white;
}

.badge.proximamente {
    background: #F59E0B;
    color: white;
}

.badge.finalizado {
    background: #64748B;
    color: white;
}

/* ============================================
   SIDEBAR MÓVIL
   ============================================ */

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #0D1B2A 0%, #1B263B 100%);
    z-index: 1002;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
}

.mobile-sidebar.open {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-sidebar-header .logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-sidebar-header .logo i {
    font-size: 1.8rem;
    color: #10B981;
}

.mobile-sidebar-header .logo .logo-krack,
.mobile-sidebar-header .logo .logo-5 {
    font-size: 1.4rem;
}

.close-sidebar-btn {
    background: none;
    border: none;
    color: #94A3B8;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

.close-sidebar-btn:hover {
    color: #10B981;
}

.mobile-sidebar-nav {
    flex: 1;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
}

.mobile-nav-section {
    margin-bottom: 1rem;
}

.mobile-nav-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748B;
    padding: 12px 16px 8px 16px;
    font-weight: 600;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #94A3B8;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.mobile-nav-item i {
    width: 24px;
    font-size: 1.1rem;
}

.mobile-nav-item:hover {
    background: rgba(16,185,129,0.1);
    color: #10B981;
}

.mobile-nav-item.disabled {
    opacity: 0.7;
}

.mobile-sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.mobile-user-info i {
    font-size: 2rem;
    color: #10B981;
}

.mobile-user-info div {
    flex: 1;
}

.mobile-user-info .user-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.mobile-user-info .user-email {
    font-size: 0.7rem;
    color: #94A3B8;
}

.mobile-logout-btn {
    width: 100%;
    padding: 10px;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 8px;
    color: #EF4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.mobile-logout-btn:hover {
    background: rgba(239,68,68,0.2);
}

.mobile-login-btn, .mobile-register-btn {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.mobile-login-btn {
    background: transparent;
    border: 1px solid #10B981;
    color: #10B981;
}

.mobile-register-btn {
    background: linear-gradient(135deg, #10B981, #059669);
    border: none;
    color: white;
}

.sidebar-overlay-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1001;
    display: none;
}

.sidebar-overlay-mobile.active {
    display: block;
}

/* Footer Auth Links */
.footer-auth-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-auth-links a {
    color: #10B981;
    text-decoration: none;
    font-size: 0.8rem;
}

.footer-auth-links a:hover {
    text-decoration: underline;
}

/* Formulario de notificación simple (legacy) */
.notify-form-simple {
    margin: 1.5rem 0;
}

.notify-form-simple-group {
    display: flex;
    gap: 0.5rem;
}

.notify-form-simple-group input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.75rem 1rem;
    color: white;
    outline: none;
    font-size: 0.9rem;
}

.notify-form-simple-group input::placeholder {
    color: #64748B;
}

.notify-form-simple-group button {
    background: linear-gradient(135deg, #10B981, #059669);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.notify-form-simple-group button:hover {
    transform: translateY(-2px);
}

.notify-success-simple {
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50px;
    text-align: center;
    font-size: 0.8rem;
    color: #10B981;
}

@media (max-width: 768px) {
    .notify-form-simple-group {
        flex-direction: column;
    }

    .notify-form-simple-group button {
        width: 100%;
    }

    .simple-status-card {
        margin: 0 auto 2rem;
        display: inline-flex;
    }

    .hero-buttons {
        justify-content: center;
    }
}