* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 50%, #f67280 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.container {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 600px;
    width: 90%;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

h1 {
    color: #e63946;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#girlName {
    color: #d62839;
    font-weight: bold;
    text-decoration: underline;
}

h2 {
    color: #c1121f;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    min-height: 200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px;
}

.btn {
    padding: 20px 40px;
    font-size: 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-yes {
    background: linear-gradient(135deg, #ff6b9d, #e63946);
    color: white;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.btn-yes:hover {
    background: linear-gradient(135deg, #e63946, #c1121f);
}

.btn-no {
    background: linear-gradient(135deg, #9d9d9d, #6c757d);
    color: white;
    position: fixed;
    left: auto;
    right: 30%;
    top: 50%;
    transform: translate(0, -50%);
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100;
    min-width: fit-content;
    white-space: nowrap;
}

/* Célébration */
.celebration {
    display: none;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 90%;
    animation: celebrationAppear 0.6s ease-in;
}

.celebration.show {
    display: block;
}

@keyframes celebrationAppear {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.celebration h1 {
    color: #2ec4b6;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.celebration-gif {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.celebration-text {
    font-size: 1.5rem;
    color: #e63946;
    font-weight: bold;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
    
    .celebration-gif {
        width: 200px;
        height: 200px;
    }
}
