* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 50%, #ffe0f0 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff, #fdf2f8);
    padding: 50px 20px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(214, 51, 132, 0.15);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(214, 51, 132, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.baby-icons {
    font-size: 50px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.baby-icons i {
    color: #d63384;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.baby-icons i:nth-child(1) { animation-delay: 0s; }
.baby-icons i:nth-child(2) { animation-delay: 0.5s; }
.baby-icons i:nth-child(3) { animation-delay: 1s; }

.baby-icons i:hover {
    transform: scale(1.2);
    color: #e91e63;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.baby-name {
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    font-weight: 700;
    color: #d63384;
    margin-bottom: 15px;
    text-shadow: 4px 4px 8px rgba(214, 51, 132, 0.3);
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #d63384, #e91e63, #f06292, #d63384);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.header h1 {
    color: #d63384;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(214, 51, 132, 0.1);
    position: relative;
    z-index: 2;
}

.subtitle {
    color: #666;
    font-size: 1.3rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Modo de selección */
.selection-mode {
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.1);
    text-align: center;
}

.selection-mode h2 {
    color: #d63384;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.mode-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.mode-btn {
    background: linear-gradient(135deg, #f8e8ff, #ffeef8);
    border: 3px solid #e0b3d9;
    padding: 20px 30px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.mode-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(214, 51, 132, 0.2);
}

.mode-btn.active {
    background: linear-gradient(135deg, #d63384, #e91e63);
    color: white;
    border-color: #d63384;
}

.mode-btn i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.mode-btn span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Sección aleatoria */
.random-section {
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.1);
    text-align: center;
}

.random-card h3 {
    color: #d63384;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.gift-display {
    background: linear-gradient(135deg, #ffeef8, #f8e8ff);
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    border-left: 5px solid #d63384;
}

.gift-display h4 {
    color: #d63384;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.gift-display p {
    color: #666;
    font-size: 1rem;
}

.random-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sección de regalos */
.gifts-section h2 {
    color: #d63384;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.gifts-section h2 i {
    margin-right: 10px;
    color: #e91e63;
}

/* Grid de regalos */
.gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gift-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gift-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(214, 51, 132, 0.2);
    border-color: #f8e8ff;
}

.gift-card.selected {
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    border-color: #999;
    opacity: 0.7;
}

.gift-card.selected::after {
    content: "✅ Ya seleccionado";
    display: block;
    background: #28a745;
    color: white;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
}

.gift-image {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gift-card:hover .gift-image img {
    transform: scale(1.05);
}

.gift-name {
    color: #d63384;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.gift-buttons {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.google-btn {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.google-btn:hover {
    background: linear-gradient(135deg, #3367d6, #2d8f47);
    transform: translateY(-1px);
}

.google-btn i {
    font-size: 1rem;
}

.select-btn {
    width: 100%;
    background: linear-gradient(135deg, #d63384, #e91e63);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.select-btn:hover {
    background: linear-gradient(135deg, #c02d6b, #d81b60);
    transform: translateY(-2px);
}

.select-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Botones generales */
.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #d63384, #e91e63);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c02d6b, #d81b60);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e0b3d9;
}

.btn-secondary:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
    color: #d63384;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.selected-gift-info {
    background: linear-gradient(135deg, #ffeef8, #f8e8ff);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 5px solid #d63384;
}

.selected-gift-info h4 {
    color: #d63384;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0b3d9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #d63384;
}

.form-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modal de éxito con Emma Lucía */
.modal-content.success {
    text-align: center;
    padding: 40px 30px;
}

.emma-farewell {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.emma-avatar-small {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d63384, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(214, 51, 132, 0.3);
    animation: avatarFloat 3s ease-in-out infinite;
}

.emma-avatar-small i {
    font-size: 2rem;
    color: white;
    animation: babyBounce 2s ease-in-out infinite;
}

.emma-message-final h3 {
    color: #d63384;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 600;
}

.emma-message-final p {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 0;
}

.success-details {
    margin: 25px 0;
}

.success-details p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.modal-content.success h3 {
    color: #28a745;
    margin-bottom: 20px;
}

/* Responsive para modal de éxito */
@media (max-width: 768px) {
    .emma-avatar-small {
        width: 60px;
        height: 60px;
    }
    
    .emma-avatar-small i {
        font-size: 1.5rem;
    }
    
    .emma-message-final h3 {
        font-size: 1.5rem;
    }
    
    .emma-message-final p {
        font-size: 1.1rem;
    }
}

/* Reproductor de música */
.music-player {
    margin-top: 25px;
    position: relative;
    z-index: 3;
}

.music-btn {
    background: linear-gradient(135deg, #d63384, #e91e63);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.3);
}

.music-btn:hover {
    background: linear-gradient(135deg, #c02d6b, #d81b60);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 51, 132, 0.4);
}

.music-btn.playing {
    background: linear-gradient(135deg, #28a745, #20c997);
    animation: musicPulse 2s ease-in-out infinite;
}

.music-btn.playing i {
    animation: musicNote 1s ease-in-out infinite;
}

@keyframes musicPulse {
    0%, 100% { 
        box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
        transform: translateY(-1px);
    }
}

@keyframes musicNote {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.music-btn i {
    font-size: 1.1rem;
}

.music-btn span {
    font-size: 0.95rem;
}

/* Responsive para el reproductor */
@media (max-width: 768px) {
    .music-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .music-btn span {
        font-size: 0.85rem;
    }
    
    .music-btn i {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.1);
}

.hearts {
    font-size: 2rem;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.footer p {
    color: #666;
    font-style: italic;
    font-size: 1.1rem;
}

/* Pantalla de bienvenida interactiva */
.welcome-screen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 50%, #ffe0f0 100%);
    position: relative;
    overflow: hidden;
}

.welcome-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(214, 51, 132, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.emma-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #d63384, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 15px 40px rgba(214, 51, 132, 0.3);
    animation: avatarFloat 3s ease-in-out infinite;
}

.avatar-circle i {
    font-size: 3rem;
    color: white;
    animation: babyBounce 2s ease-in-out infinite;
}

@keyframes avatarFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes babyBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.speech-bubble {
    background: white;
    padding: 25px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(214, 51, 132, 0.2);
    position: relative;
    max-width: 500px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bubbleAppear 0.8s ease-out;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid white;
}

@keyframes bubbleAppear {
    0% { 
        opacity: 0; 
        transform: scale(0.8) translateY(20px); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

.emma-text {
    font-size: 1.3rem;
    color: #333;
    text-align: center;
    line-height: 1.6;
    font-weight: 500;
    animation: textFadeIn 1s ease-out;
}

@keyframes textFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.typing-indicator {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #d63384;
    border-radius: 50%;
    animation: typingDots 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDots {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-10px); opacity: 1; }
}

.user-input {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    animation: slideUp 0.6s ease-out;
    position: relative;
    z-index: 2;
}

@keyframes slideUp {
    0% { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.user-input input {
    padding: 15px 20px;
    border: 3px solid #e0b3d9;
    border-radius: 25px;
    font-size: 1.1rem;
    text-align: center;
    width: 300px;
    max-width: 90vw;
    background: white;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.user-input input:focus {
    outline: none;
    border-color: #d63384;
    box-shadow: 0 0 20px rgba(214, 51, 132, 0.3);
    transform: scale(1.02);
}

.emma-btn {
    background: linear-gradient(135deg, #d63384, #e91e63);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(214, 51, 132, 0.3);
    font-family: 'Poppins', sans-serif;
}

.emma-btn:hover {
    background: linear-gradient(135deg, #c02d6b, #d81b60);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(214, 51, 132, 0.4);
}

.emma-btn:active {
    transform: translateY(-1px);
}

.continue-section {
    animation: slideUp 0.6s ease-out;
    position: relative;
    z-index: 2;
}

.music-player-small {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.music-btn-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d63384, #e91e63);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.3);
}

.music-btn-small:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(214, 51, 132, 0.4);
}

.music-btn-small.playing {
    background: linear-gradient(135deg, #28a745, #20c997);
    animation: musicPulse 2s ease-in-out infinite;
}

/* Responsive para pantalla de bienvenida */
@media (max-width: 768px) {
    .avatar-circle {
        width: 100px;
        height: 100px;
    }
    
    .avatar-circle i {
        font-size: 2.5rem;
    }
    
    .speech-bubble {
        padding: 20px;
        max-width: 90vw;
    }
    
    .emma-text {
        font-size: 1.1rem;
    }
    
    .user-input input {
        width: 280px;
        font-size: 1rem;
        padding: 12px 18px;
    }
    
    .emma-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .avatar-circle {
        width: 80px;
        height: 80px;
    }
    
    .avatar-circle i {
        font-size: 2rem;
    }
    
    .emma-text {
        font-size: 1rem;
    }
    
    .user-input input {
        width: 250px;
    }
}

/* Utilidades */
.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .gifts-grid {
        grid-template-columns: 1fr;
    }
    
    .mode-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mode-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .category-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .random-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/
* Estilos para la ruleta */
.roulette-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.roulette-wheel {
    width: 150px;
    height: 150px;
    border: 8px solid #d63384;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: spin 2s linear infinite;
    background: linear-gradient(45deg, #ffeef8, #f8e8ff, #ffe0f0, #ffeef8);
    box-shadow: 0 10px 30px rgba(214, 51, 132, 0.3);
}

.roulette-wheel::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #d63384;
    z-index: 10;
}

.roulette-wheel i {
    position: absolute;
    font-size: 1.5rem;
    color: #d63384;
    animation: counterSpin 2s linear infinite;
}

.roulette-wheel i:nth-child(1) { top: 10px; left: 50%; transform: translateX(-50%); }
.roulette-wheel i:nth-child(2) { top: 25px; right: 15px; }
.roulette-wheel i:nth-child(3) { top: 50%; right: 10px; transform: translateY(-50%); }
.roulette-wheel i:nth-child(4) { bottom: 25px; right: 15px; }
.roulette-wheel i:nth-child(5) { bottom: 10px; left: 50%; transform: translateX(-50%); }
.roulette-wheel i:nth-child(6) { top: 25px; left: 15px; }

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes counterSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.roulette-text h4 {
    color: #d63384;
    font-size: 1.5rem;
    margin-bottom: 10px;
    animation: pulse 1.5s ease-in-out infinite;
}

.roulette-text p {
    color: #666;
    font-style: italic;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Mejoras adicionales para iconos profesionales */
.baby-icons i {
    background: linear-gradient(135deg, #d63384, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(214, 51, 132, 0.3));
}

/* Efectos de hover mejorados */
.gift-card:hover .gift-name {
    color: #e91e63;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Animación de entrada para las tarjetas */
.gift-card {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efectos de partículas en el header */
.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(214, 51, 132, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 60%, rgba(240, 98, 146, 0.1) 2px, transparent 2px);
    background-size: 50px 50px, 60px 60px, 40px 40px;
    animation: float 10s ease-in-out infinite;
    pointer-events: none;
}

/* Mejoras en los botones de selección */
.select-btn i {
    margin-right: 8px;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Estilos para información de regalo seleccionado */
.selected-info {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-radius: 10px;
    border: 2px solid #28a745;
}

.selected-info i {
    display: block;
    margin-bottom: 10px;
    animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive para el nombre de Emma Lucía */
@media (max-width: 768px) {
    .baby-name {
        font-size: 3.5rem;
    }
    
    .roulette-wheel {
        width: 120px;
        height: 120px;
    }
    
    .roulette-wheel i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .baby-name {
        font-size: 2.8rem;
    }
}/* 
Estilos para los botones de Google */
.gift-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.google-btn {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.google-btn:hover {
    background: linear-gradient(135deg, #3367d6, #2d8f47);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.google-btn i {
    font-size: 1rem;
}

/* Mejoras en el modal de éxito */
.success-icon {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 3rem;
    margin-bottom: 20px;
}

.success-icon i:first-child {
    color: #28a745;
    animation: checkBounce 0.8s ease-in-out;
}

.success-icon i:last-child {
    color: #d63384;
    animation: heartPulse 1.5s ease-in-out infinite;
}

@keyframes checkBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Mejoras en el footer */
.footer .hearts {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer .hearts i {
    color: #d63384;
    animation: heartFloat 2s ease-in-out infinite;
}

.footer .hearts i:nth-child(1) { animation-delay: 0s; }
.footer .hearts i:nth-child(2) { animation-delay: 0.3s; }
.footer .hearts i:nth-child(3) { animation-delay: 0.6s; }

@keyframes heartFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}

/* Mejoras adicionales para profesionalismo */
.gifts-section h2 {
    text-align: center;
    color: #d63384;
    font-size: 2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.gifts-section h2 i {
    font-size: 2.2rem;
    animation: giftBounce 2s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Efectos de carga suave */
.gift-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mejoras en la tarjeta de regalo */
.gift-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.gift-card:hover .gift-name {
    color: #d63384;
    transform: scale(1.02);
}

/* Animación de entrada escalonada */
.gift-card:nth-child(1) { animation-delay: 0.1s; }
.gift-card:nth-child(2) { animation-delay: 0.2s; }
.gift-card:nth-child(3) { animation-delay: 0.3s; }
.gift-card:nth-child(4) { animation-delay: 0.4s; }
.gift-card:nth-child(5) { animation-delay: 0.5s; }
.gift-card:nth-child(6) { animation-delay: 0.6s; }

/* Mejoras responsive adicionales */
@media (max-width: 768px) {
    .gift-buttons {
        gap: 8px;
    }
    
    .google-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .gifts-section h2 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
    }
}