:root {
    --primary: #0c0e2a;
    --secondary: #ff3e7f;
    --accent: #00d2ff;
    --dark: #050715;
    --light: #f8f9ff;
    --success: #00e6a9;
    --text: #ffffff;
    --text-secondary: #a1a8d3;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --gradient: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(255, 62, 127, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 85% 30%, rgba(0, 210, 255, 0.1) 0%, transparent 20%);
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: rgba(5, 7, 21, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 12px;
    font-size: 24px;
    transform: rotate(15deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.logo-text span {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-top: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 62, 127, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 62, 127, 0.5);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: rgba(0, 210, 255, 0.1);
    transform: translateY(-3px);
}

/* ============================================
   HERO SLIDER MEJORADO - MÁS ALTO Y COMPACTO
   ============================================ */

/* Aumentar altura del slider a 80vh */
.hero-slider {
    margin-top: 20px;
    position: relative;
    height: 80vh; /* Cambiado de 600px a 80vh */
    min-height: 500px; /* Altura mínima para móviles */
    max-height: 800px; /* Altura máxima para no exagerar */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.slide.active {
    opacity: 1;
}

/* Ajustar contenido del slide para ser más compacto */
.slide-content {
    max-width: 500px; /* Reducido de 600px */
    background: rgba(5, 7, 21, 0.6); /* Más transparente */
    backdrop-filter: blur(8px); /* Menos blur */
    padding: 1.8rem; /* Reducido de 2.5rem */
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08); /* Borde más sutil */
    transform: translateY(30px); /* Menos movimiento */
    opacity: 0;
    transition: var(--transition);
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s; /* Transición más rápida */
}

/* Reducir tamaño de tipografía en el slider */
.slide h2 {
    font-size: 2.2rem; /* Reducido de 2.8rem */
    margin-bottom: 0.8rem;
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.slide p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem; /* Reducido de 2rem */
    font-size: 1rem; /* Reducido de 1.1rem */
    line-height: 1.5;
}

/* Mejorar botones del slider */
.slide .btn {
    padding: 0.7rem 1.5rem; /* Un poco más compacto */
    font-size: 0.9rem;
}

/* Ajustar controles del slider para nueva altura */
.slider-controls {
    position: absolute;
    bottom: 25px; /* Un poco más arriba */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}



/* Asegurar que las imágenes se vean bien en la nueva altura */
.slide .slide-content {
    margin-top: -5%; /* Centrar verticalmente mejor */
}

/* Efecto de parallax sutil para las imágenes de fondo */
.slide {
    background-attachment: fixed;
}

/* Products Section */
.section-title {
    text-align: center;
    margin: 5rem 0 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.product-card {
    background: linear-gradient(145deg, rgba(15, 18, 45, 0.7), rgba(5, 7, 21, 0.7));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 62, 127, 0.3);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.8rem;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.tickets-sold {
    background-color: rgba(0, 210, 255, 0.1);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.product-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--success);
}

/* Winners Section */
.winners-section {
    background: linear-gradient(to bottom, rgba(5, 7, 21, 0.7), rgba(15, 18, 45, 0.7));
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.winners-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.winner-card {
    background: rgba(5, 7, 21, 0.5);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.winner-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.2);
}

.winner-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--success);
    box-shadow: 0 0 20px rgba(0, 230, 169, 0.3);
}

.winner-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.winner-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.winner-date {
    color: var(--accent);
    font-weight: 600;
    margin-top: 1rem;
}

/* Terms Section */
.terms-section {
    padding: 5rem 0;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(5, 7, 21, 0.5);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.terms-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.terms-list {
    list-style: none;
    margin: 1.5rem 0;
}

.terms-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.terms-list li:before {
    content: '•';
    color: var(--secondary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.4rem;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, rgba(5, 7, 21, 0.9), var(--dark));
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    color: var(--text);
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(145deg, rgba(15, 18, 45, 0.95), rgba(5, 7, 21, 0.95));
    width: 90%;
    max-width: 700px;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(50px) scale(0.9);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    background: rgba(5, 7, 21, 0.5);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-header h2 {
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

/* Ticket Selector */
.ticket-selector {
    margin-bottom: 2rem;
}

.selector-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.search-box {
    display: flex;
    margin-bottom: 1.5rem;
    position: relative;
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text);
    font-size: 1rem;
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: calc(100% - 10px);
    padding: 0 1.5rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    transform: translateX(-3px);
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
    background: rgba(5, 7, 21, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ticket-number {
    padding: 0.8rem 0.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
}

.ticket-number:hover {
    background: rgba(0, 210, 255, 0.1);
    transform: translateY(-2px);
}

.ticket-number.selected {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 62, 127, 0.3);
}

.ticket-number.sold {
    background: rgba(255, 62, 127, 0.2);
    color: var(--text-secondary);
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
}

.ticket-number.sold:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--secondary);
    transform: rotate(-45deg);
}

.selected-tickets {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(5, 7, 21, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.selected-tickets h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

#selectedNumbers {
    color: var(--accent);
    font-weight: 600;
    min-height: 1.5rem;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #0c0e2a 0%, #1a1d4e 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid #ff3e7f;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(to right, #ff3e7f, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-text span {
    font-size: 12px;
    color: #a1a8d3;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* Footer Styles */
footer {
    background: linear-gradient(to bottom, #050715, #0c0e2a);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    margin-right: 12px;
    border-radius: 8px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text h2 {
    font-size: 22px;
    font-weight: 700;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.footer-logo-text span {
    font-size: 11px;
    color: #a1a8d3;
    letter-spacing: 1.2px;
    margin-top: 3px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.7rem;
    color: #fff;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #ff3e7f, #00d2ff);
    border-radius: 3px;
}

.footer-section p {
    color: #a1a8d3;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #a1a8d3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #00d2ff;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    color: #ff3e7f;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: linear-gradient(135deg, #ff3e7f, #00d2ff);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #a1a8d3;
    font-size: 0.9rem;
}

/* ESTILOS PARA EL MODAL DE REGISTRO, LOGIN Y RECUPERACION DE CONTRASEÑA */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(10px);
}

.auth-modal.active {
    display: flex;
    opacity: 1;
}

.auth-modal-content {
    background: linear-gradient(145deg, rgba(15, 18, 45, 0.95), rgba(5, 7, 21, 0.95));
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(50px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.auth-modal.active .auth-modal-content {
    transform: translateY(0) scale(1);
}

.auth-modal-header {
    background: rgba(5, 7, 21, 0.5);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-modal-header h2 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ff3e7f 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.close-auth-modal {
    background: none;
    border: none;
    color: #a1a8d3;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.close-auth-modal:hover {
    color: #ff3e7f;
    transform: rotate(90deg);
}

.auth-modal-body {
    padding: 2rem;
}

.auth-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    background: rgba(5, 7, 21, 0.3);
    border-radius: 50px;
    padding: 0.3rem;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 0.8rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
}

.auth-tab.active {
    background: linear-gradient(135deg, #ff3e7f 0%, #00d2ff 100%);
    color: white;
}

.auth-form.active {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #a1a8d3;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-group input:focus {
    outline: none;
    border-color: #00d2ff;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
    color: #a1a8d3;
}

.form-footer a {
    color: #00d2ff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-footer a:hover {
    color: #ff3e7f;
}

.form-errors {
    background: rgba(255, 62, 127, 0.1);
    border-left: 4px solid #ff3e7f;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    display: none;
}

.form-success {
    background: rgba(0, 230, 169, 0.1);
    border-left: 4px solid #00e6a9;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    display: none;
}

.password-input-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a1a8d3;
    cursor: pointer;
}

/* User Profile Styles */
.user-profile {
    position: relative;
    display: flex;
    align-items: center;
}

.profile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(145deg, rgba(15, 18, 45, 0.95), rgba(5, 7, 21, 0.95));
    border-radius: 10px;
    padding: 1rem;
    min-width: 200px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    z-index: 1000;
}

.user-profile:hover .profile-menu {
    display: block;
}

.profile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1rem;
    color: var(--text);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.profile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.profile-menu a i {
    width: 20px;
    text-align: center;
}

/* Profile Section Styles */
.profile-section {
    padding: 6rem 0 4rem;
    min-height: 100vh;
}

.profile-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.profile-sidebar {
    background: linear-gradient(145deg, rgba(15, 18, 45, 0.7), rgba(5, 7, 21, 0.7));
    border-radius: 20px;
    padding: 2rem;
    height: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-header {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

.profile-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-email {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(5, 7, 21, 0.5);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.profile-menu {
    list-style: none;
}

.profile-menu li {
    margin-bottom: 0.5rem;
}

.profile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1rem;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.profile-menu a:hover, .profile-menu a.active {
    background: var(--gradient);
    color: white;
}

.profile-menu a i {
    width: 20px;
    text-align: center;
}

.profile-content {
    background: linear-gradient(145deg, rgba(15, 18, 45, 0.7), rgba(5, 7, 21, 0.7));
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.info-group {
    margin-bottom: 1.5rem;
}

.info-group label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.info-group .info-value {
    font-size: 1.1rem;
    color: var(--text);
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.participations-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.participations-table th,
.participations-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.participations-table th {
    color: var(--text-secondary);
    font-weight: 600;
    background: rgba(5, 7, 21, 0.5);
}

.participations-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-active {
    background: rgba(0, 230, 169, 0.1);
    color: var(--success);
}

.status-completed {
    background: rgba(255, 62, 127, 0.1);
    color: var(--secondary);
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.prize-card {
    background: rgba(5, 7, 21, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.prize-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.2);
}

.prize-image {
    height: 160px;
    overflow: hidden;
}

.prize-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prize-info {
    padding: 1.2rem;
}

.prize-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.prize-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.prize-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(0, 210, 255, 0.1);
    color: var(--accent);
}

.profile-avatar-small {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    border: 2px solid var(--accent);
}

/* Asegurar que el header admin tenga la altura correcta */
.admin-dashboard .header-content {
    padding: 1rem 0;
    min-height: 70px;
    display: flex;
    align-items: center;
}

/* Prevenir que otros estilos interfieran */
.admin-dashboard header {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
}

/* ESTILOS PARA INDEX PHP */

/* Estilos para la página principal */
.hero {
    background: linear-gradient(135deg, #0c0e2a 0%, #1a1d4e 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjMGMwZTJhIiAvPjxwYXRoIGQ9Ik0wIDAgTDEwMCAxMDAiIHN0cm9rZT0iIzAwZDIwMCIgc3Ryb2tlLXdpZHRoPSIwLjUiIHN0cm9rZS1vcGFjaXR5PSIwLjEiIC8+PHBhdGggZD0iTTEwMCAwIEwwIDEwMCIgc3Ryb2tlPSIjZmYzZTdmIiBzdHJva2Utd2lkdGg9IjAuNSIgc3Ryb2tlLW9wYWNpdHk9IjAuMSIgLz48L3N2Zz4=');
    opacity: 0.3;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(to right, #ff3e7f, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #a1a8d3;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ff3e7f, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: #a1a8d3;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(145deg, rgba(15, 18, 45, 0.7), rgba(5, 7, 21, 0.7));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff3e7f 0%, #00d2ff 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: white;
}

.product-description {
    color: #a1a8d3;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 25px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, #ff3e7f 0%, #00d2ff 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-bar span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.ticket-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #00e6a9;
}

.closing-date {
    color: #a1a8d3;
    font-size: 0.9rem;
}

.closing-date i {
    margin-right: 0.5rem;
    color: #00d2ff;
}

.btn-full {
    width: 100%;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(145deg, rgba(15, 18, 45, 0.95), rgba(5, 7, 21, 0.95));
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(50px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    background: rgba(5, 7, 21, 0.5);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h2 {
    font-size: 1.5rem;
    background: linear-gradient(to right, #ff3e7f, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.close-modal {
    background: none;
    border: none;
    color: #a1a8d3;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #ff3e7f;
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.product-info-modal {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(5, 7, 21, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-info-modal p {
    margin-bottom: 0.5rem;
    color: #a1a8d3;
}

.product-info-modal span {
    color: white;
    font-weight: 600;
}

.selector-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.search-box {
    display: flex;
    margin-bottom: 1.5rem;
    position: relative;
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
}

.search-box input:focus {
    outline: none;
    border-color: #00d2ff;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: calc(100% - 10px);
    padding: 0 1.5rem;
    background: linear-gradient(135deg, #ff3e7f 0%, #00d2ff 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    transform: translateX(-3px);
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
    background: rgba(5, 7, 21, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ticket-number {
    padding: 0.8rem 0.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.ticket-number:hover {
    background: rgba(0, 210, 255, 0.1);
    transform: translateY(-2px);
}

.ticket-number.selected {
    background: linear-gradient(135deg, #ff3e7f 0%, #00d2ff 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 62, 127, 0.3);
}

.ticket-number.sold {
    background: rgba(255, 62, 127, 0.2);
    color: #a1a8d3;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
}

.ticket-number.sold:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ff3e7f;
    transform: rotate(-45deg);
}

.selected-tickets {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(5, 7, 21, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.selected-tickets h3 {
    margin-bottom: 1rem;
    color: white;
}

#selectedNumbers {
    color: #00d2ff;
    font-weight: 600;
    min-height: 1.5rem;
    margin-bottom: 1rem;
}

.selected-total {
    text-align: right;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00e6a9;
    margin-bottom: 1.5rem;
}

/* Footer styles */
footer {
    background: linear-gradient(to bottom, #050715, #0c0e2a);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-right: 12px;
    border-radius: 8px;
}

.footer-logo-text h2 {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(to right, #ff3e7f, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.footer-logo-text span {
    font-size: 11px;
    color: #a1a8d3;
    letter-spacing: 1.2px;
    margin-top: 3px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.7rem;
    color: white;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #ff3e7f, #00d2ff);
    border-radius: 3px;
}

.footer-section p {
    color: #a1a8d3;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #a1a8d3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #00d2ff;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    color: #ff3e7f;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #a1a8d3;
    font-size: 0.9rem;
}

/* ==============================================
   ESTILOS PARA PÁGINAS DE AUTENTICACIÓN
   ============================================== */

/* Contenedor principal que empuja el footer hacia abajo */
.main-content {
    min-height: calc(100vh - 200px); /* Ajusta según altura de header/footer */
    display: flex;
    align-items: center;
}

.auth-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0; /* Más espacio vertical */
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 62, 127, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.1) 0%, transparent 50%);
}

.auth-card {
    background: linear-gradient(145deg, rgba(15, 18, 45, 0.95), rgba(5, 7, 21, 0.95));
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 500px;
    margin: 2rem auto; /* Centrado y margen */
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron', sans-serif;
    text-align: center; /* Asegurar centrado */
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-align: center; /* Asegurar centrado */
}

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

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.auth-form input,
.auth-form textarea,
.auth-form select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
}

.auth-form input:focus,
.auth-form textarea:focus,
.auth-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.password-input-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.password-toggle:hover {
    color: var(--accent);
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin: 1.5rem 0;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0.5rem 0;
    transition: var(--transition);
}

.auth-links a:hover {
    color: var(--accent);
}

.form-errors {
    background: rgba(255, 62, 127, 0.1);
    border-left: 4px solid var(--secondary);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    display: none;
}

.form-errors p {
    margin: 0.3rem 0;
    color: var(--text);
}

.form-success {
    background: rgba(0, 230, 169, 0.1);
    border-left: 4px solid var(--success);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    display: none;
}

.form-success p {
    margin: 0;
    color: var(--text);
}

/* Estilos mejorados para seleccionar.php */
.rifa-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(145deg, rgba(15, 18, 45, 0.7), rgba(5, 7, 21, 0.7));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.rifa-image-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.rifa-image-frame {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
    background: rgba(5, 7, 21, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rifa-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rifa-info h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron', sans-serif;
}

.rifa-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.rifa-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.meta-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.meta-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
}

.meta-content {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.meta-value {
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}

/* Selector de Tickets mejorado */
.ticket-selector {
    background: linear-gradient(145deg, rgba(15, 18, 45, 0.7), rgba(5, 7, 21, 0.7));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.selector-header h2 {
    font-size: 1.6rem;
    color: var(--text);
    font-family: 'Orbitron', sans-serif;
}

.selector-actions {
    display: flex;
    gap: 1rem;
}

.search-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.ticket-grid-container {
    max-height: 500px;
    overflow-y: auto;
    padding: 1.5rem;
    background: rgba(5, 7, 21, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 1rem;
}

.ticket-number {
    position: relative;
    padding: 1.2rem 0.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    border: 2px solid transparent;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-number:hover:not(.sold) {
    background: rgba(0, 210, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(0, 210, 255, 0.3);
}

.ticket-number.selected {
    background: var(--gradient);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(255, 62, 127, 0.4);
    transform: translateY(-3px);
}

.ticket-number.sold {
    background: rgba(255, 62, 127, 0.15);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    border: 2px solid rgba(255, 62, 127, 0.3);
}

.ticket-digit {
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 1;
}

.ticket-number.sold .ticket-digit {
    color: rgba(255, 255, 255, 0.2);
    text-decoration: line-through;
}

.sold-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 62, 127, 0.1);
    border-radius: 10px;
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 600;
}

.sold-overlay i {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

/* Resumen mejorado */
.selection-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: rgba(5, 7, 21, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-info {
    flex: 1;
}

.summary-info h3 {
    margin-bottom: 1.5rem;
    color: var(--text);
    font-size: 1.3rem;
}

.selected-numbers {
    min-height: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.no-selection {
    color: var(--text-secondary);
    font-style: italic;
}

.selection-details {
    display: flex;
    gap: 2rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.detail-value {
    font-weight: 600;
    color: var(--text);
    font-size: 1.1rem;
}

.total-amount {
    color: var(--success) !important;
    font-size: 1.3rem !important;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Vista Expandida Elegante */
.ticket-section {
    margin-bottom: 2rem;
}

.ticket-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-grid-header h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.3rem;
}

.grid-stats {
    display: flex;
    gap: 1.5rem;
}

.stat-available {
    color: var(--success);
    font-weight: 600;
}

.stat-sold {
    color: var(--text-secondary);
}

.ticket-grid-expanded {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.ticket-number-expanded {
    position: relative;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-number-expanded:hover:not(.sold) {
    background: rgba(0, 210, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(0, 210, 255, 0.3);
}

.ticket-number-expanded.selected {
    background: var(--gradient);
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(255, 62, 127, 0.3);
    transform: translateY(-2px);
}

.ticket-number-expanded.sold {
    background: rgba(255, 62, 127, 0.1);
    cursor: not-allowed;
    border: 2px solid rgba(255, 62, 127, 0.2);
}

.ticket-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

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

.ticket-number-expanded.sold .ticket-digit {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
}

.sold-badge {
    color: var(--secondary);
    font-size: 0.7rem;
}

.quick-range {
    margin-top: 1.5rem;
}

.range-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.range-btn {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.range-btn:hover {
    background: rgba(0, 210, 255, 0.1);
    border-color: var(--accent);
}

/* Estilos para la selección de tickets */
.ticket-number-expanded.selected {
    border-color: #007bff;
    background-color: #e3f2fd;
    transform: scale(1.05);
}

.selected-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-height: 100px;
    overflow-y: auto;
}

.selected-number {
    background: #007bff;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

/* Botones deshabilitados */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Efectos de hover para tickets disponibles */
.ticket-number-expanded:not(.sold):not(.selected):hover {
    border-color: #007bff;
    background-color: #f8f9fa;
}

/* Estilos para página de pago */
.reserva-confirmada {
    max-width: 800px;
    margin: 0 auto;
}

.confirmacion-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 10px;
}

.reserva-codigo {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.producto-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #0f253b;
    border-radius: 10px;
    border: solid 1px #0f253b;
}

.producto-info img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.producto-datos {
    flex: 1;
}

.tickets-reservados {
    margin-bottom: 2rem;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    margin-top: 1rem;
}

.ticket-reservado {
    background: #007bff;
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
}

.resumen-pago {
    background: #0f253b;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: solid 1px #0f253b;
}

.pago-detalle {
    max-width: 300px;
}

.detalle-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.detalle-item.total {
    border-top: 2px solid #007bff;
    border-bottom: none;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.datos-transferencia {
    margin: 1rem 0;
}

.dato-bancario {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f1f1;
}

.instrucciones {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 1rem;
}

.nota {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.acciones-adicionales {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.metodos-pago {
    margin-bottom: 2rem;
}

.metodos-pago h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

.metodos-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.metodo-pago {
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: #0f0b1e;
}

.metodo-pago h3 {
    color: #007bff;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 0.5rem;
}

/* Sección Ganadores */
.winners-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
}

.winners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.winners-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.winners-section .section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.winners-section .section-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Grid de Ganadores */
.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.winner-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.winner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.winner-product-image {
    position: relative;
    margin-bottom: 20px;
}

.winner-product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.winner-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FFD700;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.winner-info h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.winner-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.winner-name,
.winner-ticket,
.winner-date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.winner-name i,
.winner-ticket i,
.winner-date i {
    width: 20px;
    color: #FFD700;
}

/* Estado sin ganadores */
.no-winners {
    text-align: center;
    padding: 60px 20px;
}

.no-winners-icon {
    font-size: 4rem;
    color: #FFD700;
    margin-bottom: 30px;
}

.no-winners h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.no-winners p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.no-winners-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.feature-item i {
    color: #FFD700;
    font-size: 1.2rem;
}

.profile-avatar-img {
    width: 200px;
    height: 200px;
    max-height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.avatar-placeholder {
    width: 200px;
    height: 200px;
    max-height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.avatar-placeholder i {
    font-size: 80px;
    color: white;
}

/* Transiciones mejoradas para el slider */
.hero-slider .slide {
    transition: opacity 0.8s ease-in-out !important;
}

.slider-dot {
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    transform: scale(1.2);
}

/* ============================================
   ESTILOS ESPECÍFICOS PARA BOTONES LEGALES PDF
   Prefijo: legal-download- para evitar conflictos
   ============================================ */

.legal-downloads-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    border-radius: 20px;
    border: 1px solid #e1e8ff;
    position: relative;
    overflow: hidden;
}

.legal-downloads-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.legal-downloads-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
}

.legal-downloads-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.legal-downloads-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 650px;
    margin: 0 auto;
}

.legal-download-btn {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

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

.legal-download-btn:hover::before {
    left: 100%;
}

.legal-download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Botón Sorteos Básicos */
.legal-download-basico {
    border-color: #e2e8f0;
}

.legal-download-basico:hover {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.legal-download-basico .legal-download-icon {
    color: #3b82f6;
    margin-right: 1rem;
    flex-shrink: 0;
}

.legal-download-basico .legal-download-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Botón Sorteos Premium */
.legal-download-premium {
    border-color: #e2e8f0;
}

.legal-download-premium:hover {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
}

.legal-download-premium .legal-download-icon {
    color: #f59e0b;
    margin-right: 1rem;
    flex-shrink: 0;
}

.legal-download-premium .legal-download-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.legal-download-content {
    flex: 1;
}

.legal-download-type {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.legal-download-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.legal-download-arrow {
    color: #cbd5e1;
    transition: color 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.legal-download-btn:hover .legal-download-arrow {
    color: #475569;
}

/* Tooltip */
.legal-download-btn[data-tooltip] {
    position: relative;
}

.legal-download-btn[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #1e293b;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.legal-download-btn[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

/* Efectos de animación adicionales */
@keyframes legalDownloadPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.legal-download-btn:active {
    animation: legalDownloadPulse 0.3s ease;
}

/* ============================================
   RESPONSIVE PARA HERO SLIDER MEJORADO
   ============================================ */

@media (max-width: 1024px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
        max-height: 700px;
    }
    
    .slide h2 {
        font-size: 2rem;
    }
    
    .slide-content {
        max-width: 450px;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .slide {
        background-attachment: scroll; /* Desactivar parallax en móviles */
    }
    
    .hero-slider {
        height: 60vh;
        min-height: 400px;
        max-height: 600px;
        margin-top: 100px; /* Más espacio para header móvil */
        border-radius: 15px;
    }
    
    .slide h2 {
        font-size: 1.6rem;
    }
    
    .slide p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .slide-content {
        max-width: 350px;
        padding: 1.2rem;
        margin-top: 0;
    }
    
    .slider-controls {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 50vh;
        min-height: 350px;
        max-height: 500px;
        margin-top: 120px;
        border-radius: 10px;
    }
    
    .slide h2 {
        font-size: 1.4rem;
    }
    
    .slide-content {
        max-width: 280px;
        padding: 1rem;
    }
    
    .slide .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Efectos hover para mejor interactividad */
.slide-content:hover {
    background: rgba(5, 7, 21, 0.7);
    transform: translateY(-2px);
}

/* Responsive general */
@media (max-width: 1024px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide h2 {
        font-size: 2.2rem;
    }
    
    nav ul {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .auth-buttons {
        justify-content: center;
    }
    
    .ticket-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 22px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 12px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .selector-options {
        flex-direction: column;
    }
    
    .selector-options .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 5s ease-in-out infinite;
}