* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-image: url('images/background.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    cursor: url('images/curseur/Coeur.png') 16 16, auto;
}

* {
    cursor: url('images/curseur/Coeur.png') 16 16, auto !important;
}

a,
button,
[onclick],
input[type="button"],
input[type="submit"] {
    cursor: url('images/curseur/CoeurClick.png') 16 16, pointer !important;
}

/* Effet de clic */
.click-effect {
    position: absolute;
    width: 80px;
    height: auto;
    pointer-events: none;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in;
    transition: opacity 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Image centrée */
.center-image-container {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.center-image {
    width: 300px;
    height: auto;
    display: block;
    mix-blend-mode: darken;
}

/* Larmes */
.tear {
    position: absolute;
    width: 8px;
    height: 0;
    background: linear-gradient(to bottom, #4169E1, #1E90FF);
    border-radius: 4px;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.3s ease;
    z-index: 101;
}

.tear-left {
    top: calc(45% - 20px);
    left: 35%;
}

.tear-right {
    top: calc(45% - 47px);
    right: calc(35% + 40px);
}

.tear.visible {
    opacity: 1;
}


/* Texte centré */
.center-text {
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    text-align: center;
}

.center-text h1 {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: #FF1493;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 20, 147, 0.6),
        0 3px 10px rgba(0, 0, 0, 0.3);
    margin: 0 0 30px 0;
}

/* Buttons container */
.buttons-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 20px;
}

/* Button styles */
.btn {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    padding: 15px 40px;
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-yes {
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    color: white;
}

.btn-yes:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

.btn-no {
    background: linear-gradient(135deg, #666, #999);
    color: white;
}

.btn-no:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Bus en bas à droite */
.bus-image {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 675px;
    height: auto;
    z-index: 50;
}

/* Amtaro en haut à gauche */
.amtaro-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 225px;
    height: auto;
    z-index: 50;
    cursor: url('images/curseur/CoeurClick.png') 16 16, pointer !important;
}

/* Otto en haut à droite */
.otto-image {
    position: fixed;
    top: 0;
    right: 0;
    width: 900px;
    height: auto;
    z-index: 50;
    transition: opacity 0.3s ease;
}

.otto-image.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Overlay artifice fullscreen */
.artifice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.artifice-overlay.active {
    display: flex;
}

.artifice-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
}