html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    cursor: url('../images/pointer.png'), auto;
}

canvas {
    width: 100%;
    height: auto;
    background: #111;
}

/* Valentine Question Styles */
.valentine-question-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    z-index: 100;
    animation: slideUp 0.8s ease-out;
    display: none;
}

.valentine-question-container.show {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -30%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.valentine-question {
    font-size: 2.5rem;
    color: #2d2dff;
    margin-bottom: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease-out;
    margin: 0 0 50px 0;
    font-family: "Comic Sans MS", cursive, sans-serif;
    text-shadow: 0 0 10px rgba(45, 45, 255, 0.3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.valentine-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.yes-btn,
.no-btn {
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 50px;
    min-width: 150px;
    font-family: "Comic Sans MS", cursive, sans-serif;
}

.yes-btn {
    background: linear-gradient(135deg, #f5576c 0%, #2d2dff 100%);
    color: white;
}

.yes-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(45, 45, 255, 0.5);
}

.yes-btn:active:not(:disabled) {
    transform: scale(0.98);
}

.no-btn {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
}

.no-btn:hover:not(:disabled) {
    transform: scale(0.95);
    box-shadow: 0 15px 40px rgba(118, 75, 162, 0.4);
}

.no-btn:active:not(:disabled) {
    transform: scale(0.92);
}

.valentine-success {
    display: none;
    margin-top: 30px;
    font-size: 1.3rem;
    color: #f5576c;
    font-weight: bold;
    animation: popIn 0.5s ease-out;
    text-shadow: 0 0 8px rgba(245, 87, 108, 0.4);
}

.valentine-success.show {
    display: block;
}

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

.heart-float {
    position: fixed;
    pointer-events: none;
    z-index: 50;
    font-size: 2rem;
}

@keyframes float {
    0% {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) translateX(var(--tx)) scale(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .valentine-question-container {
        padding: 40px 25px;
        width: 90%;
    }

    .valentine-question {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .valentine-buttons {
        gap: 15px;
    }

    .yes-btn,
    .no-btn {
        font-size: 1rem;
        padding: 12px 30px;
        min-width: 120px;
    }
}
