/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Open+Sans:wght@300;400;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Top Navigation */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #4ECDC4;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #4ECDC4;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section Styles */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #4ECDC4, #ff6b6b);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Alineado arriba */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px 20px 40px 20px; /* Margen reducido arriba */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Alineado arriba */
    gap: 20px; /* Espaciado entre elementos */
}

.plim-character {
    order: -1; /* Fuerza que aparezca primero */
    margin-bottom: 0;
}

.plim-main-character {
    width: 120px; /* Más pequeño */
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plim-main-character:hover {
    transform: scale(1.1) rotate(5deg);
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    animation: bounceIn 1s ease-out;
    order: 1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
    order: 2;
}

.hero-buttons {
    display: none;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #4ECDC4);
}

.btn-secondary {
    background: linear-gradient(135deg, #4ECDC4, #ff6b6b);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.bouncing {
    animation: bounce 2s infinite;
}

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

/* Balloon animations - Posiciones más extremas */
.balloon {
    position: absolute;
    font-size: 3rem;
    cursor: pointer;
    animation: floatBalloon 4s ease-in-out infinite;
    transition: all 0.3s ease;
    z-index: 3;
}

.balloon:hover {
    transform: scale(1.2);
}

/* Globos movidos más hacia los extremos */
.balloon-1 { top: 15%; left: 2%; animation-delay: 0s; }
.balloon-2 { top: 25%; right: 2%; animation-delay: 1s; }
.balloon-3 { top: 65%; left: 1%; animation-delay: 2s; }
.balloon-4 { top: 75%; right: 1%; animation-delay: 1.5s; }
.balloon-5 { top: 45%; left: 0%; animation-delay: 0.5s; }

/* Hearts animation - Posiciones más extremas */
.heart {
    position: absolute;
    font-size: 2rem;
    animation: floatHeart 5s ease-in-out infinite;
    z-index: 3;
}

/* Corazones movidos más hacia los extremos */
.heart-1 { top: 20%; right: 3%; animation-delay: 0s; }
.heart-2 { top: 55%; left: 2%; animation-delay: 2s; }
.heart-3 { top: 80%; right: 4%; animation-delay: 4s; }

/* Stars animation */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s infinite;
}

.star:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.star:nth-child(2) { top: 30%; left: 80%; animation-delay: 0.5s; }
.star:nth-child(3) { top: 60%; left: 10%; animation-delay: 1s; }
.star:nth-child(4) { top: 70%; left: 90%; animation-delay: 1.5s; }
.star:nth-child(5) { top: 40%; left: 60%; animation-delay: 2s; }
.star:nth-child(6) { top: 80%; left: 40%; animation-delay: 0.3s; }
.star:nth-child(7) { top: 15%; left: 50%; animation-delay: 1.2s; }
.star:nth-child(8) { top: 90%; left: 70%; animation-delay: 1.8s; }

.countdown-section {
    position: relative;
    z-index: 4;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    backdrop-filter: blur(10px);
    max-width: 90%;
    margin: 20px auto 0 auto;
}

.countdown-section h3 {
    font-family: 'Fredoka One', cursive;
    color: #3498db; /* Azul como solicitaste */
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.countdown-section h3 i {
    color: #3498db; /* Iconos también en azul */
}

/* Games Section */
.games-section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Título de Juegos en Azul */
.games-title {
    color: #3498db !important;
}

/* Eliminar cualquier posicionamiento absoluto conflictivo */
.floating-balloons,
.floating-balloons .balloon {
    display: none !important;
}

.plim-character {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
}

.plim-character img {
    width: 200px;
    height: auto;
    animation: bounce 3s ease-in-out infinite;
}

/* Título de Juegos en Rojo */
.games-section .section-title {
    color: #e74c3c !important; /* Rojo vibrante */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.games-section .section-title i {
    color: #e74c3c !important;
}

/* Cambio de turquesa a azul */
:root {
    --primary-blue: #3498db;
    --secondary-blue: #2980b9;
    --accent-red: #e74c3c;
}

/* Botones en ROJO como estaban originalmente */
.game-card .game-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card .game-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* Fondo de la sección de juegos con MUCHÍSIMOS círculos de colores animados */
.games-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Primera capa con 20 círculos */
.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 100px at 5% 10%, rgba(255, 107, 107, 0.5), transparent),
        radial-gradient(circle 80px at 15% 25%, rgba(78, 205, 196, 0.5), transparent),
        radial-gradient(circle 120px at 25% 40%, rgba(255, 206, 84, 0.5), transparent),
        radial-gradient(circle 90px at 35% 55%, rgba(129, 236, 236, 0.5), transparent),
        radial-gradient(circle 110px at 45% 70%, rgba(255, 154, 162, 0.5), transparent),
        radial-gradient(circle 70px at 55% 85%, rgba(160, 196, 255, 0.5), transparent),
        radial-gradient(circle 130px at 65% 5%, rgba(255, 183, 197, 0.5), transparent),
        radial-gradient(circle 95px at 75% 20%, rgba(189, 224, 254, 0.5), transparent),
        radial-gradient(circle 85px at 85% 35%, rgba(162, 155, 254, 0.5), transparent),
        radial-gradient(circle 105px at 95% 50%, rgba(255, 218, 185, 0.5), transparent),
        radial-gradient(circle 75px at 10% 65%, rgba(255, 107, 107, 0.5), transparent),
        radial-gradient(circle 115px at 20% 80%, rgba(78, 205, 196, 0.5), transparent),
        radial-gradient(circle 60px at 30% 95%, rgba(255, 206, 84, 0.5), transparent),
        radial-gradient(circle 140px at 40% 15%, rgba(129, 236, 236, 0.5), transparent),
        radial-gradient(circle 90px at 50% 30%, rgba(255, 154, 162, 0.5), transparent),
        radial-gradient(circle 80px at 60% 45%, rgba(160, 196, 255, 0.5), transparent),
        radial-gradient(circle 100px at 70% 60%, rgba(255, 183, 197, 0.5), transparent),
        radial-gradient(circle 120px at 80% 75%, rgba(189, 224, 254, 0.5), transparent),
        radial-gradient(circle 70px at 90% 90%, rgba(162, 155, 254, 0.5), transparent),
        radial-gradient(circle 110px at 0% 0%, rgba(255, 218, 185, 0.5), transparent);
    animation: rotateCircles 15s linear infinite;
}

/* Segunda capa con otros 20 círculos */
.games-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 85px at 8% 18%, rgba(255, 107, 107, 0.4), transparent),
        radial-gradient(circle 105px at 18% 33%, rgba(78, 205, 196, 0.4), transparent),
        radial-gradient(circle 65px at 28% 48%, rgba(255, 206, 84, 0.4), transparent),
        radial-gradient(circle 125px at 38% 63%, rgba(129, 236, 236, 0.4), transparent),
        radial-gradient(circle 95px at 48% 78%, rgba(255, 154, 162, 0.4), transparent),
        radial-gradient(circle 115px at 58% 93%, rgba(160, 196, 255, 0.4), transparent),
        radial-gradient(circle 75px at 68% 13%, rgba(255, 183, 197, 0.4), transparent),
        radial-gradient(circle 135px at 78% 28%, rgba(189, 224, 254, 0.4), transparent),
        radial-gradient(circle 90px at 88% 43%, rgba(162, 155, 254, 0.4), transparent),
        radial-gradient(circle 110px at 98% 58%, rgba(255, 218, 185, 0.4), transparent),
        radial-gradient(circle 80px at 3% 73%, rgba(255, 107, 107, 0.4), transparent),
        radial-gradient(circle 100px at 13% 88%, rgba(78, 205, 196, 0.4), transparent),
        radial-gradient(circle 120px at 23% 3%, rgba(255, 206, 84, 0.4), transparent),
        radial-gradient(circle 70px at 33% 18%, rgba(129, 236, 236, 0.4), transparent),
        radial-gradient(circle 130px at 43% 33%, rgba(255, 154, 162, 0.4), transparent),
        radial-gradient(circle 90px at 53% 48%, rgba(160, 196, 255, 0.4), transparent),
        radial-gradient(circle 110px at 63% 63%, rgba(255, 183, 197, 0.4), transparent),
        radial-gradient(circle 80px at 73% 78%, rgba(189, 224, 254, 0.4), transparent),
        radial-gradient(circle 100px at 83% 93%, rgba(162, 155, 254, 0.4), transparent),
        radial-gradient(circle 120px at 93% 8%, rgba(255, 218, 185, 0.4), transparent);
    animation: rotateCircles 18s linear infinite reverse;
}

/* Animación más notoria */
@keyframes rotateCircles {
    0% { transform: rotate(0deg) scale(1); opacity: 1; }
    25% { transform: rotate(90deg) scale(1.2); opacity: 0.8; }
    50% { transform: rotate(180deg) scale(1); opacity: 1; }
    75% { transform: rotate(270deg) scale(1.2); opacity: 0.8; }
    100% { transform: rotate(360deg) scale(1); opacity: 1; }
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 60px;
    color: #666;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* Asegurar visibilidad del contenido */
.games-section .container {
    position: relative;
    z-index: 2;
}

/* Textos de las tarjetas de juego en negro */
/* Ajuste para consistencia de tamaños en juegos */
.game-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
    min-height: 400px; /* Altura mínima para todas las tarjetas */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-card p,
.game-card .game-instructions,
.game-card .game-score {
    color: #333 !important;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Títulos de los juegos en azul */
.game-card h3 {
    color: #3498db !important;
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.game-card h3 i {
    color: #3498db !important;
}

/* Memory Game */
.memory-game {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px 0;
    height: 250px; /* Altura fija para consistencia */
}

.memory-card {
    aspect-ratio: 1;
    background: #4ECDC4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1.2rem; /* Ajuste de tamaño de iconos si es necesario */
}

.memory-card:hover {
    transform: scale(1.05);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    backface-visibility: hidden;
    transition: transform 0.6s;
}

.card-front {
    background: #4ECDC4;
    color: white;
}

.card-back {
    background: white;
    transform: rotateY(180deg);
}

.memory-card.flipped .card-front {
    transform: rotateY(180deg);
}

.memory-card.flipped .card-back {
    transform: rotateY(0deg);
}

.memory-card.matched {
    background: #66bb6a;
    pointer-events: none;
}

/* Click Game */
.click-game {
    margin: 20px 0;
}

.game-score {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #4ECDC4;
}

.game-area {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4ECDC4, #ff6b6b);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.game-instructions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.click-target {
    position: absolute;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: popIn 0.3s ease-out;
    transition: transform 0.2s ease;
}

.click-target:hover {
    transform: scale(1.2);
}

/* Juego de Piano - Distribuir y agrandar teclas */
.piano-game {
    margin: 20px 0;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.piano-keys {
    display: flex;
    gap: 5px;
    width: 100%; /* Ocupar todo el ancho disponible */
    max-width: none; /* Eliminar límite para distribuir mejor */
    height: 180px; /* Aumentar altura para teclas más grandes */
    justify-content: space-around; /* Distribuir uniformemente */
}

.piano-key {
    flex: 1;
    min-width: 40px; /* Asegurar un tamaño mínimo */
    background: linear-gradient(180deg, #fff, #eee);
    border: 2px solid #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column; /* Alinear icono y texto verticalmente */
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: transform 0.1s ease;
    font-size: 1.4rem; /* Texto más grande */
    padding: 10px;
}

.piano-key i {
    font-size: 1.5rem; /* Icono más grande */
    margin-bottom: 5px;
}

.piano-key:active {
    transform: scale(0.95);
    background: linear-gradient(180deg, #eee, #ddd);
}

/* Colores para teclas (ajusta según necesites) */
.piano-key.do { background-color: #ff6b6b; }
.piano-key.re { background-color: #ffa96b; }
.piano-key.mi { background-color: #feca57; }
.piano-key.fa { background-color: #51cf66; }
.piano-key.sol { background-color: #339af0; }
.piano-key.la { background-color: #5c7cfa; }
.piano-key.si { background-color: #cc5de8; }

/* Drawing Game */
.drawing-game {
    margin: 20px 0;
}

#drawing-canvas {
    border: 3px solid #4ECDC4;
    border-radius: 10px;
    cursor: crosshair;
    background: white;
    margin-bottom: 15px;
}

.drawing-tools {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.color-btn {
    width: 40px;
    height: 40px;
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.color-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.color-btn.active {
    border-color: #333;
    transform: scale(1.2);
}

.game-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px;
}

.game-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f4e79);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Botón "Tocar Cumpleaños" también en rojo */
button[onclick="playHappyBirthday()"] {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    color: white !important;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1.1rem;
}

button[onclick="playHappyBirthday()"]:hover {
    background: linear-gradient(135deg, #c0392b, #a93226) !important;
}

/* Countdown Styles */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: #ff4444;
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
    animation: pulse 2s infinite;
    border: 3px solid #ffffff;
}

.countdown-number {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    font-weight: bold;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.about-plimplim {
    background: white;
    padding: 80px 0;
}

.about-content h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    line-height: 1.4;
}

.description-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.description-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

/* Values Section */
/* Sección Values con fondo azul y cajas contrastantes */
.values-section {
    background: linear-gradient(135deg, #3498db, #2980b9);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 10px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.value-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Party Details */
.party-details {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Fondo de la sección de detalles con círculos de colores animados (igual que juegos) */
/* Primera capa con 20 círculos */
.party-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 100px at 5% 10%, rgba(255, 107, 107, 0.5), transparent),
        radial-gradient(circle 80px at 15% 25%, rgba(78, 205, 196, 0.5), transparent),
        radial-gradient(circle 120px at 25% 40%, rgba(255, 206, 84, 0.5), transparent),
        radial-gradient(circle 90px at 35% 55%, rgba(129, 236, 236, 0.5), transparent),
        radial-gradient(circle 110px at 45% 70%, rgba(255, 154, 162, 0.5), transparent),
        radial-gradient(circle 70px at 55% 85%, rgba(160, 196, 255, 0.5), transparent),
        radial-gradient(circle 130px at 65% 5%, rgba(255, 183, 197, 0.5), transparent),
        radial-gradient(circle 95px at 75% 20%, rgba(189, 224, 254, 0.5), transparent),
        radial-gradient(circle 85px at 85% 35%, rgba(162, 155, 254, 0.5), transparent),
        radial-gradient(circle 105px at 95% 50%, rgba(255, 218, 185, 0.5), transparent),
        radial-gradient(circle 75px at 10% 65%, rgba(255, 107, 107, 0.5), transparent),
        radial-gradient(circle 115px at 20% 80%, rgba(78, 205, 196, 0.5), transparent),
        radial-gradient(circle 60px at 30% 95%, rgba(255, 206, 84, 0.5), transparent),
        radial-gradient(circle 140px at 40% 15%, rgba(129, 236, 236, 0.5), transparent),
        radial-gradient(circle 90px at 50% 30%, rgba(255, 154, 162, 0.5), transparent),
        radial-gradient(circle 80px at 60% 45%, rgba(160, 196, 255, 0.5), transparent),
        radial-gradient(circle 100px at 70% 60%, rgba(255, 183, 197, 0.5), transparent),
        radial-gradient(circle 120px at 80% 75%, rgba(189, 224, 254, 0.5), transparent),
        radial-gradient(circle 70px at 90% 90%, rgba(162, 155, 254, 0.5), transparent),
        radial-gradient(circle 110px at 0% 0%, rgba(255, 218, 185, 0.5), transparent);
    animation: rotateCircles 15s linear infinite;
}

/* Segunda capa con otros 20 círculos */
.party-details::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 85px at 8% 18%, rgba(255, 107, 107, 0.4), transparent),
        radial-gradient(circle 105px at 18% 33%, rgba(78, 205, 196, 0.4), transparent),
        radial-gradient(circle 65px at 28% 48%, rgba(255, 206, 84, 0.4), transparent),
        radial-gradient(circle 125px at 38% 63%, rgba(129, 236, 236, 0.4), transparent),
        radial-gradient(circle 95px at 48% 78%, rgba(255, 154, 162, 0.4), transparent),
        radial-gradient(circle 115px at 58% 93%, rgba(160, 196, 255, 0.4), transparent),
        radial-gradient(circle 75px at 68% 13%, rgba(255, 183, 197, 0.4), transparent),
        radial-gradient(circle 135px at 78% 28%, rgba(189, 224, 254, 0.4), transparent),
        radial-gradient(circle 90px at 88% 43%, rgba(162, 155, 254, 0.4), transparent),
        radial-gradient(circle 110px at 98% 58%, rgba(255, 218, 185, 0.4), transparent),
        radial-gradient(circle 80px at 3% 73%, rgba(255, 107, 107, 0.4), transparent),
        radial-gradient(circle 100px at 13% 88%, rgba(78, 205, 196, 0.4), transparent),
        radial-gradient(circle 120px at 23% 3%, rgba(255, 206, 84, 0.4), transparent),
        radial-gradient(circle 70px at 33% 18%, rgba(129, 236, 236, 0.4), transparent),
        radial-gradient(circle 130px at 43% 33%, rgba(255, 154, 162, 0.4), transparent),
        radial-gradient(circle 90px at 53% 48%, rgba(160, 196, 255, 0.4), transparent),
        radial-gradient(circle 110px at 63% 63%, rgba(255, 183, 197, 0.4), transparent),
        radial-gradient(circle 80px at 73% 78%, rgba(189, 224, 254, 0.4), transparent),
        radial-gradient(circle 100px at 83% 93%, rgba(162, 155, 254, 0.4), transparent),
        radial-gradient(circle 120px at 93% 8%, rgba(255, 218, 185, 0.4), transparent);
    animation: rotateCircles 18s linear infinite reverse;
}

/* Asegurar visibilidad del contenido */
.party-details .container {
    position: relative;
    z-index: 2;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Detalles de la Celebración en rojo con cajas animadas */
.party-details-title {
    color: #e74c3c !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.detail-card {
    text-align: center;
    padding: 40px 20px;
    background: #ff4444;
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
    overflow: hidden;
}

.detail-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-date {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.card-time {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.card-location {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.card-dress {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.detail-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.detail-card p {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* RSVP Section */
.rsvp-section {
    background: #f8f9fa;
}

/* RSVP Section - Nuevo Diseño */
.rsvp-section-new {
    background: linear-gradient(135deg, #fff5f5, #f0f8ff);
    padding: 80px 0;
}

.rsvp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 30px;
}

.rsvp-character {
    flex-shrink: 0;
}

.rsvp-luisito-img {
    width: 120px;
    height: auto;
    border-radius: 50%;
    border: 4px solid #4ECDC4;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
/* RSVP sin emojis e imagen más grande sin círculo */
.rsvp-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #ff4444;
    margin-bottom: 15px;
}

.rsvp-title-new {
    color: #e74c3c;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.rsvp-luisito-img-new {
    width: 180px;
    height: auto;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}   text-align: center;
}

.rsvp-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
}

.rsvp-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
    border: 3px solid #4ECDC4;
}

.rsvp-form-new {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group-new {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4ECDC4;
    font-size: 1.2rem;
    z-index: 2;
}

.form-group-new input,
.form-group-new select {
    width: 100%;
    padding: 18px 18px 18px 50px;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group-new input:focus,
.form-group-new select:focus {
    outline: none;
    border-color: #4ECDC4;
    background: white;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.2);
}

.rsvp-btn-new {
    background: linear-gradient(135deg, #4ECDC4, #ff6b6b);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Fredoka One', cursive;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.rsvp-btn-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.success-message-new {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #e8f5e8, #f0fff0);
    border-radius: 20px;
    border: 3px solid #66bb6a;
}

.success-icon {
    font-size: 3rem;
    color: #66bb6a;
    margin-bottom: 15px;
}

.success-message-new h3 {
    font-family: 'Fredoka One', cursive;
    color: #2e7d32;
    margin-bottom: 10px;
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ECDC4;
}

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

.rsvp-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #4ECDC4, #ff6b6b);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rsvp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Gallery Section */
.gallery-section {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Location Section */
.location-section {
    background: #f8f9fa;
}

/* Location Section - Nuevo Diseño */
.location-section-new {
    background: linear-gradient(135deg, #fff8e1, #f3e5f5);
    padding: 80px 0;
}

/* Ubicación limpia y profesional */
.location-section-clean {
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
    padding: 60px 0;
}

.location-header-clean {
    text-align: center;
    margin-bottom: 50px;
}

.location-title-clean {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.location-subtitle-clean {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.location-content-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.location-main-info h3 {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.location-main-info p {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.feature {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.feature i {
    color: #3498db;
    margin-right: 8px;
    width: 16px;
}

.map-container-clean {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-clean {
    width: 100%;
    height: 300px;
    border: none;
}

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

.location-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #ff4444;
    margin-bottom: 15px;
}

.location-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.location-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #4ECDC4;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card .card-icon {
    font-size: 2.5rem;
    color: #ff4444;
    margin-bottom: 15px;
}

.location-card h3 {
    font-family: 'Fredoka One', cursive;
    color: #4ECDC4;
    margin-bottom: 10px;
}

.location-card p {
    color: #666;
    margin-bottom: 5px;
}

.map-container-new {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 3px solid #4ECDC4;
}

.map-header {
    text-align: center;
    margin-bottom: 20px;
}

.map-header h3 {
    font-family: 'Fredoka One', cursive;
    color: #ff4444;
    margin-bottom: 5px;
}

.map-header p {
    color: #666;
    font-size: 0.9rem;
}

.map-new {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.location-details h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #4ECDC4;
    margin-bottom: 15px;
}

.location-details p,
.location-details li {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
}

.location-details ul {
    list-style: none;
    padding-left: 0;
}

.location-details li i {
    color: #4ECDC4;
    margin-right: 10px;
}

.contact-info a {
    color: #4ECDC4;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#map {
    width: 100%;
    height: 400px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #333, #2c3e50);
    color: white;
    padding: 60px 0 30px;
}

/* Footer - Nuevo Diseño */
.footer-new {
    background: linear-gradient(135deg, #4ECDC4, #ff6b6b);
    color: white;
    padding: 60px 0 30px;
}

/* Footer limpio */
.footer-clean {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 40px 0 20px;
}

.footer-content-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-main-clean {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-luisito-img-clean {
    width: 80px;
    height: auto;
    border-radius: 10px;
}

.footer-message-clean h3 {
    color: #3498db;
    margin-bottom: 5px;
}

.footer-message-clean p {
    color: #bdc3c7;
    margin: 0;
}

.footer-contact-clean {
    text-align: right;
}

.footer-contact-clean p {
    margin: 5px 0;
    color: #bdc3c7;
}

.footer-contact-clean i {
    color: #3498db;
    margin-right: 8px;
}

.footer-bottom-clean {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-content-new {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: center;
}

.footer-main {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-character {
    flex-shrink: 0;
}

.footer-luisito-img {
    width: 100px;
    height: auto;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.footer-message h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-message p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-contact h4,
.footer-social h4 {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 5px;
    opacity: 0.9;
}

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

.social-link-new {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.social-link-new.facebook {
    background: #3b5998;
}

.social-link-new.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link-new.whatsapp {
    background: #25d366;
}

.social-link-new:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.footer-bottom-new {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255,255,255,0.2);
}

.footer-bottom-new p {
    margin-bottom: 5px;
    opacity: 0.8;
}

.grandfather-message-new {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: #fff !important;
    opacity: 1 !important;
    margin-top: 10px !important;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: #4ECDC4;
}

.footer-section h4 {
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 10px;
    color: #bbb;
}

.footer-section i {
    color: #4ECDC4;
    margin-right: 10px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #4ECDC4;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff6b6b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: #bbb;
    margin-bottom: 5px;
}

.grandfather-message {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: #4ECDC4 !important;
    margin-top: 10px !important;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

@keyframes floatBalloon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
    75% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes floatHeart {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

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

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes centerBounceIn {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
    70% { transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes popOut {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}

/* Título de Juegos en azul */
.games-title-blue {
    color: #3498db !important;
}

.games-title-blue i {
    color: #3498db !important;
}

/* Subtítulo divertido para juegos */
.games-subtitle-fun {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Juegos Interactivos en azul */
.games-blue {
    color: #3498db !important;
}

.games-icon-blue {
    color: #3498db !important;
}

/* Texto descriptivo de juegos - más simpático, centrado y en negro */
.games-fun-text {
    color: #333 !important; /* Negro en lugar de azul */
    font-weight: 600;
    font-size: 1.3rem;
    text-align: center;
    margin: 0 auto 40px auto;
    max-width: 600px;
    line-height: 1.6;
    font-family: 'Fredoka One', cursive;
}

/* Solo títulos en rojo */
.games-section .section-title {
    color: #e74c3c !important; /* Rojo vibrante */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.games-section .section-title i {
    color: #e74c3c !important;
}

/* Títulos de los juegos individuales en azul */
.game-card h3 {
    color: #3498db !important;
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.game-card h3 i {
    color: #3498db !important;
}

/* Botones en ROJO como estaban originalmente */
.game-card .game-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card .game-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* Botón "Tocar Cumpleaños" también en rojo */
button[onclick="playHappyBirthday()"] {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    color: white !important;
}

button[onclick="playHappyBirthday()"]:hover {
    background: linear-gradient(135deg, #c0392b, #a93226) !important;
}

/* Values Section con humor e imágenes grandes */
.values-section-humor {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0;
    position: relative;
}

.values-insider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-insider-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 3px solid #3498db;
    transition: transform 0.3s ease;
}

.value-insider-item:hover {
    transform: translateY(-10px);
}

.insider-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.value-icon-large {
    width: 120px;
    height: 120px;
    margin: 20px auto;
    display: block;
    border-radius: 50%;
    padding: 20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.insider-content h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.insider-content p {
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
    font-size: 1rem;
}

/* Values - Sin tarjetas, con insiders */
.values-insider-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.insider-item {
    background: white; /* Fondo consistente */
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    text-align: center;
    border: 3px solid #3498db; /* Borde para aspecto de badge */
}

.insider-icon {
    width: 80px; /* Iconos más pequeños */
    height: 80px;
    margin: 20px auto;
    display: block;
    border-radius: 50%;
}

.insider-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.insider-text h4 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 15px 0 10px;
}

.insider-text p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 1.1rem;
    font-style: italic; /* Para tono simpático */
}

/* Detalles de la Celebración en azul */
.party-details-title-blue {
    color: #3498db !important;
}

/* Detalles en azul */
.details-blue {
    color: #3498db !important;
}

.section-title.details-blue {
    color: #e74c3c !important; /* Rojo vibrante */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* RSVP simplificado */
.rsvp-section-simple {
    background: #f8f9fa;
    padding: 60px 0;
}

.rsvp-content-simple {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.rsvp-title-simple {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.rsvp-subtitle-simple {
    color: #7f8c8d;
    margin-bottom: 40px;
}

.rsvp-form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.form-row input,
.form-row select {
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    min-width: 200px;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: #3498db;
}

.rsvp-btn-simple {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rsvp-btn-simple:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* RSVP limpio */
.rsvp-clean {
    background: #f8f9fa;
    padding: 50px 0;
    text-align: center;
}

.rsvp-form-clean {
    max-width: 600px;
    margin: 30px auto;
}

.form-inline {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.form-inline input,
.form-inline select,
.form-inline button {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-inline button {
    background: #3498db;
    color: white;
    border: none;
    cursor: pointer;
}

/* Lista de invitados - banda funcional */
.guest-list-band {
    background: white;
    padding: 40px 0;
    border-top: 3px solid #3498db;
}

.guest-band-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.guest-band-header h2 {
    color: #2c3e50;
    margin: 0;
}

.guest-counter {
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
}

.guest-ticker-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    overflow: hidden;
    border: 2px solid #e9ecef;
}

.guest-ticker {
    display: flex;
    animation: scroll-horizontal 15s linear infinite;
    white-space: nowrap;
}

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

/* Guest band */
.guest-band-section {
    padding: 40px 0;
    background: white;
}

.guest-counter-info {
    text-align: center;
    margin: 20px 0;
    font-size: 1.1rem;
    color: #7f8c8d;
}

.guest-band-wrapper {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.guest-band-scroll {
    display: flex;
    animation: scroll-names 20s linear infinite;
    white-space: nowrap;
}

.guest-name {
    background: #3498db;
    color: white;
    padding: 8px 16px;
    margin-right: 15px;
    border-radius: 20px;
    display: inline-block;
    min-width: 100px;
    text-align: center;
}

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

/* Ubicación simple */
.location-simple {
    background: #f8f9fa;
    padding: 60px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.location-info h3 {
    color: #3498db;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.location-info p {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.location-details span {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.location-details i {
    color: #3498db;
    margin-right: 8px;
    width: 16px;
}

.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map {
    width: 100%;
    height: 300px;
    border: none;
}

/* Location limpio */
.location-clean {
    background: #f8f9fa;
    padding: 50px 0;
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.location-info {
    background: white;
    padding: 25px;
    border-radius: 10px;
}

.location-info h3 {
    color: #3498db;
    margin-bottom: 15px;
}

.location-info ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.location-info li {
    margin: 8px 0;
    color: #7f8c8d;
}

.location-info i {
    color: #3498db;
    margin-right: 8px;
}

.map-wrapper {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 250px;
}

/* Footer simple */
.footer-simple {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-content p {
    margin: 5px 0;
    color: #bdc3c7;
}

/* Footer minimal */
.footer-minimal {
    background: #2c3e50;
    color: white;
    padding: 25px 0;
    text-align: center;
}

.footer-minimal p {
    margin: 5px 0;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 30px 20px 40px 20px; /* Margen reducido en tablet */
    }
    
    .countdown-section {
        padding: 20px 25px;
        max-width: 95%;
        margin: 15px auto 0 auto;
    }
    
    .countdown-section h3 {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem; /* Título más pequeño en móvil */
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 10px 15px;
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-section {
        padding: 20px;
        margin: 15px auto 0 auto;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-card {
        min-height: auto;
        padding: 25px;
    }
    
    .memory-game {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        height: 200px;
    }
    
    .memory-card {
        font-size: 1rem;
    }
    
    .piano-keys {
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
    }
    
    .piano-key {
        padding: 12px 8px;
        font-size: 0.8rem;
        min-width: 40px;
    }
    
    #drawing-canvas {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }
    
    .drawing-tools {
        gap: 8px;
    }
    
    .color-btn {
        width: 35px;
        height: 35px;
    }
    
    .game-area {
        height: 150px;
    }
    
    .location-info {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .rsvp-header {
        flex-direction: column;
        text-align: center;
    }
    
    .guest-counter {
        flex-direction: column;
        gap: 20px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .location-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content-new {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        align-items: center;
    }
    
    .location-content-clean {
        grid-template-columns: 1fr;
    }
    
    .footer-content-clean {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-contact-clean {
        text-align: center;
    }
    
    .guest-header-technical {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-row input,
    .form-row select {
        width: 100%;
        min-width: auto;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .guest-band-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .values-insider-grid {
        grid-template-columns: 1fr;
    }
    
    .form-inline {
        flex-direction: column;
        align-items: center;
    }
    
    .location-layout {
        grid-template-columns: 1fr;
    }
    
    .values-insider-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 20px 15px 30px 15px; /* Margen mínimo en móvil */
    }
    
    .countdown-section {
        padding: 15px 20px;
        margin: 10px auto 0 auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .plim-main-character {
        width: 100px; /* Aún más pequeño en móviles */
    }
    
    .countdown-section {
        padding: 15px;
        margin: 10px 10px 0 10px;
        max-width: calc(100% - 20px);
    }
    
    .countdown-section h3 {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    /* Mejoras específicas para juegos en móviles */
    .games-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 10px !important;
    }
    
    .game-card {
        padding: 15px !important;
        min-height: auto !important;
        margin: 0 !important;
        border-radius: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .game-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }
    
    /* Memory Game específico para móviles */
    .memory-game {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 4px !important;
        height: 160px !important;
        max-width: 300px !important;
        margin: 10px auto !important;
        width: 100% !important;
    }
    
    .memory-card {
        font-size: 0.7rem !important;
        border-radius: 6px !important;
        min-height: 35px !important;
        aspect-ratio: 1 !important;
    }
    
    .card-front, .card-back {
        font-size: 0.9rem !important;
        padding: 2px !important;
    }
    
    /* Piano específico para móviles */
    .piano-keys {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 2px !important;
        justify-content: center !important;
        max-width: 320px !important;
        margin: 10px auto !important;
        height: 120px !important;
        width: 100% !important;
    }
    
    .piano-key {
        padding: 6px 2px !important;
        font-size: 0.5rem !important;
        min-width: 40px !important;
        flex: 1 !important;
        max-width: 50px !important;
        height: 100px !important;
        margin: 0 !important;
    }
    
    .piano-key i {
        font-size: 1rem !important;
        margin-bottom: 2px !important;
    }
    
    /* Drawing Game específico para móviles */
    #drawing-canvas {
        width: 100% !important;
        max-width: 300px !important;
        height: 160px !important;
        margin: 10px auto !important;
        display: block !important;
    }
    
    .drawing-tools {
        display: flex !important;
        gap: 8px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        margin-top: 10px !important;
    }
    
    .color-btn {
        width: 32px !important;
        height: 32px !important;
        border-radius: 50% !important;
        border: 2px solid white !important;
    }
    
    .game-area {
        height: auto !important;
        min-height: 120px !important;
        padding: 15px !important;
        width: 100% !important;
    }
    
    .game-btn {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        margin-top: 15px !important;
        max-width: 300px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Additional RSVP Styles */
.rsvp-plim-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.rsvp-plim-character {
    width: 100px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.rsvp-bubble {
    background: white;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 300px;
}

.rsvp-bubble::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    border-color: transparent white transparent transparent;
}

.rsvp-bubble p {
    margin: 0;
    color: #4ECDC4;
    font-weight: 600;
    text-align: center;
}

.form-group label i {
    margin-right: 8px;
    color: #4ECDC4;
}

/* Guest List Section */
.guest-list-section {
    background: white;
}

/* Guest List Section - Nuevo Diseño */
.guest-list-section-new {
    background: linear-gradient(135deg, #f8f9fa, #fff5f5);
    padding: 80px 0;
}

/* Lista de invitados técnica sin degradados */
.guest-list-section-technical {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 3px solid #3498db;
}

.guest-header-technical {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.guest-title-technical {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.guest-counter-technical {
    display: flex;
    align-items: center;
    gap: 15px;
}

.refresh-btn-technical {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-btn-technical:hover {
    background: #c0392b;
    transform: rotate(180deg);
}

/* Banda de invitados funcional */
.guest-band-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.guest-band {
    display: flex;
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
}

.guest-item {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 10px 20px;
    margin-right: 20px;
    border-radius: 25px;
    font-weight: 500;
    min-width: 150px;
    text-align: center;
}

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

.guest-header {
    text-align: center;
    margin-bottom: 40px;
}

.guest-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #4ECDC4;
    margin-bottom: 15px;
}

.guest-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.guest-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.counter-card {
    background: white;
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 3px solid #4ECDC4;
}

.counter-icon {
    font-size: 2.5rem;
    color: #4ECDC4;
}

.counter-number {
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
    font-family: 'Fredoka One', cursive;
    display: block;
}

.counter-label {
    color: #7f8c8d;
    font-weight: 500;
    font-size: 1rem;
    display: block;
}

.refresh-btn {
    background: linear-gradient(135deg, #ff6b6b, #4ECDC4);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.guest-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.loading-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid #e0e0e0;
}

.loading-card i {
    font-size: 2rem;
    color: #4ECDC4;
    margin-bottom: 15px;
}

.guest-list-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.guest-count {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4ECDC4;
}

.guest-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.guest-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.guest-card:hover {
    transform: translateY(-5px);
}

.guest-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.guest-attendees {
    color: #4ECDC4;
    font-size: 0.9rem;
}

.loading-message {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1rem;
}

.guest-list-note {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #666;
}

/* Confetti Animation */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff6b6b;
    animation: confetti-fall 3s linear forwards;
}

.confetti-piece:nth-child(2n) { background: #4ECDC4; }
.confetti-piece:nth-child(3n) { background: #ffa726; }
.confetti-piece:nth-child(4n) { background: #66bb6a; }
.confetti-piece:nth-child(5n) { background: #ab47bc; }

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

/* Games Grid Update */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.memory-card-container, .music-card-container {
    position: relative;
}

/* ========== GIFT RECOMMENDATION SYSTEM - PLIM PLIM STYLE ========== */
.gift-recommendation-section {
    background: linear-gradient(135deg, #fff3e0, #fce4ec);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.gift-recommendation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 120px at 10% 20%, rgba(255, 107, 107, 0.3), transparent),
        radial-gradient(circle 100px at 90% 30%, rgba(78, 205, 196, 0.3), transparent),
        radial-gradient(circle 80px at 20% 80%, rgba(255, 206, 84, 0.3), transparent),
        radial-gradient(circle 110px at 80% 70%, rgba(129, 236, 236, 0.3), transparent);
    animation: rotateCircles 20s linear infinite;
}

.gift-title {
    color: #e74c3c !important;
    text-align: center;
    margin-bottom: 20px;
}

.tech-description {
    text-align: center;
    margin-bottom: 40px;
}

.tech-subtitle {
    font-family: 'Fredoka One', cursive;
    color: #3498db;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.tech-details {
    color: #7f8c8d;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.gift-system-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 3px solid #4ECDC4;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.system-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.plim-ai-avatar {
    position: relative;
}

.ai-character {
    width: 80px;
    height: 80px;
    border-radius: 10px;
}

.ai-status {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #27ae60;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    border: 2px solid white;
    font-weight: bold;
}

.system-info h3 {
    color: #2c3e50;
    font-family: 'Fredoka One', cursive;
    margin-bottom: 5px;
}

.system-info p {
    color: #7f8c8d;
    margin: 0;
    font-style: italic;
}

.gift-input-area {
    margin-bottom: 30px;
}

.input-label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 3px solid #e9ecef;
    border-radius: 50px;
    padding: 5px;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: #4ECDC4;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.2);
}

.input-wrapper .input-icon {
    color: #4ECDC4;
    margin-left: 15px;
    font-size: 1.2rem;
}

.gift-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px;
    font-size: 1rem;
    outline: none;
    color: #2c3e50;
}

.gift-input::placeholder {
    color: #bdc3c7;
}

.analyze-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.analyze-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.gift-responses {
    margin-bottom: 20px;
}

.gift-response-item {
    background: linear-gradient(135deg, #4ECDC4, #45b7aa);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    margin: 10px 0;
    font-weight: 600;
    text-align: center;
    animation: fadeInUp 0.5s ease;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.final-recommendations {
    background: linear-gradient(135deg, #fff5f5, #ffeaa7);
    border-radius: 20px;
    padding: 30px;
    border: 2px dashed #e74c3c;
    animation: fadeInUp 0.8s ease;
}

.recommendations-header h4 {
    color: #e74c3c;
    font-family: 'Fredoka One', cursive;
    margin-bottom: 10px;
    text-align: center;
}

.recommendations-note {
    color: #7f8c8d;
    text-align: center;
    font-style: italic;
    margin-bottom: 20px;
}

.recommendations-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.recommendations-list li {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    color: #2c3e50;
    font-weight: 500;
    border-left: 4px solid #e74c3c;
}

/* ========== RSVP SECTION - PLIM PLIM STYLE ========== */
.rsvp-plim-section {
    background: linear-gradient(135deg, #e8f5e8, #e1f5fe);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.rsvp-plim-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 90px at 15% 25%, rgba(255, 107, 107, 0.2), transparent),
        radial-gradient(circle 120px at 85% 35%, rgba(78, 205, 196, 0.2), transparent),
        radial-gradient(circle 70px at 25% 75%, rgba(255, 206, 84, 0.2), transparent);
    animation: floatBalloon 15s ease-in-out infinite;
}

.rsvp-title {
    color: #27ae60 !important;
    text-align: center;
    margin-bottom: 40px;
}

.rsvp-plim-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.plim-invitation {
    text-align: center;
    position: relative;
}

.rsvp-plim-character {
    width: 200px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.invitation-bubble {
    background: white;
    padding: 20px;
    border-radius: 25px;
    position: relative;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #27ae60;
}

.invitation-bubble::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 15px;
    border-color: transparent transparent #27ae60 transparent;
}

.invitation-bubble p {
    color: #27ae60;
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    margin: 0;
}

.rsvp-form-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 3px solid #27ae60;
}

.rsvp-form-plim {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group-plim label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group-plim label i {
    color: #27ae60;
    margin-right: 8px;
}

.form-group-plim input,
.form-group-plim select {
    width: 100%;
    padding: 15px 18px;
    border: 3px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.form-group-plim input:focus,
.form-group-plim select:focus {
    outline: none;
    border-color: #27ae60;
    box-shadow: 0 0 15px rgba(39, 174, 96, 0.2);
}

.rsvp-confirm-btn {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Fredoka One', cursive;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.rsvp-confirm-btn:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
}

/* ========== GUEST LIST - PLIM PLIM STYLE ========== */
.guest-list-plim-section {
    background: linear-gradient(135deg, #f0f8ff, #e8f5e8);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.guest-list-plim-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 80px at 15% 25%, rgba(255, 107, 107, 0.2), transparent),
        radial-gradient(circle 100px at 85% 30%, rgba(78, 205, 196, 0.2), transparent),
        radial-gradient(circle 70px at 30% 80%, rgba(255, 206, 84, 0.2), transparent);
    animation: rotateCircles 22s linear infinite;
}

.guest-list-title {
    color: #9b59b6 !important;
    text-align: center;
    margin-bottom: 40px;
}

.guest-plim-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.guest-counter-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #9b59b6;
    text-align: center;
}

.counter-plim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.view-guests-btn {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
    margin-top: 10px;
}

.view-guests-btn:hover {
    background: linear-gradient(135deg, #8e44ad, #7d3c98);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
}

.view-guests-btn i {
    margin-right: 8px;
}

/* ========== MODAL STYLES ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 80vh;
    width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.guest-modal-list {
    display: grid;
    gap: 15px;
}

.guest-modal-item {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.guest-modal-item:hover {
    border-color: #9b59b6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.2);
}

.guest-modal-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.guest-modal-count {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.empty-guest-list {
    text-align: center;
    padding: 40px 20px;
    color: #7f8c8d;
}

.empty-guest-list i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #bdc3c7;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95vw;
        max-height: 90vh;
        margin: 20px;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 15px;
        max-height: 70vh;
    }
    
    .guest-modal-item {
        padding: 12px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .counter-plim {
        flex-direction: column;
        gap: 15px;
    }
    
    .view-guests-btn {
        margin-top: 15px;
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98vw;
        margin: 10px;
    }
    
    .guest-modal-item {
        padding: 10px;
    }
    
    .guest-modal-name {
        font-size: 1rem;
    }
    
    .guest-modal-count {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

.counter-icon-plim {
    color: #9b59b6;
    font-size: 3rem;
}

.counter-info-plim {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.total-number {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    color: #e74c3c;
    display: block;
    margin-bottom: 5px;
}

.counter-label-plim {
    color: #7f8c8d;
    font-size: 1.1rem;
    font-weight: 600;
}

.guests-display-area {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #4ECDC4;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guests-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.guest-tag {
    background: linear-gradient(135deg, #4ECDC4, #45b7aa);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(78, 205, 196, 0.3);
    animation: bounceIn 0.6s ease;
    text-align: center;
    white-space: nowrap;
}

.guest-tag:nth-child(even) {
    background: linear-gradient(135deg, #ff6b6b, #e74c3c);
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
    animation-delay: 0.1s;
}

.guest-tag:nth-child(3n) {
    background: linear-gradient(135deg, #ffa726, #ff9800);
    box-shadow: 0 3px 10px rgba(255, 152, 0, 0.3);
    animation-delay: 0.2s;
}

.guest-tag:nth-child(4n) {
    background: linear-gradient(135deg, #ab47bc, #9c27b0);
    box-shadow: 0 3px 10px rgba(156, 39, 176, 0.3);
    animation-delay: 0.3s;
}

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

/* ========== PHOTO UPLOAD SECTION - SIMPLE STYLE ========== */
.photo-upload-simple-section {
    background: linear-gradient(135deg, #fff0f5, #f0f8ff);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.photo-upload-simple-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 100px at 20% 30%, rgba(255, 107, 107, 0.2), transparent),
        radial-gradient(circle 80px at 80% 20%, rgba(78, 205, 196, 0.2), transparent),
        radial-gradient(circle 120px at 30% 80%, rgba(255, 206, 84, 0.2), transparent);
    animation: rotateCircles 18s linear infinite;
}

.photo-title {
    color: #4ECDC4 !important;
    text-align: center;
    margin-bottom: 50px;
}

.photo-upload-simple-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.photo-upload-card-simple {
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 3px solid #4ECDC4;
    text-align: center;
}

.photo-icon-large {
    margin-bottom: 30px;
}

.camera-icon-large {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(78, 205, 196, 0.3));
}

.photo-main-message {
    margin-bottom: 40px;
}

.photo-main-message h3 {
    color: #2c3e50;
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.photo-explanation {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.photo-upload-action-center {
    margin-bottom: 30px;
}

.upload-photos-btn-large {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.upload-photos-btn-large:hover {
    background: linear-gradient(135deg, #ee5a52, #e74c3c);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.4);
    text-decoration: none;
    color: white;
}

.photo-info-note {
    border-top: 2px solid #f8f9fa;
    padding-top: 25px;
}

.photo-info-note p {
    color: #4ECDC4;
    font-style: italic;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.photo-info-note i {
    color: #ff6b6b;
    margin-right: 8px;
}

/* ========== FOOTER - PLIM PLIM STYLE ========== */
.footer-plim {
    background: linear-gradient(135deg, #2c3e50, #34495e, #4a6741);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-plim::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 150px at 10% 20%, rgba(78, 205, 196, 0.1), transparent),
        radial-gradient(circle 100px at 90% 30%, rgba(255, 107, 107, 0.1), transparent),
        radial-gradient(circle 120px at 30% 90%, rgba(255, 206, 84, 0.1), transparent);
    animation: twinkle 10s ease-in-out infinite;
}

.footer-plim-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-character-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-luisito-img {
    width: 120px;
    height: auto;
    border-radius: 20px;
    border: 4px solid #4ECDC4;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
    animation: float 4s ease-in-out infinite;
}

.footer-message h3 {
    font-family: 'Fredoka One', cursive;
    color: #4ECDC4;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-message p {
    color: #ecf0f1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.footer-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.event-summary,
.contact-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-summary h4,
.contact-section h4 {
    font-family: 'Fredoka One', cursive;
    color: #ff6b6b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.event-summary h4 i,
.contact-section h4 i {
    color: #ff6b6b;
    margin-right: 8px;
}

.event-summary p,
.contact-section p {
    color: #ecf0f1;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-section a {
    color: #4ECDC4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-hearts {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-hearts i {
    position: absolute;
    animation: floatHeart 6s ease-in-out infinite;
    opacity: 0.6;
}

.heart-1 { top: 10%; left: 85%; color: #ff6b6b; animation-delay: 0s; }
.heart-2 { top: 60%; left: 90%; color: #ff6b6b; animation-delay: 2s; }
.heart-3 { top: 30%; left: 95%; color: #ff6b6b; animation-delay: 4s; }
.star-1 { top: 20%; left: 5%; color: #ffa726; animation-delay: 1s; }
.star-2 { top: 70%; left: 8%; color: #ffa726; animation-delay: 3s; }

.footer-bottom-plim {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright {
    font-size: 1rem;
    color: #bdc3c7;
    margin-bottom: 5px;
}

.made-with-love {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: #4ECDC4;
    margin-bottom: 8px;
}

.tech-note {
    font-size: 0.85rem;
    color: #95a5a6;
    font-style: italic;
    margin: 0;
}







.remove-rsvp-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Fredoka One', cursive;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.remove-rsvp-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.remove-rsvp-btn i {
    font-size: 0.8rem;
}

.accept-rsvp-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #27ae60;
    border: 2px solid white;
    padding: 12px 25px;
    border-radius: 25px;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.accept-rsvp-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.accept-rsvp-btn i {
    font-size: 1rem;
}

/* ========== RESPONSIVE UPDATES ========== */
@media (max-width: 768px) {
    .rsvp-plim-container,
    .location-plim-content,
    .footer-plim-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-features-plim {
        grid-template-columns: 1fr;
    }
    
    .footer-info-section {
        grid-template-columns: 1fr;
    }
    
    .travel-time {
        flex-direction: column;
    }
    
    .counter-plim {
        flex-direction: column;
        gap: 15px;
    }
    
    .counter-icon-plim {
        font-size: 2.5rem;
    }
    
    .total-number {
        font-size: 2.5rem;
    }
    
    .recommendations-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .system-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .input-wrapper {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .analyze-btn {
        width: 100%;
        margin-top: 10px;
    }
    
    .gift-input {
        text-align: center;
    }
    
    /* Photo Upload Section - Tablet Responsive */
    .photo-upload-simple-content {
        max-width: calc(100% - 40px);
        margin: 0 20px;
    }
    
    .photo-upload-card-simple {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .photo-main-message h3 {
        font-size: 1.8rem;
    }
    
    .camera-icon-large {
        width: 90px;
    }
    
    /* Reducir tamaño de imagen luplim.png en hero para móviles - v2 */
    .plim-main-character {
        width: 120px !important;
        max-width: 120px !important;
    }
}

@media (max-width: 480px) {
    .gift-system-card,
    .rsvp-form-card,
    .location-card-plim,
    .map-container-plim {
        padding: 25px;
    }
    
    .footer-character-section {
        flex-direction: column;
        text-align: center;
    }
    
    .ai-character {
        width: 60px;
        height: 60px;
    }
    
    .ai-status {
        bottom: -8px;
        right: -8px;
        font-size: 0.6rem;
        padding: 1px 4px;
    }
    
    .input-wrapper {
        padding: 10px;
    }
    
    .input-wrapper .input-icon {
        margin-left: 10px;
        font-size: 1rem;
    }
    
    .gift-input {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .analyze-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Photo Upload Section - Mobile Responsive */
    .photo-upload-simple-content {
        max-width: calc(100% - 20px);
        margin: 0 10px;
    }
    
    .photo-upload-card-simple {
        padding: 30px 20px;
        border-radius: 20px;
        margin: 0 10px;
    }
    
    .photo-main-message h3 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .photo-explanation {
        font-size: 1rem;
    }
    
    .upload-photos-btn-large {
        padding: 15px 25px;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .camera-icon-large {
        width: 80px;
    }
}

/* ========== GIFT RECOMMENDATIONS MODAL ========== */
.gift-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gift-modal-overlay.show {
    opacity: 1;
}

.gift-modal {
    background: white;
    border-radius: 25px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.7) translateY(50px);
    transition: all 0.3s ease;
    border: 4px solid #e74c3c;
}

.gift-modal-overlay.show .gift-modal {
    transform: scale(1) translateY(0);
}

.gift-modal-header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 21px 21px 0 0;
}

.gift-modal-header h3 {
    margin: 0;
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gift-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.gift-modal-content {
    padding: 30px;
    text-align: center;
}

.gift-modal-note {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.6;
}

.gift-modal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.gift-modal-list li {
    background: linear-gradient(135deg, #fff5f5, #ffeaa7);
    margin: 12px 0;
    padding: 15px 20px;
    border-radius: 15px;
    color: #2c3e50;
    font-weight: 600;
    border-left: 5px solid #e74c3c;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: slideInUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.gift-modal-list li:nth-child(1) { animation-delay: 0.1s; }
.gift-modal-list li:nth-child(2) { animation-delay: 0.2s; }
.gift-modal-list li:nth-child(3) { animation-delay: 0.3s; }
.gift-modal-list li:nth-child(4) { animation-delay: 0.4s; }

.gift-modal-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gift-modal-list li i {
    color: #e74c3c;
    margin-right: 10px;
    font-size: 1.1rem;
}

.gift-modal-laugh {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: #e74c3c;
    margin-top: 20px;
    animation: bounce 1s ease infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive design for gift modal */
@media (max-width: 768px) {
    .gift-modal {
        width: 95%;
        margin: 10px;
        max-height: 85vh;
    }
    
    .gift-modal-header {
        padding: 15px;
    }
    
    .gift-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .gift-modal-content {
        padding: 20px;
    }
    
    .gift-modal-note {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .gift-modal-list li {
        padding: 12px 15px;
        margin: 8px 0;
        font-size: 0.9rem;
    }
    
    .gift-modal-laugh {
        font-size: 1.5rem;
        margin-top: 15px;
    }
}