/* ==========================================================================
   CSS SYSTEM: SKYBYAI PREMIUM ROULETTE (PATRIOTIC EDITION)
   ========================================================================== */

/* Variables and Reset */
:root {
    --bg-dark: #0a0813;
    --bg-card: rgba(22, 19, 36, 0.75);
    --primary-red: #D2122E;
    --primary-red-hover: #b00f24;
    --gold: #FFD700;
    --gold-dark: #C5A059;
    --gold-light: #FFF099;
    --white: #ffffff;
    --text-muted: #a09cb0;
    --glass-border: rgba(255, 255, 255, 0.07);
    --gold-border: rgba(255, 215, 0, 0.15);
    --success: #00E676;
    
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Cinzel', Georgia, serif;
    
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-gold-glow: 0 0 25px rgba(255, 215, 0, 0.15);
    --shadow-red-glow: 0 0 25px rgba(210, 18, 46, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    position: relative;
}

/* Background Glowing Orbs */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -2;
    pointer-events: none;
    opacity: 0.25;
}

.bg-glow-1 {
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: floatGlow 15s ease-in-out infinite alternate;
}

.bg-glow-2 {
    background: radial-gradient(circle, #3e1b70 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: floatGlow 20s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
}

/* Patriotic Top Accent Line */
.patriotic-accent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--primary-red) 0%, 
        var(--primary-red) 40%, 
        var(--white) 40%, 
        var(--white) 60%, 
        var(--primary-red) 60%, 
        var(--primary-red) 100%
    );
    z-index: 100;
}

/* App Container Layout */
.app-container {
    width: 100%;
    max-width: 650px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 10;
    margin: auto;
}

/* Header Styles */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.logo {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text-sky {
    color: var(--white);
}

.logo-text-ai {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sound-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sound-control:hover {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.sound-control.muted i::before {
    content: "\f6a9"; /* FontAwesome mute icon */
}

/* Main Card Glass Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium), var(--shadow-red-glow);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

/* View Sections and Transitions */
.view-section {
    display: none;
    flex-direction: column;
    align-items: center;
}

.view-section.active {
    display: flex;
    animation: fadeInSlide 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 1. REGISTRATION FORM STYLES */
.badge-peru {
    background: rgba(210, 18, 46, 0.12);
    border: 1px solid rgba(210, 18, 46, 0.3);
    color: #ff5263;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(210, 18, 46, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(210, 18, 46, 0); }
    100% { box-shadow: 0 0 0 0 rgba(210, 18, 46, 0); }
}

.title-primary {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.accent-title {
    background: linear-gradient(135deg, var(--white) 30%, #ffcbd1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.05rem;
    color: var(--gold);
    font-weight: 500;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Price Showcase Badge */
.price-showcase {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 15px 25px;
    width: 100%;
    margin-bottom: 25px;
}

.price-original {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-original span:first-child {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-original .strike {
    font-size: 1.3rem;
    color: #e57373;
    text-decoration: line-through;
    font-weight: 600;
}

.price-arrow {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.price-promo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-promo span:first-child {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-promo .highlight {
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.promo-text {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

/* Form Styles */
.register-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--gold-dark);
}

.form-group input {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1rem;
    color: var(--white);
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.08);
    background: rgba(0, 0, 0, 0.35);
}

.form-group.invalid input {
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(210, 18, 46, 0.1);
}

.error-msg {
    color: #e57373;
    font-size: 0.8rem;
    display: none;
    margin-top: 2px;
}

.form-group.invalid .error-msg {
    display: block;
}

/* Timer Duration Selector */
.timer-select-group {
    margin-bottom: 5px;
}

.timer-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}

.timer-opt {
    cursor: pointer;
    position: relative;
}

.timer-opt input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.opt-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 12px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.3s ease;
    text-align: center;
}

.timer-opt input:checked + .opt-btn {
    background: rgba(255, 215, 0, 0.08);
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.05);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-hover) 100%);
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(210, 18, 46, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(210, 18, 46, 0.45);
    background: linear-gradient(135deg, #ff1a38 0%, var(--primary-red) 100%);
}

.btn-primary:active {
    transform: translateY(1px);
}

/* 2. WHEEL SCREEN STYLES */
.title-secondary {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wheel-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 30px;
}

.wheel-outer-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Roulette Pin Pointer pointing down */
.wheel-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.wheel-canvas-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(0,0,0,0.6), var(--shadow-gold-glow);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #12101e;
    border: 4px solid var(--gold-dark);
}

#roulette-canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Spin Button Center */
.btn-spin-center {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #2a243e 0%, #171424 100%);
    border: 4px solid var(--gold);
    color: var(--white);
    font-family: var(--font-sans);
    cursor: pointer;
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-spin-center::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid var(--gold);
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.btn-spin-center:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5), 0 0 10px rgba(255,255,255,0.2);
    border-color: var(--white);
}

.btn-spin-center:active {
    transform: scale(0.95);
}

.btn-spin-center:disabled {
    cursor: not-allowed;
    filter: grayscale(0.5);
    opacity: 0.9;
}

.spin-text {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wheel-footer-info {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 15px;
}

/* 3. PRIZE CLAIM SCREEN STYLES */
.prize-congrats {
    text-align: center;
    margin-bottom: 25px;
}

.congrats-icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    font-size: 1.8rem;
    color: var(--gold);
    animation: floatIcon 3s ease-in-out infinite alternate;
}

@keyframes floatIcon {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.title-success {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--white) 20%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.congrats-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Physical Ticket Card Design */
.ticket-card {
    background: #110e1c;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    margin-bottom: 30px;
    overflow: hidden;
}

/* Side cut notches to look like ticket */
.ticket-card::before, .ticket-card::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: var(--bg-dark);
    border-radius: 50%;
    top: 60px; /* Aligned with divider line */
    z-index: 10;
}

.ticket-card::before {
    left: -12px;
    border-right: 1px solid var(--glass-border);
}

.ticket-card::after {
    right: -12px;
    border-left: 1px solid var(--glass-border);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 15px 24px;
}

.ticket-logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

.ticket-badge {
    background: var(--primary-red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.ticket-divider-line {
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    height: 1px;
    margin: 0 20px;
    position: relative;
}

.ticket-body {
    padding: 25px 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.ticket-label {
    color: var(--text-muted);
}

.ticket-value {
    font-weight: 500;
    color: var(--white);
    text-align: right;
}

.ticket-value.highlight-value {
    color: var(--white);
    font-weight: 600;
}

.font-serif {
    font-family: var(--font-serif);
    font-size: 0.95rem;
}

.ticket-price-row {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 10px 14px;
    border-radius: 10px;
    margin: 5px 0;
}

.price-tag {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold) !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

/* Bonus Box Inside Ticket */
.ticket-bonus-card {
    background: rgba(255, 215, 0, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.bonus-icon {
    font-size: 1.3rem;
    color: var(--gold);
}

.bonus-details {
    display: flex;
    flex-direction: column;
}

.bonus-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.bonus-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

/* Ticket Coupon Code Footer */
.ticket-footer {
    background: rgba(0, 0, 0, 0.25);
    padding: 18px 24px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.ticket-code-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.ticket-code-val {
    font-family: monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 6px;
}

/* Countdown Timer */
.countdown-container {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.countdown-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ff5263;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-num {
    font-size: 1.8rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 10px 14px;
    border-radius: 10px;
    min-width: 55px;
    text-align: center;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.time-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 6px;
}

.timer-colon {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-muted);
    padding-bottom: 22px;
    animation: blinkColon 1s infinite;
}

@keyframes blinkColon {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* QR Code Section */
.qr-container {
    text-align: center;
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
}

.qr-description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.qr-card {
    background: white;
    padding: 12px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

#qr-canvas {
    display: block;
    width: 160px;
    height: 160px;
}

/* Actions Section */
.action-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.btn-whatsapp {
    background: #25D366;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    background: #20ba59;
}

.btn-whatsapp:active {
    transform: translateY(1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 14px 24px;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255,255,255,0.15);
}

/* Footer Section */
.app-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
    line-height: 1.6;
    margin-top: 10px;
}

/* Confetti Canvas Overlay */
.confetti-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    pointer-events: none;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .glass-panel {
        padding: 30px 18px;
        border-radius: 16px;
    }
    
    .title-primary {
        font-size: 1.8rem;
    }
    
    .title-secondary {
        font-size: 1.6rem;
    }
    
    .title-success {
        font-size: 1.8rem;
    }
    
    .ticket-card::before, .ticket-card::after {
        top: 55px;
    }
    
    .ticket-header {
        padding: 15px 15px 10px 15px;
    }
    
    .ticket-body {
        padding: 18px 15px;
        gap: 12px;
    }
    
    .price-tag {
        font-size: 1.25rem;
    }
    
    .ticket-footer {
        padding: 14px 15px;
    }
    
    .ticket-code-val {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   CAROUSEL ESTILOS
   ========================================================================== */
.carousel-container {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
    background: rgba(17, 14, 28, 0.6);
    border: 1px solid var(--glass-border);
    padding: 15px 0;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.carousel-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scrollCarousel 25s linear infinite;
    padding: 0 15px;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-track img {
    height: 140px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,215,0,0.2);
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 7.5px)); }
}

/* ==========================================================================
   LANDSCAPE & SMALL HEIGHT SCREENS OPTIMIZATION
   ========================================================================== */
@media (max-height: 600px) and (orientation: landscape) {
    body {
        padding: 10px 0;
    }
    .glass-panel {
        padding: 20px 15px;
    }
    .roulette-container {
        transform: scale(0.65);
        margin: -60px 0;
    }
    .carousel-track img {
        height: 100px;
    }
    .title-primary {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    .promo-images img {
        max-height: 80px;
    }
}
