* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    height: 100vh;
    background: linear-gradient(rgba(0, 80, 0, 0.7), rgba(0, 80, 0, 0.7)),
                repeating-linear-gradient(
                    45deg,
                    rgba(0, 100, 0, 0.2),
                    rgba(0, 100, 0, 0.2) 20px,
                    rgba(0, 80, 0, 0.3) 20px,
                    rgba(0, 80, 0, 0.3) 40px
                );
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 100, 0, 0.6); /* Dark green overlay */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    padding: 2rem;
}

.image-container {
    margin-bottom: 2rem;
}

.queen-emoji {
    font-size: 80px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
    margin-top: -40px; /* Pull the crown up over the image */
}

.queen-image {
    max-width: 300px;
    height: auto;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin: 0 auto 20px;
    display: block;
    position: relative;
    z-index: 2;
}

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

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    padding: 0.8rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.yes-btn {
    background-color: #9acd32; /* Yellow-green */
    color: white;
}

.no-btn {
    background-color: #ff4444; /* Red */
    color: white;
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    .button-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
}
