/* === DESIGN SYSTEM === */
:root {
    --primary: #dc2626;
    --primary-dark: #991b1b;
    --primary-light: #ef4444;
    --secondary: #7f1d1d;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --success: #10b981;
    --success-dark: #059669;
    --danger: #b91c1c;
    --dark: #0a0a0a;
    --dark-2: #141414;
    --dark-3: #1e1e1e;
    --dark-4: #2a2a2a;
    --light: #f8fafc;
    --light-2: #f1f5f9;
    --border: #e2e8f0;
    --border-dark: rgba(255, 255, 255, 0.08);
    --text: #1e293b;
    --text-light: #64748b;
    --text-white: rgba(255, 255, 255, 0.95);
    --text-white-muted: rgba(255, 255, 255, 0.6);
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-light: rgba(255, 255, 255, 0.95);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 60px rgba(220, 38, 38, 0.15);
    --shadow-glow-green: 0 0 60px rgba(16, 185, 129, 0.15);
}

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--dark);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(220, 38, 38, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(127, 29, 29, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 50% 10%, rgba(239, 68, 68, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* === NAVBAR === */
.navbar {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0;
    border-bottom: 1px solid var(--border-dark);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
}

.brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.brand-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-light);
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.25);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    color: var(--text-white-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-social:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link {
    color: var(--text-white-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.06);
}

/* === INFLUENCER BADGE === */
.influencer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 2.5rem 0 0;
    animation: fadeInUp 0.6s ease-out;
}

.influencer-label {
    font-size: 0.8rem;
    color: var(--text-white-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.influencer-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.influencer-social {
    display: flex;
    gap: 0.5rem;
}

.influencer-social-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white-muted);
    text-decoration: none;
    padding: 0.3rem 0.65rem;
    border-radius: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: all 0.2s ease;
}

.influencer-social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* === HERO / HEADER SECTION === */
.header-section {
    text-align: center;
    padding: 5rem 0 3rem;
    position: relative;
}

.header-section h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    line-height: 1.1;
    animation: fadeInUp 0.7s ease-out;
}

.header-section .description {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--text-white-muted);
    font-weight: 400;
    max-width: 550px;
    margin: 0 auto;
    animation: fadeInUp 0.7s ease-out 0.15s both;
}

/* === SORTEO IMAGE HERO === */
.sorteo-hero-image {
    margin: 2.5rem auto 0;
    max-width: 500px;
    animation: fadeInUp 0.7s ease-out 0.3s both;
}

.sorteo-hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), var(--shadow-glow);
    border: 1px solid var(--glass-border);
}

/* === PRICE BANNER === */
.price-banner {
    background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
    color: white;
    padding: 2rem 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    margin: 2.5rem 0;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25), var(--shadow-glow-green);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.7s ease-out 0.4s both;
}

.price-banner::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    animation: slowRotate 30s linear infinite;
}

.price-text {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.price-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: -2px;
}

/* === PRIZES SHOWCASE === */
.prizes-showcase {
    margin-top: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.prize-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(220, 38, 38, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.prize-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.1);
}

.prize-emoji {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.prize-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.prize-detail {
    color: var(--text-white-muted);
    font-size: 0.88rem;
}

/* === PROGRESS BAR === */
.progress-section {
    margin: 2.5rem 0;
    animation: fadeInUp 0.7s ease-out 0.5s both;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.progress-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-white-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-count {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.progress-count .current {
    color: var(--primary-light);
}

.progress-count .separator {
    color: var(--text-white-muted);
    margin: 0 0.15rem;
}

.progress-count .total {
    color: var(--text-white-muted);
}

.progress-bar-track {
    width: 100%;
    height: 12px;
    background: var(--dark-3);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 6px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 2%;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

.progress-subtitle {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-white-muted);
    text-align: center;
}

/* === STATS === */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    animation: fadeInUp 0.7s ease-out 0.6s both;
}

.stat-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-white-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* === FORM SECTION === */
.form-section {
    background: var(--glass-light);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin: 3rem 0;
    border: 1px solid var(--border);
    animation: fadeInUp 0.7s ease-out 0.7s both;
}

.form-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 700;
    letter-spacing: -1px;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.label-icon {
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
    font-family: inherit;
    color: var(--text);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.form-control::placeholder {
    color: #94a3b8;
}

.text-danger {
    color: var(--danger);
    font-size: 0.825rem;
    margin-top: 0.35rem;
    display: block;
    font-weight: 500;
}

.form-hint {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 0.35rem;
    display: block;
}

.form-control.is-invalid {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.08);
}

/* === BUTTONS === */
.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.35);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
}

/* === ALERTS === */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
    border-left: 4px solid;
    animation: slideIn 0.3s ease-out;
}

.alert-success {
    background: rgba(16, 185, 129, 0.08);
    color: #065f46;
    border-color: var(--success);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.08);
    color: #991b1b;
    border-color: var(--danger);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.08);
    color: #92400e;
    border-color: var(--accent);
}

.alert-info {
    background: rgba(59, 130, 246, 0.08);
    color: #1e40af;
    border-color: #3b82f6;
}

/* === CHECKOUT === */
.checkout-container {
    max-width: 900px;
    margin: 2rem auto;
    background: var(--glass-light);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    animation: fadeInUp 0.6s ease-out;
}

.checkout-container h1 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--dark);
    margin-bottom: 2rem;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.ticket-info {
    background: var(--light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.ticket-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-item .label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-item .value {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.05rem;
}

.price-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.25);
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
    animation: slowRotate 20s linear infinite;
}

.price-label {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.payment-section h3 {
    margin: 2rem 0 1rem;
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.payment-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.payment-methods {
    margin: 2rem 0;
}

.payment-method-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-method-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.08);
}

.payment-method-card.selected {
    border-color: var(--primary);
    background: rgba(220, 38, 38, 0.02);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.payment-method-card input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.payment-method-card label {
    cursor: pointer;
    display: block;
    width: 100%;
    margin-left: 0.5rem;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.method-icon {
    font-size: 2rem;
}

.method-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.badge-popular, .badge-secure {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-popular {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.badge-secure {
    background: linear-gradient(135deg, var(--success), var(--success-dark));
    color: white;
}

.method-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    line-height: 1.5;
}

.method-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
}

.btn-pay {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--success), var(--success-dark));
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.35);
}

.security-info {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-weight: 500;
}

/* === FOOTER === */
footer {
    text-align: center;
    padding: 4rem 0 3rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-dark);
    background: rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-brand-tag {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-light);
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.25);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.social-link svg {
    flex-shrink: 0;
}

.social-instagram {
    color: #e1306c;
    background: rgba(225, 48, 108, 0.08);
    border-color: rgba(225, 48, 108, 0.15);
}

.social-instagram:hover {
    background: rgba(225, 48, 108, 0.15);
    transform: translateY(-2px);
}

.social-tiktok {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.social-tiktok:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-copy {
    color: var(--text-white-muted);
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-white-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--accent-light);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.trust-badge {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-white-muted);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 40px rgba(16, 185, 129, 0.5); }
}

/* === HERO FULLSCREEN === */
.hero-fullscreen {
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin-top: -60px; /* pull behind navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom,
            rgba(10, 10, 10, 0.3) 0%,
            rgba(10, 10, 10, 0.15) 40%,
            rgba(10, 10, 10, 0.5) 70%,
            rgba(10, 10, 10, 0.95) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-top: 15vh;
}

.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -3px;
    color: white;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--accent-light);
    text-shadow: 0 2px 20px rgba(245, 158, 11, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-desc {
    max-width: 500px;
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.55);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.8rem;
    padding: 1rem 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    background: var(--primary);
    border-radius: 60px;
    box-shadow:
        0 8px 30px rgba(220, 38, 38, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta:hover {
    background: var(--primary-light);
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 12px 40px rgba(220, 38, 38, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.hero-cta svg {
    animation: bounceDown 2s ease-in-out infinite;
}

.hero-date {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.6rem 0.9rem;
    min-width: 60px;
}
.countdown-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}
.countdown-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}
.countdown-sep {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    padding-bottom: 0.8rem;
}
@media (max-width: 480px) {
    .countdown-item {
        min-width: 50px;
        padding: 0.5rem 0.6rem;
    }
    .countdown-value { font-size: 1.3rem; }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.35);
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === PACKAGES SECTION === */
.packages-section {
    margin: 2.5rem 0 3rem;
    text-align: center;
    animation: fadeInUp 0.7s ease-out 0.3s both;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--text-white-muted);
    font-size: 1rem;
    margin-bottom: 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.25rem 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.package-card:hover {
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-6px);
    background: rgba(16, 185, 129, 0.04);
}

.package-card.selected {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15), 0 20px 40px rgba(16, 185, 129, 0.15);
    animation: glowPulse 2s ease-in-out infinite;
}

.package-popular {
    border-color: rgba(245, 158, 11, 0.3);
}

.package-best {
    border-color: rgba(239, 68, 68, 0.3);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.badge-best {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
}

.package-tickets {
    margin-bottom: 1rem;
}

.package-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    display: block;
}

.package-label {
    font-size: 1rem;
    color: var(--text-white-muted);
    font-weight: 500;
    display: block;
    margin-top: 0.25rem;
}

.package-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.package-savings {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.package-savings-hidden {
    visibility: hidden;
}

.package-unit {
    font-size: 0.85rem;
    color: var(--text-white-muted);
    font-weight: 500;
}

/* === SELECTED PACKAGE SUMMARY IN FORM === */
.selected-package-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 2px solid #10b981;
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.package-info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.package-info-details {
    display: flex;
    flex-direction: column;
}

.package-info-text {
    font-weight: 700;
    color: #065f46;
    font-size: 1.1rem;
}

.package-info-price {
    color: #047857;
    font-weight: 600;
    font-size: 0.95rem;
}

/* === CHECKOUT PACKAGE DISPLAY === */
.package-checkout-badge {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #10b981;
    color: #065f46;
    padding: 0.6rem 1rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ticket-numbers-list {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.ticket-numbers-list .label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    display: block;
    margin-bottom: 0.75rem;
}

.ticket-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ticket-number-tag {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    font-family: 'Space Grotesk', monospace;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .header-section {
        padding: 3rem 0 2rem;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }

    .form-section, .checkout-container {
        padding: 2rem 1.5rem;
    }

    .price-banner {
        padding: 1.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .method-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .badge-popular, .badge-secure {
        margin-left: 0;
    }

    .payment-method-card {
        padding: 1.25rem;
    }

    .navbar-inner {
        padding: 0.75rem 1rem;
    }

    .footer-badges {
        flex-direction: column;
        align-items: center;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .package-number {
        font-size: 2.75rem;
    }

    .package-price {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: clamp(2.8rem, 15vw, 5rem);
        letter-spacing: -2px;
    }

    .hero-subtitle {
        letter-spacing: 3px;
        font-size: 1rem;
    }

    .hero-cta {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    .hero-content {
        margin-top: 20vh;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .brand-text {
        font-size: 1.25rem;
    }

    .form-section {
        padding: 1.5rem 1.25rem;
    }

    .selected-package-info {
        flex-direction: column;
        text-align: center;
    }
}

/* === PROCESSING PAGE === */
.processing-card {
    text-align: center;
    padding: 3rem 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.processing-card h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-top: 1.5rem;
    color: white;
}

.processing-message {
    color: var(--text-white-muted);
    font-size: 1.05rem;
    margin-top: 0.75rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.processing-icon {
    display: flex;
    justify-content: center;
}

.spinner {
    width: 64px;
    height: 64px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-light);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.badge-processing {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-light);
    border: 1px solid rgba(245, 158, 11, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.badge-success {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* === FAQ SECTION === */
.faq-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.05);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s;
    font-family: 'Space Grotesk', sans-serif;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-white-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === TERMS SECTION === */
.terms-section {
    margin-top: 3rem;
    padding: 3rem 0 2rem;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.terms-block {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: border-color 0.3s;
}

.terms-block:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.terms-block h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 0.6rem;
}

.terms-block p {
    color: var(--text-white-muted);
    line-height: 1.7;
    font-size: 0.92rem;
}

.terms-block a {
    text-decoration: none;
    font-weight: 600;
}

.terms-block a:hover {
    text-decoration: underline;
}

/* Responsive FAQ & Terms */
@media (max-width: 768px) {
    .faq-section,
    .terms-section {
        margin-top: 2.5rem;
        padding: 2rem 0;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.92rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1rem;
        font-size: 0.9rem;
    }

    .terms-block {
        padding: 1.25rem;
    }

    .terms-block h3 {
        font-size: 0.95rem;
    }

    .terms-block p {
        font-size: 0.88rem;
    }
}

/* === INFO LINKS (Index page buttons) === */
.info-links-section {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.info-link-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.info-link-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateX(4px);
}

.info-link-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-link-text {
    flex: 1;
}

.info-link-arrow {
    color: var(--accent);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.info-link-btn:hover .info-link-arrow {
    transform: translateX(4px);
}

/* === UPCOMING SORTEOS === */
.upcoming-section {
    margin: 3rem 0 2rem;
    animation: fadeInUp 0.7s ease-out 0.8s both;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.upcoming-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(245, 158, 11, 0.04));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.upcoming-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.upcoming-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.upcoming-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.upcoming-card:hover .upcoming-img img {
    transform: scale(1.05);
}

.upcoming-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(16, 185, 129, 0.1));
}

.upcoming-img-placeholder span {
    font-size: 3rem;
}

.upcoming-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
}

.upcoming-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
}

.upcoming-desc {
    color: var(--text-white-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.upcoming-date {
    color: var(--accent-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.upcoming-badge {
    margin-top: auto;
    padding-top: 0.75rem;
}

.upcoming-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    width: fit-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .upcoming-grid {
        grid-template-columns: 1fr;
    }

    .upcoming-img {
        height: 180px;
    }

    .prizes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .prize-card {
        padding: 1.25rem 1rem;
    }

    .prize-emoji {
        font-size: 2.2rem;
    }

    .prize-name {
        font-size: 1rem;
    }
}

/* === PAGE CONTAINER (FAQ & Terms pages) === */
.page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.page-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-top: 1rem;
}

.back-link {
    display: inline-block;
    color: var(--text-white-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--accent-light);
}

.page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--text-white-muted);
    font-size: 1.05rem;
}

.page-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.btn-primary-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-pdf-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(30, 64, 175, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

/* FAQ & Terms page list styles */
.faq-answer ul,
.terms-block ul {
    margin: 0.75rem 0 0;
    padding-left: 1.5rem;
    list-style: none;
}

.faq-answer li,
.terms-block li {
    position: relative;
    padding-left: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-white-muted);
    line-height: 1.7;
    font-size: 0.92rem;
}

.faq-answer li::before,
.terms-block li::before {
    content: '•';
    position: absolute;
    left: -0.5rem;
    color: var(--accent);
    font-weight: bold;
}

@media (max-width: 768px) {
    .page-container {
        padding: 1.5rem 1rem 3rem;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .info-links-section {
        margin-top: 2rem;
    }
}

/* ===== PRIZE SHOWCASE ===== */
.prize-showcase {
    text-align: center;
    padding: 2.5rem 1.5rem;
    margin: 2rem 0 1.5rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(245, 158, 11, 0.04));
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 20px;
    position: relative;
}

.prize-badge-top {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.prize-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.prize-description {
    color: #cbd5e1;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    white-space: pre-line;
}

/* ===== GALLERY FEATURED ===== */
.gallery-featured {
    margin: 1.5rem auto 1rem;
    max-width: 420px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-featured:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.25);
}

.gallery-featured img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

/* ===== CAROUSEL ===== */
.gallery-carousel {
    position: relative;
    margin: 0.75rem auto;
    max-width: 700px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carousel-track-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    gap: 12px;
    transition: transform 0.35s ease;
}

.carousel-slide {
    flex: 0 0 160px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.25s ease;
}

.carousel-slide.active {
    border-color: rgba(251, 191, 36, 0.5);
    opacity: 1;
}

.carousel-slide:hover {
    opacity: 1;
    border-color: rgba(251, 191, 36, 0.3);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.carousel-btn:hover {
    background: rgba(251, 191, 36, 0.3);
    border-color: rgba(251, 191, 36, 0.5);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 0.5rem 0 1rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-dot.active {
    background: #fbbf24;
    transform: scale(1.3);
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.2s ease;
    line-height: 1;
}

.lightbox-btn:hover {
    background: rgba(251, 191, 36, 0.3);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ===== SORTEO DETAIL SECTION ===== */
.sorteo-detail-section {
    margin: 1.5rem 0 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.sorteo-detail-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e2e8f0;
    margin: 0 0 0.75rem;
}

.sorteo-detail-text {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.8;
    white-space: pre-line;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .prize-name {
        font-size: 1.5rem;
    }
    .gallery-featured {
        max-width: 100%;
    }
    .carousel-slide {
        flex: 0 0 120px;
        height: 120px;
    }
    .lightbox-btn {
        width: 38px;
        height: 38px;
        font-size: 1.8rem;
    }
}
