:root {
    --primary-color: #00f7ff;  /* Cian neón */
    --primary-dark: #00a8ff;
    --primary-light: #8a2be2;  /* Violeta neón */
    --dark-bg: #0a0a14;       /* Fondo oscuro profundo */
    --darker-bg: #050510;
    --light-text: #ffffff;
    --gray-text: #a0a0c0;
    --success-color: #00ff9d;
    --warning-color: #ffcc00;
    --error-color: #ff3d71;
    --neon-glow: 0 0 10px rgba(0, 247, 255, 0.7),
                0 0 20px rgba(0, 247, 255, 0.5),
                0 0 30px rgba(0, 247, 255, 0.3);
}

/* Estructura principal */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: 'Rajdhani', 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    filter: drop-shadow(0 0 15px rgba(0, 247, 255, 0.4));
}

/* Botón flotante con efecto holográfico */
.chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
                var(--primary-color) 0%, 
                var(--primary-dark) 70%, 
                transparent 90%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--neon-glow);
    position: relative;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
    overflow: hidden;
}

.chatbot-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        transparent, 
        transparent, 
        transparent, 
        var(--primary-light)
    );
    animation: rotate 3s linear infinite;
}

.chatbot-button::after {
    content: '';
    position: absolute;
    width: 94%;
    height: 94%;
    background: var(--darker-bg);
    border-radius: 50%;
}

.chatbot-button:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.8),
                0 0 40px rgba(0, 247, 255, 0.6),
                0 0 60px rgba(0, 247, 255, 0.4);
}

.chatbot-button i {
    font-size: 28px;
    color: var(--primary-color);
    z-index: 1;
    text-shadow: 0 0 10px var(--primary-color);
}

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

/* Ventana del chatbot con efecto vidrio */
.chatbot-window {
    height: 70vh; /* Mejor usar viewport height en lugar de fijo */
    max-height: 600px; /* Con un máximo para no crecer demasiado */
    min-height: 400px; /* Y un mínimo para asegurar visibilidad */
    width: 400px;
    height: 600px;
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
                inset 0 0 20px rgba(0, 247, 255, 0.2);
    display: none;
    flex-direction: column;
    border: 1px solid rgba(0, 247, 255, 0.2);
    transform-origin: bottom right;
    margin-bottom: 20px;
    position: relative;
}

.chatbot-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
                transparent, 
                var(--primary-color), 
                transparent);
    box-shadow: 0 0 10px var(--primary-color);
}

.chatbot-window.active {
    display: flex;
    animation: hologramAppear 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes hologramAppear {
    0% {
        transform: scale(0.8) translateY(30px);
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

/* Avatar con efecto de partículas */
.genie-avatar {
    position: absolute;
    top: -30px;
    left: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    z-index: 10;
    border: 3px solid var(--dark-bg);
    box-shadow: var(--neon-glow);
    overflow: hidden;
}

.genie-avatar::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="white"/><circle cx="50" cy="30" r="1" fill="white"/><circle cx="80" cy="20" r="1" fill="white"/><circle cx="30" cy="70" r="1" fill="white"/><circle cx="70" cy="80" r="1" fill="white"/></svg>');
    opacity: 0.6;
    animation: floatParticles 15s infinite linear;
}

@keyframes floatParticles {
    0% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(5px) translateX(-5px); }
    75% { transform: translateY(-5px) translateX(10px); }
    100% { transform: translateY(0) translateX(0); }
}

/* Encabezado con efecto de escaneo */
.chatbot-header {
    background: linear-gradient(to bottom, 
                rgba(0, 167, 255, 0.1), 
                transparent);
    color: white;
    padding: 25px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 247, 255, 0.2);
    position: relative;
}

.chatbot-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
                transparent, 
                var(--primary-color), 
                transparent);
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.chatbot-title {
    font-weight: 600;
    font-size: 18px;
    margin-left: 50px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.chatbot-close, .help-btn {
    cursor: pointer;
    font-size: 20px;
    color: var(--gray-text);
    transition: all 0.2s;
    background: none;
    border: none;
    outline: none;
    text-shadow: 0 0 5px currentColor;
}

.chatbot-close:hover, .help-btn:hover {
    color: var(--primary-color);
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--primary-color);
}

/* Área de mensajes con efecto de terminal */
.chatbot-messages {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--dark-bg);
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: 
        radial-gradient(circle at 20% 30%, 
            rgba(0, 247, 255, 0.03) 0%, 
            transparent 30%),
        var(--dark-bg);
    position: relative;
}
 
/* Estilos de mensajes */
.message {
    max-width: 80%;
    padding: 15px 20px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    animation: messageIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    word-wrap: break-word; /* Añade esto para texto largo */
    overflow-wrap: break-word; /* Y esto también */
}

@keyframes messageIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bot-message {
    background: rgba(10, 20, 30, 0.8);
    color: var(--light-text);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    border: 1px solid rgba(0, 247, 255, 0.2);
    box-shadow: inset 0 0 10px rgba(0, 247, 255, 0.1);
}

.bot-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                transparent, 
                rgba(0, 247, 255, 0.05), 
                transparent);
    pointer-events: none;
}

.user-message {
    background: linear-gradient(135deg, 
                var(--primary-color), 
                var(--primary-light));
    color: white;
    align-self: flex-end;
    border-radius: 18px; /* Mantén consistente el border-radius */
    border-bottom-right-radius: 5px; /* Puedes mantener este detalle */
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: visible; /* Cambiado de hidden a visible */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 12px 16px; /* Ajusta según necesidad */
    margin: 5px 0; /* Espaciado entre mensajes */
    max-width: 85%; /* Un poco más de espacio */
    word-wrap: break-word;
    z-index: 1; /* Para el efecto de brillo */
}

.user-message::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 45%,
        rgba(255, 255, 255, 0.15) 50%, /* Más sutil */
        rgba(255, 255, 255, 0) 55%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(20deg); /* Ángulo menos pronunciado */
    animation: shine 6s infinite;
    pointer-events: none; /* Permite interacción con el texto */
    z-index: -1; /* Detrás del contenido */
    border-radius: inherit; /* Para que coincida con el mensaje */
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(20deg); }
    20% { transform: translateX(100%) rotate(20deg); }
    100% { transform: translateX(100%) rotate(20deg); }
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    20% { transform: translateX(100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

/* Respuestas rápidas con efecto neón */
.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.quick-reply {
    background: rgba(0, 247, 255, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 247, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.quick-reply:hover {
    background: rgba(0, 247, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
}

.quick-reply:hover::before {
    left: 100%;
}

/* Área de entrada futurista */
.chatbot-input-area {
    padding: 15px;
    background: rgba(5, 5, 16, 0.9);
    border-top: 1px solid rgba(0, 247, 255, 0.2);
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}

.chatbot-input-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
                transparent, 
                var(--primary-color), 
                transparent);
    box-shadow: 0 0 10px var(--primary-color);
}

.chatbot-input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 25px;
    border: none;
    background: rgba(0, 10, 20, 0.7);
    color: white;
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
    border: 1px solid rgba(0, 247, 255, 0.3);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.chatbot-input:focus {
    border-color: var(--primary-color);
    box-shadow: inset 0 0 15px rgba(0, 247, 255, 0.2),
                0 0 15px rgba(0, 247, 255, 0.3);
}

.chatbot-input::placeholder {
    color: var(--gray-text);
    font-style: italic;
}

.chatbot-send {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
                var(--primary-color), 
                var(--primary-light));
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
}

.chatbot-send::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 45%,
        rgba(255, 255, 255, 0.5) 48%,
        rgba(255, 255, 255, 0) 52%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 4s infinite;
    animation-delay: 1s;
}

.chatbot-send:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 0 25px rgba(0, 247, 255, 0.8);
}

/* Indicador de escritura holográfico */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 20, 40, 0.6);
    border-radius: 18px;
    align-self: flex-start;
    margin-bottom: 5px;
    width: fit-content;
    border: 1px solid rgba(0, 247, 255, 0.3);
    box-shadow: inset 0 0 10px rgba(0, 247, 255, 0.1),
                0 0 10px rgba(0, 0, 0, 0.2);
}

.typing-text {
    color: var(--primary-color);
    font-size: 13px;
    text-shadow: 0 0 5px var(--primary-color);
}

.typing-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: typingAnimation 1.6s infinite ease-in-out;
    box-shadow: 0 0 5px var(--primary-color);
}

.typing-dot:nth-child(1) {
    animation-delay: 0s;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingAnimation {
    0%, 60%, 100% {
        transform: translateY(0) scale(0.8);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-8px) scale(1.2);
        opacity: 1;
    }
}

/* Notificación de ayuda futurista */
.help-toast {
    position: fixed;
    bottom: 120px;
    right: 30px;
    background: rgba(5, 5, 20, 0.95);
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4),
                inset 0 0 15px rgba(0, 247, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--primary-color);
    max-width: 320px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.2);
}

.help-toast.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.toast-icon {
    color: var(--primary-color);
    font-size: 24px;
    text-shadow: 0 0 10px var(--primary-color);
    min-width: 24px;
}

.toast-message {
    font-size: 14px;
    line-height: 1.4;
    color: var(--light-text);
}

.toast-close {
    background: none;
    border: none;
    color: var(--gray-text);
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
    padding: 5px;
}

.toast-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
    text-shadow: 0 0 5px var(--primary-color);
}

/* Efectos especiales */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--error-color);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 1.5s infinite, float 3s infinite ease-in-out;
    z-index: 2;
    box-shadow: 0 0 10px var(--error-color);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Efecto de conexión */
.connection-status {
    position: absolute;
    bottom: 5px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--success-color);
    text-shadow: 0 0 5px var(--success-color);
}

.connection-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success-color);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--success-color);
    animation: pulse 2s infinite;
}





































































.gold-glow {
    /* Color base del texto, asegurando que sea un blanco brillante para el contraste */
    color: gold; 
    
    /* ¡Tamaño del texto más grande! Ajusta a tu preferencia (por ejemplo, 6xl, 7xl, 8xl) */
    font-size: 5rem; /* Equivalente a text-8xl en Tailwind para pantallas grandes, o puedes usar un valor fijo como 5rem */
    
    /* Múltiples text-shadows para crear un efecto de brillo dorado que emana del texto */
    text-shadow: 
        0 0 8px rgba(255, 223, 0, 0.9),   /* Brillo cercano y denso (más amarillo-dorado) */
        0 0 20px rgba(255, 215, 0, 0.7),  /* Brillo medio y difuso (dorado estándar) */
        0 0 40px rgba(255, 215, 0, 0.5),  /* Brillo más amplio y suave */
        0 0 60px rgba(255, 215, 0, 0.3);  /* Brillo muy extendido y sutil */

    /* Animación para un brillo pulsante */
    animation: pulsate-text-gold 2s infinite alternate ease-in-out;
}

/* Definición de la animación de pulsación */
@keyframes pulsate-text-gold {
    0% {
        text-shadow: 
            0 0 8px rgba(255, 223, 0, 0.9),
            0 0 20px rgba(255, 215, 0, 0.7),
            0 0 40px rgba(255, 215, 0, 0.5),
            0 0 60px rgba(255, 215, 0, 0.3);
    }
    100% {
        text-shadow: 
            0 0 12px rgba(255, 230, 0, 1),   /* Más brillante y saturado al expandirse */
            0 0 25px rgba(255, 220, 0, 0.9),  /* Más extendido y denso */
            0 0 50px rgba(255, 215, 0, 0.7),  /* Más extendido */
            0 0 70px rgba(255, 215, 0, 0.5);  /* Más extendido y visible */
    }
}
/* Estilos personalizados para aplicar la fuente y el tema */
body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    overflow-x: hidden; /* Evita el desbordamiento horizontal */
}
/* Color de resaltado amarillo */
.highlight {
    color: #FBBF24; /* Tailwind's yellow-400 */
}
.highlight-gradient {
    background: linear-gradient(90deg, #FBBF24, #F59E0B);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
/* Animación de entrada */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Estilo para el header al hacer scroll */
.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}
/* Animación para el botón */
.cta-button {
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
}
/* Pestañas de productos */
.product-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.product-tab {
    padding: 1rem 2rem;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}
.product-tab.active {
    border-bottom-color: #FBBF24;
    color: #FBBF24;
}
.product-content {
    display: none;
}
.product-content.active {
    display: block;
}
/* Estilo para las tarjetas de producto */
.product-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(17, 24, 39, 0.5); /* Fondo oscuro semitransparente */
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.1);
}
/* Estilos para los botones de canales */
.channel-btn {
    border: 2px solid;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}
.channel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.channel-btn.active {
    background-color: rgba(255, 255, 255, 0.05);
    font-weight: bold;
}
.channel-preview {
    display: none;
    animation: fadeIn 0.5s ease;
}
.channel-preview.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Reemplaza la sección de estrellas en tu CSS con este código */

.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.star {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
}

.star.gold {
    background: radial-gradient(circle, #FFD700 40%, #FFA500 100%);
    box-shadow: 0 0 8px 2px rgba(255, 215, 0, 0.6);
    filter: drop-shadow(0 0 4px #FFD700);
}

@keyframes twinkle {
    0% { 
        opacity: 0.3; 
        transform: scale(0.8); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2); 
    }
    100% { 
        opacity: 0.3; 
        transform: scale(0.8); 
    }
}

/* Animación adicional para movimiento sutil */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(180deg); 
    }
}

/* Aplicar animación de flotación a algunas estrellas */
.star:nth-child(3n) {
    animation: twinkle 4s infinite ease-in-out, float 8s infinite ease-in-out;
}

.star:nth-child(5n) {
    animation: twinkle 2s infinite ease-in-out, float 12s infinite ease-in-out;
}

/* Variaciones de tamaño y opacidad */
.star:nth-child(2n) {
    animation-delay: 1s;
}

.star:nth-child(3n) {
    animation-delay: 2s;
}

.star:nth-child(4n) {
    animation-delay: 0.5s;
}
