/* Reset y configuración global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    /* COLORES OSCUROS BASADOS EN EL LOGO THESHOW2001 */
    --flame-red: #E53E3E;          /* Rojo de las llamas */
    --dark-red: #C53030;           /* Rojo más oscuro */
    --rider-purple: #805AD5;       /* Púrpura del traje */
    --deep-purple: #6B46C1;        /* Púrpura profundo */
    --logo-black: #0D1117;         /* Negro principal (GitHub dark) */
    --card-black: #161B22;         /* Negro para tarjetas */
    --darker-black: #010409;       /* Negro más oscuro */
    --pure-white: #FFFFFF;         /* Blanco puro */
    --light-gray: #21262D;         /* Gris oscuro para tarjetas */
    --border-gray: #30363D;        /* Bordes oscuros */
    --text-gray: #8B949E;          /* Texto secundario */
    --text-light: #F0F6FC;         /* Texto principal claro */
    --success-green: #238636;      /* Verde éxito oscuro */
    --warning-orange: #D29922;     /* Naranja advertencia oscuro */
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-red: rgba(229, 62, 62, 0.4);
    --shadow-purple: rgba(128, 90, 213, 0.4);
}

/* CONFIGURACIÓN BASE RESPONSIVE - SIN SCROLL HORIZONTAL */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    background: var(--logo-black);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

.container {
    max-width: 500px;
    width: calc(100% - 20px);
    margin: 10px auto;
    padding: 15px;
    background: var(--card-black);
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-light);
    position: relative;
    overflow: hidden;
}

/* HEADER SIMPLE COMO HENKO */
header {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

/* LOGO EXACTAMENTE COMO HENKO CON COLORES THESHOW2001 */
.logo {
    max-width: 150px;
    margin: 0 auto 1rem auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 0 15px var(--shadow-red);
}

.header-title {
    letter-spacing: 1px;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--pure-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.header-title2 {
    color: var(--flame-red);
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* IMAGEN DESTACADA EXACTAMENTE COMO HENKO CON COLORES THESHOW2001 */
.featured-image {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--flame-red);
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px var(--shadow-red);
    transition: transform 0.3s;
}

.featured-image:hover {
    transform: scale(1.02);
}

.section-title {
    margin: 2rem 0 1.5rem 0;
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--flame-red);
    border-radius: 2px;
}

/* PREMIOS OSCUROS */
.prizes-section {
    margin: 2rem 0;
    background: var(--light-gray);
    border-radius: 15px;
    padding: clamp(1rem, 4vw, 2rem);
    box-shadow: 0 8px 25px var(--shadow-red);
    border: 2px solid var(--flame-red);
    position: relative;
    overflow: hidden;
}

.prizes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--flame-red), var(--rider-purple), var(--flame-red));
}

.prizes-title {
    text-align: center;
    color: var(--flame-red);
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-bottom: 2rem;
    font-weight: 700;
}

.prizes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.prize-card {
    background: var(--card-black);
    border-radius: 15px;
    padding: clamp(1rem, 3vw, 1.5rem);
    position: relative;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
}

.prize-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-purple);
    border-color: var(--rider-purple);
}

.prize-badge {
    position: absolute;
    top: -12px;
    left: 15px;
    background: var(--flame-red);
    color: var(--pure-white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.first-prize .prize-badge {
    background: #FFD700;
    color: var(--darker-black);
}

.second-prize .prize-badge {
    background: #C0C0C0;
    color: var(--darker-black);
}

.prize-card h4 {
    color: var(--text-light);
    margin: 1rem 0 0.5rem 0;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 600;
    line-height: 1.3;
}

.prize-description {
    color: var(--text-gray);
    line-height: 1.5;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.lottery-info {
    color: var(--rider-purple);
    font-style: italic;
    font-weight: 500;
}

/* RANKING OSCURO */
.ranking-section {
    margin: 2rem 0;
    background: var(--light-gray);
    border-radius: 15px;
    padding: clamp(1rem, 3vw, 1.5rem);
    box-shadow: 0 8px 20px var(--shadow-light);
    border: 1px solid var(--border-gray);
}

.ranking-title {
    text-align: center;
    color: var(--rider-purple);
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.ranking-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-black);
    padding: clamp(0.8rem, 2vw, 1rem);
    margin: 0.8rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    min-height: 60px;
}

.ranking-item:hover {
    background: rgba(128, 90, 213, 0.15);
    border-color: var(--rider-purple);
}

.ranking-position {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: bold;
    min-width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.ranking-position.gold { color: #FFD700; }
.ranking-position.silver { color: #C0C0C0; }
.ranking-position.bronze { color: #CD7F32; }

.ranking-email {
    flex: 1;
    margin: 0 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    word-break: break-word;
    text-align: left;
    overflow-wrap: break-word;
}

.ranking-tickets {
    background: var(--flame-red);
    color: var(--pure-white);
    padding: clamp(6px, 1.5vw, 8px) clamp(10px, 2.5vw, 15px);
    border-radius: 20px;
    font-weight: bold;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}

.loading-ranking {
    text-align: center;
    color: var(--text-gray);
    padding: 2rem;
    font-style: italic;
}

/* SELECTOR DE TICKETS OSCURO */
.ticket-selector {
    margin: 2rem 0;
    background: var(--light-gray);
    border-radius: 15px;
    padding: clamp(1rem, 3vw, 1.5rem);
    border: 1px solid var(--border-gray);
    box-shadow: 0 6px 15px var(--shadow-light);
}

.ticket-selector-title {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 1rem;
    color: var(--text-light);
    text-align: center;
    font-weight: 600;
}

.ticket-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    gap: clamp(10px, 3vw, 20px);
    flex-wrap: wrap;
}

.counter-btn {
    background: var(--flame-red);
    border: none;
    color: var(--pure-white);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: bold;
    cursor: pointer;
    width: clamp(40px, 10vw, 45px);
    height: clamp(40px, 10vw, 45px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.counter-btn:hover {
    background: var(--rider-purple);
    transform: scale(1.1);
    box-shadow: 0 6px 15px var(--shadow-purple);
}

.counter-btn.large-increment {
    width: auto;
    padding: 0 clamp(15px, 4vw, 20px);
    border-radius: 25px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.counter-display {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    color: var(--rider-purple);
    min-width: clamp(60px, 15vw, 80px);
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.random-numbers-message {
    text-align: center;
    margin: 1rem 0;
    padding: 12px;
    background: rgba(128, 90, 213, 0.15);
    border-radius: 10px;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--rider-purple);
    font-weight: 600;
    border: 1px solid var(--rider-purple);
}

.ticket-price-info {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-gray);
    flex-wrap: wrap;
    gap: 10px;
}

.price-per-ticket, .total-price {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 500;
    color: var(--text-light);
}

.total-price {
    font-weight: 700;
    color: var(--rider-purple);
}

/* SECCIÓN DE PAGOS OSCURA */
.payment-section {
    margin-top: 2rem;
}

.currency-tabs {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 4px 10px var(--shadow-light);
}

.currency-tab {
    flex-grow: 1;
    text-align: center;
    padding: clamp(0.8rem, 2vw, 1rem);
    background: var(--card-black);
    color: var(--text-light);
    cursor: pointer;
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.currency-tab.active {
    background: var(--flame-red);
    border-top: 3px solid var(--dark-red);
    color: var(--pure-white);
    font-weight: bold;
}

.currency-tab:hover:not(.active) {
    background: rgba(229, 62, 62, 0.15);
    border-top-color: var(--flame-red);
}

.currency-details {
    background: var(--light-gray);
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: 0 0 12px 12px;
    animation: fadeIn 0.5s;
    border: 1px solid var(--border-gray);
    border-top: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.account-info {
    background: var(--card-black);
    border-radius: 12px;
    padding: clamp(1rem, 3vw, 1.5rem);
    margin: 1rem 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.account-info:hover {
    border-color: var(--flame-red);
    box-shadow: 0 8px 20px var(--shadow-red);
}

.account-info h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 1rem;
    color: var(--rider-purple);
    font-weight: 600;
}

.account-detail {
    margin-bottom: 0.8rem;
    padding-left: 15px;
    border-left: 3px solid var(--flame-red);
    color: var(--text-light);
    line-height: 1.5;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

.total-transfer-box {
    background: var(--flame-red);
    color: var(--pure-white);
    font-weight: bold;
    padding: clamp(15px, 4vw, 20px);
    margin: 20px 0;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px var(--shadow-red);
    font-size: clamp(1rem, 3vw, 1.2rem);
    border: 2px solid var(--dark-red);
    transition: all 0.3s ease;
}

.total-transfer-box:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px var(--shadow-red);
}

.total-transfer-box .total-amount {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin-top: 8px;
    display: block;
    color: var(--pure-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* FORMULARIO OSCURO */
.form-section {
    background: var(--light-gray);
    border-radius: 15px;
    padding: clamp(1.5rem, 4vw, 2rem);
    margin-top: 2rem;
    border: 1px solid var(--border-gray);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.form-title {
    text-align: center;
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.3;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input, .form-group select {
    width: 100%;
    padding: clamp(10px, 2.5vw, 12px);
    background: var(--card-black);
    border: 2px solid var(--border-gray);
    color: var(--text-light);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-group input::placeholder {
    color: var(--text-gray);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.form-group input:focus {
    outline: none;
    border-color: var(--flame-red);
    background: var(--darker-black);
    box-shadow: 0 0 10px var(--shadow-red);
}

.error-message {
    color: var(--flame-red);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin-top: 5px;
    display: none;
    font-weight: 500;
}

.error-message.show {
    display: block;
}

.file-upload-container {
    margin-bottom: 2rem;
}

.file-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    background: var(--card-black);
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: 12px;
    cursor: pointer;
    border: 2px dashed var(--flame-red);
    transition: all 0.3s ease;
}

.file-upload:hover {
    background: rgba(229, 62, 62, 0.15);
    border-color: var(--rider-purple);
}

.file-upload i {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--flame-red);
    margin-right: 12px;
}

.file-upload-text {
    color: var(--rider-purple);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 600;
}

.upload-instruction {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    color: var(--text-gray);
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    background: rgba(229, 62, 62, 0.15);
    border-radius: 8px;
    border: 1px solid var(--flame-red);
    line-height: 1.4;
}

.file-preview {
    margin-top: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preview-content img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 10px;
    border: 2px solid var(--flame-red);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.file-name {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--rider-purple);
    margin: 10px 0;
    font-weight: 500;
    word-break: break-word;
    text-align: center;
}

.remove-file {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--flame-red);
    color: var(--pure-white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.remove-file:hover {
    background: var(--dark-red);
    transform: scale(1.1);
}

.submit-btn {
    background: var(--flame-red);
    color: var(--pure-white);
    border: none;
    padding: clamp(12px, 3vw, 15px);
    width: 100%;
    border-radius: 25px;
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 6px 15px var(--shadow-red);
    border: 2px solid var(--dark-red);
}

.submit-btn:hover {
    background: var(--rider-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-purple);
}

.whatsapp-btn {
    display: block;
    background: #25D366;
    color: var(--pure-white);
    font-weight: bold;
    text-align: center;
    padding: clamp(12px, 3vw, 15px);
    border-radius: 25px;
    margin: 20px auto;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.success-message {
    background: rgba(35, 134, 54, 0.15);
    color: var(--success-green);
    padding: clamp(12px, 3vw, 15px);
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
    border: 2px solid var(--success-green);
    display: none;
    font-weight: 500;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

#form-error {
    background: rgba(229, 62, 62, 0.15);
    color: var(--flame-red);
    padding: clamp(12px, 3vw, 15px);
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
    border: 2px solid var(--flame-red);
    display: none;
    font-weight: 500;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

/* FOOTER OSCURO */
.footer {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-gray);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: var(--text-gray);
}

.developer-credits {
    margin-top: 20px;
    padding: clamp(12px, 3vw, 15px);
    background: var(--card-black);
    border-radius: 12px;
    color: var(--text-light);
    text-align: center;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--flame-red);
    line-height: 1.4;
}

.developer-credits a {
    color: var(--rider-purple);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.developer-credits a:hover {
    color: var(--flame-red);
    text-decoration: underline;
}

/* RESPONSIVE MÓVIL */
@media (max-width: 768px) {
    .logo {
        max-width: 120px;
        margin-bottom: 1rem;
    }
    
    .featured-image {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 100px;
        margin-bottom: 0.8rem;
    }
    
    .featured-image {
        margin-bottom: 1.2rem;
        border-radius: 15px;
    }
    
    .ranking-item {
        padding: 0.8rem 0.6rem;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.5rem;
        min-height: 50px;
    }
    
    .ranking-position {
        font-size: 1.2rem;
        min-width: 35px;
        flex-shrink: 0;
    }
    
    .ranking-email {
        font-size: 0.75rem;
        margin: 0 0.3rem;
        flex: 1;
        text-align: left;
        line-height: 1.2;
        word-break: break-all;
    }
    
    .ranking-tickets {
        font-size: 0.7rem;
        padding: 4px 8px;
        min-width: auto;
        flex-shrink: 0;
    }
    
    .container {
        margin: 5px;
        padding: 10px;
        width: calc(100% - 10px);
    }
    
    header {
        margin: -10px -10px 2rem -10px;
        padding: 1.5rem 0.5rem;
    }
    
    .currency-tabs {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .currency-tab {
        font-size: 0.8rem;
        padding: 0.8rem 0.5rem;
        flex-shrink: 0;
        min-width: 80px;
    }
    
    .form-group input,
    .form-group select {
        min-width: 0;
        width: 100%;
    }
}

/* CRÍTICO: PREVENIR SCROLL HORIZONTAL */
*, *::before, *::after {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

table {
    width: 100%;
    table-layout: fixed;
    word-wrap: break-word;
}

/* Evitar zoom en inputs en iOS */
input[type="email"],
input[type="tel"],
input[type="text"],
input[type="number"],
select,
textarea {
    font-size: 16px !important;
}

/* Consistencia en tap highlights */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input,
textarea,
[contenteditable] {
    -webkit-user-select: auto;
    -khtml-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

/* LANDSCAPE EN MÓVILES */
@media only screen and (max-height: 500px) and (orientation: landscape) {
    .container {
        padding: 10px;
        margin: 5px auto;
    }
    
    header {
        padding: 1rem;
        margin: -10px -10px 1rem -10px;
    }
    
    .prizes-section,
    .ranking-section,
    .ticket-selector {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .section-title {
        margin: 1rem 0;
    }
}

/* FIXES PARA MÓVILES MUY PEQUEÑOS */
@media only screen and (max-width: 320px) {
    .container {
        margin: 2px;
        padding: 8px;
        width: calc(100% - 4px);
    }
    
    .logo {
        max-width: 90px;
    }
    
    .featured-image {
        margin-bottom: 1rem;
        border-radius: 12px;
    }
    
    header {
        margin: -8px -8px 1rem -8px;
        padding: 1rem 0.5rem;
    }
}