* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFBBC1 0%, #FFDEE3 100%);
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px;
    background: #FFDEE3;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(255, 111, 119, 0.3);
    border: 2px solid #FFBBC1;
}

.gif-container {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(45deg, #FF6F77, #FF8896);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gif-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 111, 119, 0.8), rgba(255, 136, 150, 0.8));
    z-index: 1;
}

.gif-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.gif-placeholder {
    color: white;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(192, 0, 0, 0.3);
}

.button-container {
    display: flex;
    gap: 15px;
    width: 100%;
}

button {
    flex: 1;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

button:hover::after {
    opacity: 1;
}

.btn-left {
    background: linear-gradient(135deg, #FF3334, #FF6F77);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 51, 52, 0.4);
}

.btn-left:hover {
    background: linear-gradient(135deg, #C00000, #FF3334);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(192, 0, 0, 0.5);
}

.btn-left:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 12px rgba(255, 51, 52, 0.4);
}

.btn-right {
    background: white;
    color: #FF3334;
    border: 2px solid #FF6F77;
    box-shadow: 0 4px 12px rgba(255, 111, 119, 0.2);
}

.btn-right:hover {
    background: linear-gradient(135deg, #FFBBC1, #FFDEE3);
    color: #C00000;
    transform: translateY(-3px) scale(1.02);
    border-color: #FF3334;
    box-shadow: 0 8px 20px rgba(255, 111, 119, 0.4);
}

.btn-right:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 12px rgba(255, 111, 119, 0.2);
}

/* Tablet en groter */
@media (min-width: 768px) {
    .container {
        padding: 40px;
    }

    button {
        padding: 18px 32px;
        font-size: 18px;
    }
}

/* Kleine schermen */
@media (max-width: 480px) {
    .button-container {
        flex-direction: column;
    }
    
    button {
        width: 100%;
    }
}

/* Animatie voor container binnenkomst */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeInUp 0.6s ease-out;
}

/* Stijl voor eventuele tekst in de container */
.container h1, 
.container p {
    color: #C00000;
    margin-bottom: 20px;
    text-align: center;
}

.container h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(255, 187, 193, 0.3);
}

/* Stijlen voor de Yes knop (was .btn-left) */
#yesBtn {
    background: linear-gradient(135deg, #FF3334, #FF6F77);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 51, 52, 0.4);
    flex: 1;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#yesBtn:hover {
    background: linear-gradient(135deg, #C00000, #FF3334);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(192, 0, 0, 0.5);
}

/* Stijlen voor de No knop (was .btn-right) */
#noBtn {
    background: white;
    color: #FF3334;
    border: 2px solid #FF6F77;
    box-shadow: 0 4px 12px rgba(255, 111, 119, 0.2);
    flex: 1;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#noBtn:hover {
    background: linear-gradient(135deg, #FFBBC1, #FFDEE3);
    color: #C00000;
    transform: translateY(-3px) scale(1.02);
    border-color: #FF3334;
    box-shadow: 0 8px 20px rgba(255, 111, 119, 0.4);
}

/* Mobile vriendelijk */
@media (max-width: 480px) {
    #yesBtn, #noBtn {
        width: 100%;
        min-height: 55px;
        font-size: 18px;
    }
}