/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Nuevos colores de marca */
    --primary: #19A0D0;
    --primary-dark: #1489B8;
    --primary-light: #42B4E0;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --dark: #404040;
    
    /* Colores adicionales actualizados */
    --accent: #E1F4FA;
    --danger: #f44336;
    --warning: #ff9800;
    --success: #4CAF50;
    --gray: #6B7280;
    
    /* Gradientes modernos */
    --gradient-primary: linear-gradient(135deg, #19A0D0 0%, #42B4E0 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    --gradient-hover: linear-gradient(135deg, #1489B8 0%, #19A0D0 100%);
    
    /* Sombras modernas */
    --shadow: 0 4px 20px rgba(25, 160, 208, 0.1);
    --shadow-lg: 0 10px 40px rgba(25, 160, 208, 0.15);
    --shadow-hover: 0 8px 30px rgba(25, 160, 208, 0.2);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
    
    /* Efectos glassmorphism */
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animaciones globales espectaculares */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px) rotateX(30deg);
        filter: blur(3px);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        filter: blur(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px) rotateY(-15deg);
        filter: blur(3px);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
        filter: blur(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px) rotateY(15deg);
        filter: blur(3px);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
        filter: blur(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-5deg);
        filter: blur(10px);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05) rotate(2deg);
        filter: blur(2px);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0);
        filter: blur(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(25, 160, 208, 0.4);
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
        box-shadow: 0 0 0 10px rgba(25, 160, 208, 0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-15deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(200%) skewX(-15deg);
        opacity: 0;
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(25, 160, 208, 0.5),
                     0 0 10px rgba(25, 160, 208, 0.3),
                     0 0 15px rgba(25, 160, 208, 0.2);
        filter: brightness(1);
    }
    50% {
        text-shadow: 0 0 10px rgba(25, 160, 208, 0.8),
                     0 0 20px rgba(25, 160, 208, 0.5),
                     0 0 30px rgba(25, 160, 208, 0.3);
        filter: brightness(1.2);
    }
}

@keyframes morphing {
    0%, 100% {
        border-radius: 16px;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 25px 16px 25px 16px;
        transform: rotate(1deg);
    }
    50% {
        border-radius: 16px 25px 16px 25px;
        transform: rotate(0deg);
    }
    75% {
        border-radius: 25px 16px 25px 16px;
        transform: rotate(-1deg);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes textWave {
    0%, 100% { transform: translateY(0px); }
    25% { transform: translateY(-3px); }
    50% { transform: translateY(-6px); }
    75% { transform: translateY(-3px); }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -15px, 0);
    }
    70% {
        transform: translate3d(0, -8px, 0);
    }
    90% {
        transform: translate3d(0, -3px, 0);
    }
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%) scale(0.8);
        opacity: 0;
        filter: blur(10px);
    }
    50% {
        transform: translateY(-10%) scale(1.05);
        opacity: 0.8;
        filter: blur(2px);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%) scale(0.8);
        opacity: 0;
        filter: blur(10px);
    }
    50% {
        transform: translateY(10%) scale(1.05);
        opacity: 0.8;
        filter: blur(2px);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes tilt {
    0%, 50%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-2deg);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(0.9);
    }
    20%, 40%, 60%, 80% {
        transform: scale(1.1);
    }
    50%, 70% {
        transform: scale(1.05);
    }
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(25, 160, 208, 0.5),
                    0 0 10px rgba(25, 160, 208, 0.4),
                    0 0 15px rgba(25, 160, 208, 0.3);
    }
    50% {
        box-shadow: 0 0 10px rgba(25, 160, 208, 0.8),
                    0 0 20px rgba(25, 160, 208, 0.6),
                    0 0 30px rgba(25, 160, 208, 0.4);
    }
}

@keyframes wiggle {
    0%, 7% { transform: rotateZ(0); }
    15% { transform: rotateZ(-15deg); }
    20% { transform: rotateZ(10deg); }
    25% { transform: rotateZ(-10deg); }
    30% { transform: rotateZ(6deg); }
    35% { transform: rotateZ(-4deg); }
    40%, 100% { transform: rotateZ(0); }
}

@keyframes zoomInRotate {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(-90deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-20px) translateX(10px) rotate(120deg);
        opacity: 1;
    }
    66% {
        transform: translateY(-10px) translateX(-10px) rotate(240deg);
        opacity: 0.8;
    }
}

@keyframes liquidMove {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(90deg) scale(1.05);
    }
    50% {
        border-radius: 50% 30% 60% 40% / 30% 40% 70% 60%;
        transform: rotate(180deg) scale(1);
    }
    75% {
        border-radius: 40% 70% 50% 60% / 70% 50% 40% 30%;
        transform: rotate(270deg) scale(1.05);
    }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blinkCursor {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary); }
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: linear-gradient(135deg, #f8fafc 0%, #e1f4fa 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(25, 160, 208, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(25, 160, 208, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(25, 160, 208, 0.13) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: particleFloat 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(25, 160, 208, 0.15), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(25, 160, 208, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(25, 160, 208, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(25, 160, 208, 0.1), transparent);
    background-repeat: repeat;
    background-size: 150px 120px;
    pointer-events: none;
    z-index: -1;
    animation: particleFloat 25s linear infinite reverse;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', serif;
    font-weight: 700;
}

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

/* Header Styles Modernizado con efectos espectaculares */
.site-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(25, 160, 208, 0.1);
    animation: slideInFromTop 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 160, 208, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    animation: scaleInX 1s ease 0.5s forwards;
}

@keyframes scaleInX {
    to { transform: scaleX(1); }
}

.header-top {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

.header-top::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
    box-shadow: 
        20px 10px 0 rgba(255, 255, 255, 0.4),
        -15px -10px 0 rgba(255, 255, 255, 0.3),
        30px -5px 0 rgba(255, 255, 255, 0.5);
}

.header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.header-info span {
    margin: 0 15px;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.header-info span:nth-child(1) { animation-delay: 0.1s; }
.header-info span:nth-child(2) { animation-delay: 0.2s; }
.header-info span:nth-child(3) { animation-delay: 0.3s; }

.header-info span:hover {
    transform: translateY(-3px) scale(1.05);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.header-info i {
    margin-right: 8px;
    color: var(--accent);
    font-size: 16px;
    animation: bounce 2s infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

.header-main {
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.header-main::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(25, 160, 208, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 60px;
    position: relative;
    z-index: 2;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    animation: fadeInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.logo-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(25, 160, 208, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.logo-link:hover::before {
    width: 200px;
    height: 200px;
}

.logo-link:hover {
    transform: scale(1.02);
    animation: tilt 0.6s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(25, 160, 208, 0.3));
    animation: wiggle 0.8s ease;
}

/* Logo Styles Modernizado con efectos espectaculares */
.logo-container {
    width: 150px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: var(--gradient-card);
    box-shadow: var(--shadow-card);
    position: relative;
    animation: morphing 8s ease-in-out infinite;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(25, 160, 208, 0.1),
        transparent,
        rgba(25, 160, 208, 0.05),
        transparent
    );
    animation: spin 10s linear infinite;
    z-index: 0;
}

.logo-container::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--gradient-card);
    border-radius: 10px;
    z-index: 1;
}

.logo-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 2;
}

.logo-text {
    flex: 1;
    min-width: 0;
    position: relative;
}

.logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(25, 160, 208, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.logo-link:hover .logo-text::before {
    transform: translateX(100%);
}

.logo-text h1 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 0;
    line-height: 1.2;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
    position: relative;
    z-index: 2;
}

.logo-text h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.6s ease;
}

.logo-link:hover .logo-text h1::after {
    width: 100%;
}

.logo-text p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
    font-style: italic;
    line-height: 1.2;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.logo-link:hover .logo-text p {
    opacity: 1;
    transform: translateX(3px);
    color: var(--primary);
}

.main-nav {
    animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    position: relative;
}

.main-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(25, 160, 208, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 1s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.main-nav:hover::before {
    width: 300px;
    height: 100px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    position: relative;
}

.main-nav li {
    position: relative;
    animation: fadeInDown 0.6s ease;
    animation-fill-mode: both;
}

.main-nav li:nth-child(1) { animation-delay: 0.1s; }
.main-nav li:nth-child(2) { animation-delay: 0.2s; }
.main-nav li:nth-child(3) { animation-delay: 0.3s; }

.main-nav li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(25, 160, 208, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.main-nav li:hover::before {
    width: 120px;
    height: 60px;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 10px 16px;
    font-size: 15px;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.main-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 160, 208, 0.1), transparent);
    transition: left 0.6s ease;
}

.main-nav a:hover::before {
    left: 100%;
}

.main-nav a:hover {
    color: var(--primary);
    transform: translateY(-3px) scale(1.05);
    text-shadow: 0 4px 8px rgba(25, 160, 208, 0.2);
    background: rgba(25, 160, 208, 0.05);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px 2px 0 0;
    transform: translateX(-50%);
}

.main-nav a:hover::after {
    width: 100%;
    box-shadow: 0 0 10px rgba(25, 160, 208, 0.5);
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    animation: fadeInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.btn-login, .btn-cart, .btn-check-tickets {
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    animation: zoomInRotate 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: both;
}

.btn-login { animation-delay: 0.1s; }
.btn-cart { animation-delay: 0.2s; }
.btn-check-tickets { animation-delay: 0.3s; }

.btn-login, .btn-check-tickets {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    color: white;
    box-shadow: var(--shadow);
    animation: gradientShift 8s ease infinite;
}

.btn-login::before, .btn-check-tickets::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-login:hover::before, .btn-check-tickets:hover::before {
    left: 100%;
}

.btn-login::after, .btn-check-tickets::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.btn-login:hover::after, .btn-check-tickets:hover::after {
    width: 300px;
    height: 300px;
}

.btn-login:hover, .btn-check-tickets:hover {
    background: var(--gradient-hover);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-hover);
    animation: neonPulse 1s ease infinite;
}

.btn-cart {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--primary);
    position: relative;
}

.btn-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 10px;
}

.btn-cart:hover::before {
    opacity: 1;
}

.btn-cart:hover {
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.btn-cart:hover .cart-count {
    background: rgba(255, 255, 255, 0.2);
    animation: heartbeat 0.8s ease infinite;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(25, 160, 208, 0.5);
    z-index: 2;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
    padding: 8px;
    border-radius: 8px;
}

.mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(25, 160, 208, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.mobile-menu-toggle:hover::before {
    width: 60px;
    height: 60px;
}

.mobile-menu-toggle:hover {
    color: var(--primary);
    transform: scale(1.2) rotate(90deg);
    animation: wiggle 0.6s ease;
}

/* Mobile Navigation Modernizado */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    border-left: 1px solid rgba(25, 160, 208, 0.1);
}

.mobile-nav.show {
    right: 0;
}

.mobile-nav-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 30px;
    color: var(--dark);
    transition: var(--transition);
}

.mobile-nav-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.mobile-nav ul {
    list-style: none;
    margin-bottom: auto;
}

.mobile-nav li {
    margin-bottom: 20px;
    animation: fadeInLeft 0.5s ease;
    animation-fill-mode: both;
}

.mobile-nav li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav li:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav li:nth-child(3) { animation-delay: 0.3s; }

.mobile-nav a {
    text-decoration: none;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid transparent;
}

.mobile-nav a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
    transform: translateX(10px);
}

/* Hashtag Bar Modernizado */
.hashtag-bar {
    background: var(--accent);
    padding: 12px 0;
    border-top: 1px solid var(--primary-light);
    position: relative;
    overflow: hidden;
}

.hashtag-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 160, 208, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.hashtag-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hashtag-content span {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
}

.hashtag-content span:hover {
    transform: scale(1.05);
    color: var(--primary-dark);
}

/* Hero Section Modernizado con efectos espectaculares */
.hero-section {
    background: var(--gradient-primary);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
    filter: blur(1px);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    filter: blur(2px);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .container::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
    box-shadow: 
        100px 50px 0 rgba(255, 255, 255, 0.2),
        -80px 30px 0 rgba(255, 255, 255, 0.25),
        150px -20px 0 rgba(255, 255, 255, 0.15),
        -120px -40px 0 rgba(255, 255, 255, 0.2),
        200px 80px 0 rgba(255, 255, 255, 0.1);
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: liquidMove 20s ease-in-out infinite;
    z-index: -1;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    animation: slideInFromBottom 1s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.hero-content h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%) skewX(-15deg);
    animation: shimmer 3s ease-in-out infinite 2s;
}

.hero-content h2 span {
    display: inline-block;
    animation: textWave 2s ease-in-out infinite;
}

.hero-content h2 span:nth-child(1) { animation-delay: 0.1s; }
.hero-content h2 span:nth-child(2) { animation-delay: 0.2s; }
.hero-content h2 span:nth-child(3) { animation-delay: 0.3s; }
.hero-content h2 span:nth-child(4) { animation-delay: 0.4s; }

.hero-content p {
    font-size: 22px;
    opacity: 0.95;
    animation: slideInFromBottom 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.hero-content p::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(-50%);
    animation: scaleInX 1s ease 1.5s forwards;
}

/* Raffles Section Modernizado */
.raffles-main {
    padding: 100px 0;
    position: relative;
}

.raffles-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary);
    animation: fadeInUp 0.8s ease;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.raffles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.raffle-card-main {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    animation: slideInFromBottom 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: both;
    border: 1px solid rgba(25, 160, 208, 0.1);
    transform-style: preserve-3d;
}

.raffle-card-main:nth-child(1) { animation-delay: 0.1s; }
.raffle-card-main:nth-child(2) { animation-delay: 0.2s; }
.raffle-card-main:nth-child(3) { animation-delay: 0.3s; }
.raffle-card-main:nth-child(4) { animation-delay: 0.4s; }
.raffle-card-main:nth-child(5) { animation-delay: 0.5s; }
.raffle-card-main:nth-child(6) { animation-delay: 0.6s; }

.raffle-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    transform: scale(0.8);
}

.raffle-card-main::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(25, 160, 208, 0.1),
        transparent,
        rgba(25, 160, 208, 0.05),
        transparent
    );
    animation: spin 20s linear infinite;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -2;
}

.raffle-card-main:hover {
    transform: translateY(-15px) scale(1.03) rotateX(5deg);
    box-shadow: var(--shadow-hover);
    animation: morphing 2s ease-in-out infinite;
}

.raffle-card-main:hover::before {
    opacity: 0.03;
    transform: scale(1);
}

.raffle-card-main:hover::after {
    opacity: 1;
}

.raffle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    z-index: 10;
    animation: pulse 3s infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(25, 160, 208, 0.2);
    box-shadow: 0 4px 15px rgba(25, 160, 208, 0.3);
    /*position: relative;*/
    overflow: hidden;
}

.raffle-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

.raffle-badge.new {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite, neonPulse 2s ease infinite;
    color: white;
    box-shadow: var(--shadow);
}

.raffle-badge.active {
    background: linear-gradient(135deg, var(--success) 0%, #45a049 100%);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite, heartbeat 2s ease infinite;
    color: white;
}

.raffle-badge.cancelled {
    background: linear-gradient(135deg, var(--danger) 0%, #d32f2f 100%);
    color: white;
    animation: tilt 1s ease infinite;
}

.raffle-badge.paused {
    background: linear-gradient(135deg, var(--warning) 0%, #f57c00 100%);
    color: white;
    animation: wiggle 2s ease infinite;
}

.raffle-badge.completed {
    background: linear-gradient(135deg, var(--gray) 0%, #5a5a5a 100%);
    color: white;
    animation: none;
    opacity: 0.8;
}

.raffle-badge.sold-out {
    background: linear-gradient(135deg, #333 0%, #000 100%);
    color: white;
    animation: none;
}

.raffle-badge.last-tickets {
    background: linear-gradient(135deg, #ff5722 0%, #d84315 100%);
    color: white;
    animation: neonPulse 1s ease infinite, bounce 2s ease infinite;
}

.raffle-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(1.02) contrast(1.05);
    position: relative;
    overflow: hidden;
}

.raffle-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.raffle-card-main:hover .raffle-card-image::before {
    left: 100%;
}

.raffle-card-main:hover .raffle-card-image {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.15) contrast(1.15) saturate(1.2);
}

.raffle-card-content {
    padding: 30px;
    position: relative;
    background: var(--gradient-card);
}

.raffle-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(25, 160, 208, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.raffle-card-main:hover .raffle-card-content::before {
    opacity: 1;
}

.raffle-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.raffle-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.4;
    color: var(--dark);
}

.raffle-progress {
    margin-bottom: 25px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.progress-bar-main {
    background: #e5e7eb;
    height: 10px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill-main {
    background: var(--gradient-primary);
    height: 100%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 8px;
}

.progress-fill-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 2s infinite;
}

.progress-fill-main.complete {
    background: linear-gradient(135deg, var(--danger) 0%, #d32f2f 100%);
}

.progress-fill-main.cancelled {
    background: linear-gradient(135deg, var(--danger) 0%, #d32f2f 100%);
}

.progress-fill-main.paused {
    background: linear-gradient(135deg, var(--warning) 0%, #f57c00 100%);
}

.raffle-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.raffle-button {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.raffle-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.raffle-button:hover::before {
    left: 100%;
}

.raffle-button:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Detail View Styles Modernizado */
.detail-view {
    display: none;
    min-height: 100vh;
    background: var(--light-gray);
}

.detail-view.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.detail-view-wrapper {
    max-width: 768px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}

.header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.back-button, .share-button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.back-button:hover, .share-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-button:active {
    transform: scale(0.95);
}

.header-title {
    font-size: 22px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Gallery Modernizado */
.gallery {
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 0 0 24px 24px;
}

.gallery-scroll {
    display: flex;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-image {
    min-width: 100%;
    height: 400px;
    object-fit: cover;
    scroll-snap-align: center;
    transition: var(--transition);
    filter: brightness(1.1) contrast(1.05);
}

.gallery-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 20px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: var(--transition);
    cursor: pointer;
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Detail Container Modernizado */
.detail-container {
    padding: 30px;
}

.prize-section {
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease;
}

.prize-date {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.prize-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prize-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.raffle-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 25px;
    padding: 20px;
    background: var(--gradient-card);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-card);
}

/* Progress Section Modernizado */
.progress-section {
    background: var(--gradient-card);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(25, 160, 208, 0.1);
    animation: fadeInUp 0.6s ease 0.2s both;
}

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

.progress-title {
    font-weight: 700;
    color: var(--dark);
    font-size: 18px;
}

.progress-percentage {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-bar {
    background: #e5e7eb;
    height: 12px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    background: var(--gradient-primary);
    height: 100%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 8px;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 2s infinite;
}

.progress-fill.complete {
    background: linear-gradient(135deg, var(--success) 0%, #45a049 100%);
}

.progress-fill.cancelled {
    background: linear-gradient(135deg, var(--danger) 0%, #d32f2f 100%);
}

.progress-fill.paused {
    background: linear-gradient(135deg, var(--warning) 0%, #f57c00 100%);
}

.progress-text {
    font-size: 14px;
    color: var(--gray);
    text-align: center;
    font-weight: 500;
}

/* Quick Buy Section Modernizado */
.quick-buy-section {
    background: white;
    padding: 30px 0;
    border-top: 1px solid rgba(25, 160, 208, 0.1);
    margin-top: 30px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quick-buy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.quick-buy-btn {
    background: white;
    border: 2px solid var(--primary);
    padding: 20px;
    border-radius: var(--radius);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.quick-buy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.quick-buy-btn:hover::before {
    left: 0;
}

.quick-buy-btn:hover {
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.quick-buy-btn.popular {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
    animation: pulse 3s infinite;
}

.popular-tag {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 0px 0px 15px 15px;
    font-size: 12px;
    white-space: nowrap;
    font-weight: 600;
    box-shadow: var(--shadow-card);
}

/* Custom Amount Modernizado */
.custom-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    animation: scaleIn 0.6s ease 0.6s both;
}

.amount-control {
    width: 52px;
    height: 52px;
    border: 2px solid var(--primary);
    background: white;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--primary);
    font-weight: 700;
    box-shadow: var(--shadow-card);
}

.amount-control:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow);
}

.amount-display {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    min-width: 80px;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buy Button Modernizado */
.buy-button {
    width: 100%;
    padding: 20px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.6s ease 0.8s both;
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.buy-button:hover::before {
    left: 100%;
}

.buy-button:hover:not(:disabled) {
    background: var(--gradient-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.buy-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.buy-button.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.buy-button.secondary:hover {
    background: var(--primary);
    color: white;
}

/* PagoAPago Button Modernizado */
.pagoapago-button {
    background: linear-gradient(270deg, #EE60FA 0%, #6F0BFF 100%) !important;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    border: none !important;
    color: white !important;
    position: relative;
    overflow: hidden;
}
.pagoapago-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.pagoapago-button:hover::before {
    left: 100%;
}

.pagoapago-button:hover {
    background: linear-gradient(135deg, #5A09CC 0%, #8F30D4 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(111, 11, 255, 0.4);
}

.pagoapago-logo {
    height: 32px;
    width: auto;
    filter: brightness(1.2);
}

.pagoapago-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.pagoapago-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.pagoapago-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    display: block;
}

.pagoapago-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    display: block;
}

/* Payment Separator Modernizado */
.payment-separator {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.payment-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.payment-separator span {
    background: white;
    padding: 0 20px;
    color: var(--gray);
    font-size: 14px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Details Section Modernizado */
.details-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(25, 160, 208, 0.1);
    animation: fadeInUp 0.6s ease 1s both;
}

.details-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prize-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.prize-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--gradient-card);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-card);
}

.prize-item:hover {
    border-color: var(--primary);
    transform: translateX(8px) scale(1.02);
    box-shadow: var(--shadow);
}

.prize-icon {
    font-size: 36px;
    margin-right: 20px;
}

.prize-position {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-right: 20px;
    min-width: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prize-item-info {
    flex: 1;
}

.prize-item-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 18px;
}

.prize-item-time {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.info-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--accent);
    border: 2px solid var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
    box-shadow: var(--shadow-card);
}

.info-icon {
    font-size: 28px;
}

.info-text {
    font-size: 15px;
    font-weight: 600;
}

/* Footer Modernizado con efectos espectaculares */
.site-footer {
    background: var(--gradient-primary);
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
    color: white;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>'),
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0.3;
    animation: particleFloat 30s ease-in-out infinite;
}

.site-footer::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
    z-index: 2;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.footer-top::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 3;
}

.footer-column {
    animation: slideInFromBottom 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: both;
    position: relative;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 12px;
}

.footer-column:hover::before {
    opacity: 1;
}

.footer-column h3 {
    margin-bottom: 25px;
    color: white;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    animation: glow 3s ease-in-out infinite;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    transition: width 0.8s ease;
    border-radius: 2px;
}

.footer-column:hover h3::after {
    width: 60px;
}

.footer-column p {
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-column:hover p {
    color: rgba(255,255,255,0.95);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo-container {
    max-width: 160px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    border: 0px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    animation: spin 15s linear infinite;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.footer-logo-container:hover::before {
    opacity: 1;
}

.footer-logo-container:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    animation: tilt 2s ease infinite;
}

.footer-logo-img {
    display: block;
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    /*filter: brightness(0) invert(1);*/
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.footer-logo-container:hover .footer-logo-img {
    /*filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));*/
    animation: wiggle 0.8s ease;
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-8px) scale(1.15) rotate(360deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    animation: neonPulse 1s ease infinite;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
    position: relative;
}

.footer-column ul li::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    transition: width 0.4s ease;
    transform: translateY(-50%);
}

.footer-column ul li:hover::before {
    width: 10px;
}

.footer-column ul a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.footer-column ul a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.4s ease;
}

.footer-column ul a:hover::after {
    width: 100%;
}

.footer-column ul a:hover {
    color: white;
    transform: translateX(10px) scale(1.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hashtag-list p {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.hashtag-list p::before {
    content: '#';
    position: absolute;
    left: -20px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.hashtag-list p:hover::before {
    left: -25px;
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 0.6s ease;
}

.hashtag-list p:hover {
    color: white;
    transform: scale(1.08) translateX(5px);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    transition: var(--transition);
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.contact-item i {
    color: var(--accent);
    width: 24px;
    font-size: 18px;
    animation: bounce 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

.contact-item:hover i {
    animation: wiggle 0.6s ease, neonPulse 1s ease infinite;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    background: var(--primary-dark);
    padding: 25px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    animation: shimmer 6s ease-in-out infinite;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.footer-bottom p:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-signature {
    color: var(--accent);
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
    animation: glow 4s ease-in-out infinite, fadeInUp 0.6s ease 0.3s both;
    cursor: pointer;
}

.footer-signature:hover {
    animation: textWave 1s ease, glow 1s ease-in-out infinite;
    transform: scale(1.05);
}

/* Modals Modernizados */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 160, 208, 0.50);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3000;
    padding: 20px;
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(25, 160, 208, 0.1);
}

#checkTicketsModal .modal-content {
    max-height: 80vh;
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(25, 160, 208, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-card);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--light-gray);
    color: var(--dark);
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(25, 160, 208, 0.1);
    background: var(--light-gray);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Order Summary Modernizado */
.order-summary {
    margin: 0;
    padding: 0;
}

.modal-body .summary-item,
.order-summary .summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    line-height: 1.4;
    min-height: 30px;
    height: auto;
    text-align: left;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    flex-direction: row;
    border-left: none;
    border-right: none;
    border-top: none;
    transition: var(--transition-fast);
}

.modal-body .summary-item span,
.order-summary .summary-item span {
    line-height: 1.4;
    padding: 0;
    margin: 0;
    display: inline-block;
    font-weight: 500;
}

.modal-body .summary-item:hover,
.order-summary .summary-item:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
    background: rgba(25, 160, 208, 0.05);
}

.modal-body .summary-item.total,
.order-summary .summary-item.total {
    border-bottom: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    background: var(--gradient-card);
    padding: 12px 15px;
    border-radius: 12px;
    margin-top: 8px;
    line-height: 1.4;
    box-shadow: var(--shadow-card);
}

.terms-text {
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    margin-top: 20px;
    line-height: 1.5;
}

.terms-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.terms-text a:hover {
    text-decoration: underline;
}

/* Lottery Modal Modernizado */
.lottery-modal {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.lottery-modal .modal-header {
    border-bottom: none;
    background: transparent;
}

.lottery-modal .modal-title {
    color: white;
    text-align: center;
    width: 100%;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lottery-container {
    padding: 50px 25px;
    text-align: center;
}

.lottery-machine {
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 35px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slot-machine {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 35px;
}

.slot {
    width: 70px;
    height: 90px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.slot-numbers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation: spin 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slot-number {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
}

@keyframes spin {
    0% { transform: translateY(-900px); }
    100% { transform: translateY(0); }
}

.lottery-text {
    font-size: 20px;
    opacity: 0.95;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Success Modal Modernizado */
.success-message {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    font-weight: 500;
}

.tickets-display {
    margin-bottom: 30px;
}

/* Toast Modernizado */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 20px 30px;
    background: rgba(64, 64, 64, 0.95);
    color: white;
    border-radius: var(--radius);
    transform: translateY(100px);
    transition: var(--transition);
    z-index: 10000;
    max-width: 400px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toast.show {
    transform: translateY(0);
    animation: fadeInRight 0.4s ease;
}

.toast.success {
    background: rgba(76, 175, 80, 0.95);
    border-color: rgba(76, 175, 80, 0.3);
}

.toast.error {
    background: rgba(244, 67, 54, 0.95);
    border-color: rgba(244, 67, 54, 0.3);
}

.toast.warning {
    background: rgba(255, 152, 0, 0.95);
    border-color: rgba(255, 152, 0, 0.3);
}

.toast.info {
    background: rgba(25, 160, 208, 0.95);
    border-color: rgba(25, 160, 208, 0.3);
}

/* WhatsApp Float Modernizado */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Loading Modernizado */
.loading {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Auth Forms Modernizado */
.auth-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(25, 160, 208, 0.1);
    background: var(--light-gray);
    border-radius: 12px 12px 0 0;
}

.auth-tab {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    border-radius: 12px 12px 0 0;
}

.auth-tab.active {
    color: var(--primary);
    background: white;
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 5px;
}

.form-group input, .form-group select {
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: var(--transition);
    background: white;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(25, 160, 208, 0.1);
}

/* ID Input Group Modernizado */
.id-input-group {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.id-type-select {
    width: 80px;
    flex-shrink: 0;
    padding: 15px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    transition: var(--transition);
    font-weight: 600;
}

.id-number-input {
    flex: 1;
    min-width: 0;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: var(--transition);
}

.id-type-select:focus,
.id-number-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(25, 160, 208, 0.1);
}

/* Buyer Info Section Modernizado */
.buyer-info-section {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    margin: 20px 0;
    border: none;
    border-top: 2px solid rgba(25, 160, 208, 0.1);
    height: 0;
}

/* Payment Timer Modernizado */
.payment-timer {
    background: var(--accent);
    border: 2px solid var(--primary-light);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 600;
    animation: pulse 2s infinite;
}

.payment-details {
    background: var(--gradient-card);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-card);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 500;
}

.payment-loading {
    text-align: center;
    margin-top: 35px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 25px;
}

/* Tickets Grid Modernizado */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.ticket-item {
    background: var(--gradient-card);
    border: 2px dashed var(--primary-light);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.ticket-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 12px;
}

.ticket-item:hover::before {
    opacity: 0.1;
    transform: scale(1);
}

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

.ticket-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Courier New', monospace;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(25, 160, 208, 0.2);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ticket-info {
    font-size: 12px;
    color: var(--gray);
    margin-top: 8px;
    font-weight: 500;
}

/* Confetti Modernizado */
.confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

.confetti-piece {
    position: absolute;
    width: 12px;
    height: 12px;
    animation: confetti-fall 4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

@keyframes confetti-fall {
    to {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Raffle Card States Modernizado */
.raffle-card-main.sold-out {
    opacity: 0.7;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.raffle-card-main.sold-out:hover {
    transform: none;
    box-shadow: var(--shadow-card);
}

.raffle-card-image.grayscale {
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.8;
}

.sold-out-badge {
    background: linear-gradient(135deg, var(--danger) 0%, #d32f2f 100%) !important;
    color: white !important;
    animation: none !important;
}

.warning-badge {
    background: linear-gradient(135deg, var(--warning) 0%, #f57c00 100%) !important;
    color: white !important;
}

.progress-fill-main.complete {
    background: linear-gradient(135deg, var(--danger) 0%, #d32f2f 100%);
}

.tickets-remaining {
    text-align: center;
    color: var(--warning);
    font-size: 12px;
    font-weight: 700;
    margin-top: 8px;
    animation: pulse 2s infinite;
}

.raffle-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none;
}

.raffle-button:disabled:hover {
    background: #ccc;
}

/* Search Section Modernizado */
.search-section {
    margin-bottom: 35px;
}

.search-description {
    text-align: center;
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
}

.search-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(25, 160, 208, 0.1);
    background: var(--light-gray);
    border-radius: 12px 12px 0 0;
}

.search-tab {
    flex: 1;
    padding: 18px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px 12px 0 0;
}

.search-tab.active {
    color: var(--primary);
    background: white;
}

.search-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.search-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.search-input-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
}

.search-input-group input {
    padding: 18px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: var(--transition);
    background: white;
}

.search-input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(25, 160, 208, 0.1);
}

.search-button {
    width: 100%;
    padding: 20px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.search-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.search-button:hover::before {
    left: 100%;
}

.search-button:hover:not(:disabled) {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.search-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

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

.search-button-text {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.search-button-text i {
    flex-shrink: 0;
}

/* Search Results Modernizado */
.search-results {
    animation: fadeInUp 0.6s ease;
}

.search-summary {
    background: var(--gradient-card);
    padding: 30px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.search-summary::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -4px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    opacity: 0.05;
    z-index: -1;
}

.search-summary h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
}

.summary-item {
    text-align: center;
    background: white;
    padding: 25px 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 2px solid transparent;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.summary-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 160, 208, 0.1), transparent);
    transition: left 0.6s;
}

.summary-item:hover::before {
    left: 100%;
}

.summary-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.summary-item.highlight-winner {
    background: linear-gradient(135deg, #fff, #f0fff4);
    border-color: var(--success);
}

.summary-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
    line-height: 1;
    transition: var(--transition);
}

.summary-item:hover .summary-icon {
    transform: scale(1.2);
}

.summary-number {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-item.highlight-winner .summary-number {
    background: linear-gradient(135deg, var(--success) 0%, #45a049 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    display: block;
    line-height: 1.3;
    word-wrap: break-word;
    max-width: 100%;
    padding: 0 5px;
}

/* Raffle Groups Modernizado */
.raffle-group {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 1px solid rgba(25, 160, 208, 0.1);
}

.raffle-group-header {
    background: var(--gradient-primary);
    color: white;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
    min-height: auto;
}

.raffle-group-header:hover {
    background: var(--gradient-hover);
}

.raffle-image {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.raffle-group-header:hover .raffle-image {
    transform: scale(1.1);
}

.raffle-info {
    flex: 1;
}

.raffle-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.2;
}

.raffle-meta {
    opacity: 0.9;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
}

.raffle-stats {
    text-align: right;
}

.ticket-count {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.ticket-count-label {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1;
    font-weight: 500;
}

.raffle-status {
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    display: inline-block;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.raffle-status.active {
    background: rgba(76, 175, 80, 0.9);
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.raffle-status.completed {
    background: rgba(117, 117, 117, 0.9);
    color: white;
    box-shadow: 0 2px 8px rgba(117, 117, 117, 0.3);
}

.raffle-status.cancelled {
    background: rgba(244, 67, 54, 0.9);
    color: white;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}

.expand-icon {
    font-size: 22px;
    transition: var(--transition);
}

.raffle-group.expanded .expand-icon {
    transform: rotate(180deg);
}

/* Tickets Grid Modernizado */
.raffle-tickets {
    padding: 20px;
    background: var(--light-gray);
    display: none;
}

.raffle-group.expanded .raffle-tickets {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.ticket-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 160, 208, 0.1), transparent);
    transition: left 0.5s;
}

.ticket-card:hover::before {
    left: 100%;
}

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

.ticket-card.winner {
    border-color: var(--success);
    background: linear-gradient(135deg, #fff, #f0fff4);
    animation: winnerGlow 3s ease-in-out infinite;
}

@keyframes winnerGlow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(76, 175, 80, 0.3),
                    0 0 16px rgba(76, 175, 80, 0.2),
                    0 0 24px rgba(76, 175, 80, 0.1);
    }
    50% {
        box-shadow: 0 0 16px rgba(76, 175, 80, 0.5),
                    0 0 32px rgba(76, 175, 80, 0.3),
                    0 0 48px rgba(76, 175, 80, 0.2);
    }
}

.ticket-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Courier New', monospace;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ticket-info {
    font-size: 11px;
    color: var(--gray);
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
}

.winner-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    box-shadow: var(--shadow);
    animation: pulse 2s infinite;
}

/* No Results Modernizado */
.no-results {
    text-align: center;
    padding: 50px 25px;
    color: var(--gray);
}

.no-results-icon {
    font-size: 64px;
    margin-bottom: 25px;
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

.no-results h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 24px;
    font-weight: 700;
}

.no-results p {
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 500;
}

/* Ticket Detail Modal Modernizado */
.ticket-detail-content {
    padding: 25px 0;
}

.ticket-detail-header {
    text-align: center;
    margin-bottom: 35px;
    padding: 25px;
    background: var(--gradient-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.ticket-detail-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Courier New', monospace;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ticket-detail-raffle {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.ticket-detail-date {
    color: var(--gray);
    font-size: 15px;
    font-weight: 500;
}

.ticket-detail-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 12px;
}

.info-label {
    font-weight: 600;
    color: var(--gray);
    font-size: 14px;
}

.info-value {
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
}

.winner-announcement {
    background: linear-gradient(135deg, var(--success), #43a047);
    color: white;
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.winner-announcement h3 {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 800;
}

.winner-announcement p {
    opacity: 0.95;
    font-size: 16px;
    font-weight: 500;
}

/* Responsive Design Modernizado */
@media (max-width: 768px) {
    .header-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-logo-container {
        max-width: 140px;
        height: 55px;
    }
    
    .logo-container {
        width: 130px;
        height: 50px;
    }
    
    .logo-img {
        max-width: 130px;
        max-height: 100px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 11px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-actions span {
        display: none;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .raffles-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .quick-buy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-image {
        height: 300px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .hashtag-content {
        font-size: 12px;
    }
    
    .btn-check-tickets {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .btn-check-tickets i {
        font-size: 14px;
    }
    
    .search-button {
        font-size: 14px;
        padding: 16px;
    }
    
    .search-button-text {
        display: flex !important;
        align-items: center;
        gap: 8px;
        font-size: 14px;
    }
    
    .search-tabs {
        flex-direction: column;
    }
    
    .search-tab {
        border-bottom: 1px solid rgba(25, 160, 208, 0.1);
    }
    
    .search-tab.active::after {
        display: none;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .summary-item {
        padding: 20px;
        min-height: auto;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
    }
    
    .summary-icon {
        font-size: 32px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .summary-number {
        font-size: 28px;
        margin-bottom: 0;
        margin-right: 10px;
    }
    
    .summary-label {
        font-size: 14px;
        text-align: left;
        padding: 0;
    }
    
    .raffle-group-header {
        flex-direction: row;
        text-align: left;
        gap: 12px;
        padding: 15px 18px;
    }
    
    .raffle-image {
        width: 40px;
        height: 40px;
    }
    
    .raffle-title {
        font-size: 14px;
    }
    
    .raffle-meta {
        font-size: 11px;
    }
    
    .ticket-count {
        font-size: 18px;
    }
    
    .raffle-stats {
        text-align: right;
    }
    
    .tickets-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }
    
    .ticket-card {
        padding: 12px;
    }
    
    .ticket-number {
        font-size: 16px;
    }
    
    .ticket-info {
        font-size: 10px;
    }
    
    .ticket-detail-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-logo-container {
        max-width: 120px;
        height: 50px;
    }
    
    .logo-container {
        width: 110px;
        height: 50px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .logo-img {
        max-width: 110px;
        max-height: 100px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .raffles-title {
        font-size: 32px;
    }

    .prize-title {
        font-size: 26px;
    }

    .prize-price {
        font-size: 28px;
    }
    
    .raffle-description {
        font-size: 15px;
        padding: 18px;
        margin-bottom: 20px;
    }

    .modal-content {
        margin: 10px;
    }
    
    .id-input-group {
        gap: 8px;
    }
    
    .id-type-select {
        width: 70px;
        padding: 15px 8px;
        font-size: 15px;
    }
    
    .id-number-input {
        padding: 15px 12px;
        font-size: 15px;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .search-summary {
        padding: 25px 20px;
    }
    
    .search-summary h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .summary-item {
        padding: 18px;
        gap: 12px;
    }
    
    .summary-icon {
        font-size: 28px;
    }
    
    .summary-number {
        font-size: 24px;
    }
    
    .summary-label {
        font-size: 13px;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
    }
}

/* Copy Button Styles */
.copy-button {
    width: 33% !important;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-card);
}

.copy-button:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.copy-button:active {
    transform: translateY(0);
}

.copy-all-button {
    background: linear-gradient(135deg, var(--success) 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
    box-shadow: var(--shadow);
}

.copy-all-button:hover {
    background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Payment Info Styles */
.payment-info-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.info-group {
    display: flex;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item span {
    color: var(--gray);
    font-size: 15px;
    font-weight: 500;
}

.info-item strong {
    color: var(--primary);
    font-size: 17px;
    font-weight: 700;
}

.info-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    background: var(--light-gray);
    border: 2px solid rgba(25, 160, 208, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray);
    font-weight: 600;
}

.action-btn:hover {
    background: white;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Payment iframe styles */
.payment-iframe-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 160, 208, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.payment-iframe-container {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    height: 600px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(25, 160, 208, 0.2);
}

.payment-iframe-header {
    padding: 25px;
    border-bottom: 1px solid rgba(25, 160, 208, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gradient-card);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.payment-iframe-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-iframe-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-iframe-close:hover {
    background: var(--light-gray);
    color: var(--dark);
    transform: rotate(90deg);
}

.payment-iframe-info {
    padding: 20px 25px;
    background: var(--light-gray);
    border-bottom: 1px solid rgba(25, 160, 208, 0.1);
    position: relative;
    z-index: 10;
    margin-top: 5px;
}

.payment-info-wrapper {
    width: 100%;
}

.payment-iframe-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    padding-top: 10px;
    background: var(--light-gray);
}

.payment-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.payment-iframe-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.payment-iframe-loading .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

/* Final responsive adjustments */
@media (max-width: 768px) {
    .payment-iframe-container {
        max-height: 90vh;
        height: auto;
        max-width: 100%;
        border-radius: 0;
        margin: 20px 0;
    }
    
    .payment-iframe-overlay {
        padding: 0;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .payment-iframe-header {
        padding: 20px;
        position: sticky;
        top: 0;
        background: white;
        z-index: 20;
        box-shadow: var(--shadow-card);
        border-radius: 0;
    }
    
    .payment-iframe-title {
        font-size: 18px;
    }
    
    .payment-iframe-info {
        padding: 15px 20px;
        margin-top: 0;
        position: sticky;
        top: 70px;
        background: var(--light-gray);
        z-index: 15;
        box-shadow: var(--shadow-card);
    }
    
    .payment-info-compact {
        gap: 12px;
        flex-wrap: wrap;
        padding: 8px 0;
    }
    
    .info-group {
        gap: 15px;
        flex: 1 1 100%;
        justify-content: space-between;
        margin-bottom: 10px;
    }
    
    .info-item {
        font-size: 13px;
        gap: 5px;
        flex: 0 0 auto;
    }
    
    .info-actions {
        flex: 0 0 auto;
        margin-left: 0;
        gap: 8px;
    }
    
    .info-item span {
        font-size: 12px;
    }
    
    .info-item strong {
        font-size: 14px;
    }
    
    .action-btn {
        width: 36px;
        height: 36px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    .action-btn i {
        font-size: 14px;
    }
    
    .payment-iframe-wrapper {
        min-height: 500px;
    }
}