/* --- Tipstar MX - Estilos v2 (Basado en Wireframe) --- */

/* 1. Ajustes Globales y Contenedor Principal */
/* ============================
   VARIABLES CSS (Dark Neon Theme)
   ============================ */
:root {
    /* Paleta Dark Neon (Forzada por defecto) */
    --color-primary: #2979ff;
    /* Azul Eléctrico */
    --color-secondary: #00e676;
    /* Verde Neón */
    --color-accent: #00d4ff;
    /* Cyan brillante */

    --bg-body: #0a0a0a;
    /* Negro profundo */
    --bg-surface: #1a1a1a;
    /* Gris muy oscuro */
    --bg-glass: rgba(26, 26, 26, 0.7);
    --bg-glass-border: rgba(0, 230, 118, 0.3);
    /* Verde neón translúcido */

    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-inverse: #0a0a0a;

    --border-color: #2a2a2a;
    --border-neon: #00e676;
    /* Verde neón para bordes */
    --border-neon-blue: #2979ff;
    /* Azul para bordes */

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.8);
    --shadow-glow-green: 0 0 20px rgba(0, 230, 118, 0.5);
    --shadow-glow-blue: 0 0 20px rgba(41, 121, 255, 0.5);

    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* Light Mode Override (si el usuario lo activa) */
[data-theme="light"] {
    --color-primary: #2962ff;
    --color-secondary: #00c853;

    --bg-body: #f5f5f7;
    --bg-surface: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-border: rgba(255, 255, 255, 0.5);

    --text-primary: #1d1d1f;
    --text-secondary: #86868b;

    --border-color: #d2d2d7;
    --border-neon: #00c853;
    --border-neon-blue: #2962ff;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-glow-green: 0 0 0 transparent;
    --shadow-glow-blue: 0 0 0 transparent;
}

/* ============================
   RESET Y BASE
   ============================ */
html {
    overflow-x: hidden;
}

body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: var(--font-main);
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Prevent horizontal scroll from full-width sections */
}

/* Utilidades de Glassmorphism */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--bg-glass-border);
    box-shadow: var(--shadow-md);
}

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

.container-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles (Transparent/Absolute for Immersive Hero) */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
    margin-bottom: 20px;
}

/* Header con scroll (glassmorphism activado) */
.main-header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 230, 118, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .hamburger-menu span {
        width: 20px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
    }

    .desktop-nav {
        display: none;
    }
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--border-neon);
    transition: width 0.3s ease;
}

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

.login-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    border-radius: var(--radius-md);
    color: white !important;
    font-weight: 600;
    box-shadow: var(--shadow-glow-green);
}

.login-btn::after {
    display: none;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 230, 118, 0.7);
}

.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(20deg);
}

[data-theme="dark"] .theme-toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Override main-content padding for full-width sections */
.main-content {
    padding: 0 !important;
    max-width: none !important;
}

/* 2. Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    margin-top: 80px;
    /* Space for fixed header */
    border-radius: 12px;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-banner-content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
}

.btn-register {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--color-secondary);
    color: var(--color-text-primary);
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
    transition: all 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.5);
}

/* 3. Selector de Deportes */
.sports-selector-section {
    text-align: center;
    padding: 30px 0;
}

.sports-selector-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.sports-selector {
    display: flex;
    justify-content: space-around;
    background-color: var(--color-surface);
    padding: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.sport-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.sport-item svg {
    width: 28px;
    height: 28px;
}

.sport-item.active {
    color: var(--color-primary);
}

.sport-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.sport-item:not(.disabled):hover {
    background-color: #f8f9fa;
}


/* 4. Sección de Picks (Ajustes a las tarjetas existentes) */
.picks-section {
    padding: 30px 0;
    text-align: center;
    background-color: transparent !important;
    /* Override style.css white bg */
}

.picks-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.picks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .picks-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

.pick-card {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: none;
    /* Diseño más plano */
}

.pick-card-header {
    background-color: transparent;
    font-size: 0.85rem;
    padding: 12px 15px;
}

.pick-card-body {
    padding: 20px 15px;
    font-size: 0.9rem;
}

.pick-card-body .team {
    width: 35%;
    /* Más compacto */
}

.pick-card-body .team img {
    width: 40px;
    height: 40px;
}

.pick-card-footer {
    padding: 12px 15px;
    border-radius: 0 0 10px 10px;
    /* Redondeo solo abajo */
}

.pick-card-footer .pick-market {
    font-size: 0.75rem;
}

.pick-card-footer .pick-prediction {
    font-size: 1rem;
}

.pick-card-footer .details-btn {
    background-color: var(--color-surface);
    color: var(--color-primary);
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* 5. Sección CTA */
.cta-section {
    background-color: var(--color-primary);
    color: white;
    border-radius: 15px;
    margin: 40px 0;
    padding: 40px 20px;
    text-align: center;
}

.cta-section h2 {
    color: white;
    border: none;
    font-size: 1.5rem;
}

.cta-section p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
    background-color: white;
    color: var(--color-primary);
}

.btn-cta:hover {
    transform: translateY(-2px);
}

/* --- NUEVOS ESTILOS PARA index.php --- */

/* 1. Nuevo Hero Section Elegante (v2 - Ancho Completo y Responsivo) */
.hero-section-v2 {
    position: relative;
    width: 100vw;
    /* Full viewport width */
    margin-left: calc(-50vw + 50%);
    /* Center and expand to full width */
    height: 550px;
    /* Increased height for mobile to accommodate content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero_ai_background.png');
    background-size: cover;
    background-position: center;
    padding: 140px 20px 60px;
    /* Increased top padding for more header space */
    margin-top: 0;
}

.hero-content h1 {
    font-size: 2rem;
    /* Tamaño de fuente base para móvil */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 0.95rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
    /* Evita que el texto sea demasiado largo en escritorio */
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--color-secondary);
    color: var(--color-text-primary);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.5);
}

/* Ajustes para pantallas más grandes (tablets y escritorio) */
@media (min-width: 768px) {
    .hero-section-v2 {
        height: 500px;
        /* Mayor altura en escritorio */
        padding: 120px 40px 60px;
    }

    .hero-content h1 {
        font-size: 3rem;
        /* Título más grande en escritorio */
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

/* 2. Nueva Sección de Planes de Precios */
.pricing-section {
    padding: 40px 0;
    text-align: center;
}

.pricing-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.pricing-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pricing-card.recommended {
    border-color: var(--color-primary);
    border-width: 2px;
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.pricing-card .price .periodo {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    color: var(--color-text-secondary);
}

.pricing-card ul li {
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- ESTILOS UNIFICADOS PARA EL SELECTOR DE DEPORTES --- */

.sports-selector {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    background-color: var(--color-surface);
    border-radius: 12px;
    margin: 0 10px 15px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sport-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.sport-item svg {
    width: 28px;
    height: 28px;
}

.sport-item.active {
    color: var(--primary-color);
}

.sport-item.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.sport-item:not(.disabled):hover {
    background-color: #f8f9fa;
}

/* --- ESTILOS UNIFICADOS PARA EL SELECTOR DE DEPORTES (v2 - Iconos más grandes) --- */

.sports-selector {
    display: flex;
    justify-content: space-around;
    padding: 10px;
}

.sport-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    /* Aumentamos ligeramente el texto */
}

.sport-item img {
    width: 40px;
    /* Aumentamos el tamaño de 32px a 40px */
    height: 40px;
    /* Aumentamos el tamaño de 32px a 40px */
}

.sport-item.active {
    color: var(--color-primary);
}

.sport-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.sport-item:not(.disabled):hover {
    background-color: var(--bg-body);
    /* Usar variable */
}

/* Footer Minimalista */
.main-footer {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    margin-top: 60px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--color-primary);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-body);
    color: var(--text-primary);
}

.newsletter-form button {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: var(--bg-body);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

/* Fix Soccer Page Contrast */
.soccer-container,
.matches-list,
.league-header,
.match-card {
    color: var(--text-primary) !important;
}

.match-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
}

.match-time,
.team-name,
.score {
    color: var(--text-primary);
}

/* Mobile Nav (Bottom) - Fixed Contrast */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 230, 118, 0.3);
    padding: 12px 0 16px;
    /* Balanced padding */
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-around;
    z-index: 1000;
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}

.nav-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #a1a1a6;
    font-size: 0.7rem;
    gap: 2px;
    /* Tighter gap */
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-icon svg {
    width: 28px;
    height: 28px;
    shape-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

.nav-icon.active {
    color: var(--color-secondary);
    transform: translateY(-5px);
}

.nav-icon.active svg {
    /* filter: drop-shadow(0 0 8px rgba(0, 230, 118, 0.8)); REMOVED for sharpness */
    color: var(--color-secondary);
    transform: scale(1.1);
    /* Subtle scale instead of glow */
}

.nav-icon:hover {
    color: var(--color-primary);
}

/* Hamburger Menu Mobile - Fixed */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 10px;
        border-radius: 8px;
    }

    .hamburger-menu span {
        width: 25px;
        height: 3px;
        background: white;
        border-radius: 2px;
    }

    .desktop-nav {
        display: none;
    }

    .logo a {
        font-size: 1.2rem;
    }

    .header-content {
        padding: 0 20px;
    }

    /* Mobile Menu Fix - Dark Theme */
    .desktop-nav {
        background-color: rgba(10, 10, 10, 0.98) !important;
        /* Force dark background */
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 230, 118, 0.2);
        padding-top: 20px;
    }

    .desktop-nav a {
        color: var(--text-primary) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        padding: 15px 0;
    }
}

/* Modern Bot Icon (Value Props) */
.prop-icon {
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-body));
    border: 1px solid var(--border-color);
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

.prop-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(41, 98, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prop-card:hover .prop-icon::after {
    opacity: 1;
}

/* REMOVED - Duplicate hero section styles now consolidated above */

/* Value Props Section */
.value-props {
    padding: 60px 0;
    background: var(--bg-body);
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.prop-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s ease;
}

.prop-card:hover {
    transform: translateY(-5px);
}

.prop-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    background: var(--bg-surface);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prop-card h3 {
    margin-bottom: 15px;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.prop-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Sports Selector Cards */
.sports-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.sport-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.sport-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--color-primary);
}

.sport-item.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.sport-item.active svg,
.sport-item.active img {
    filter: brightness(0) invert(1);
}

/* Picks Grid */
.picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.empty-state {
    grid-column: 1 / -1;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 20px;
    text-align: center;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    max-width: 600px;
    margin: 0 auto;
}

.empty-state h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.empty-state p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Pick Card Styling */
.pick-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.pick-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.pick-card-header {
    background: rgba(0, 0, 0, 0.03);
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pick-card-body {
    padding: 20px;
}

.match-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 40%;
}

.team img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.vs {
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pick-info {
    text-align: center;
    background: rgba(41, 98, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    border: 1px dashed var(--color-primary);
}

.pick-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.pick-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.pick-card-footer {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.btn-pick-details {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-pick-details:hover {
    background: var(--color-primary);
    color: white;
}

/* Pricing Section Redesign (Horizontal Scroll) */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-body);
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--border-neon) var(--bg-surface);
}

.pricing-grid::-webkit-scrollbar {
    height: 8px;
}

.pricing-grid::-webkit-scrollbar-track {
    background: var(--bg-surface);
    border-radius: 10px;
}

.pricing-grid::-webkit-scrollbar-thumb {
    background: var(--border-neon);
    border-radius: 10px;
}

.pricing-grid::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

.pricing-card {
    min-width: 260px;
    max-width: 280px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.recommended {
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.recommended:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: var(--shadow-glow-green);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 15px 0;
    letter-spacing: -1px;
}

.pricing-card .price .periodo {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    vertical-align: middle;
}

/* Hero Actions (CTA Buttons) */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 40px;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-hero.primary {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: white;
    box-shadow: var(--shadow-glow-green);
    position: relative;
    overflow: hidden;
}

.btn-hero.primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.btn-hero.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 230, 118, 0.8);
}

.btn-hero.primary:hover::before {
    left: 100%;
}

.btn-hero.secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--border-neon);
    box-shadow: inset 0 0 20px rgba(0, 230, 118, 0.1);
}

.btn-hero.secondary:hover {
    background: rgba(0, 230, 118, 0.1);
    border-color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow-green);
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px;
    text-align: left;
    flex-grow: 1;
    font-size: 0.9rem;
}

.pricing-card ul li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card ul li::before {
    content: "✓";
    color: var(--color-secondary);
    font-weight: bold;
}

.pricing-card .btn-cta {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    background: var(--bg-body);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.pricing-card.recommended .btn-cta {
    background: var(--color-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(41, 98, 255, 0.3);
}

.pricing-card .btn-cta:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Soccer CTA Card - Link to Predictions */
.soccer-cta-section {
    padding: 20px 0;
}

.soccer-cta-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(0, 212, 255, 0.1));
    border: 2px solid var(--border-neon);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.2);
}

.soccer-cta-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.4);
    border-color: var(--color-secondary);
}

.soccer-cta-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 230, 118, 0.5));
}

.soccer-cta-content {
    flex: 1;
}

.soccer-cta-content h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 700;
}

.soccer-cta-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.soccer-cta-arrow {
    font-size: 1.8rem;
    color: var(--color-secondary);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.soccer-cta-card:hover .soccer-cta-arrow {
    transform: translateX(5px);
}