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

body, html {
    height: 100%;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive, Arial, sans-serif;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#container {
    position: relative;
    background-color: lightpink;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1;
    width: 100vw;
    max-width: 100vw;
}

#content {
    text-align: center;
    color: #2d3a6e;
    z-index: 2;
}

#profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 0;
    object-fit: cover;
    margin: 20px auto;
    display: block;
}

#next-btn {
    background-color: #3a6ac7;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#next-btn:hover {
    background-color: #1a2a47;
    transform: scale(1.1) rotate(-2deg);
}

.heart {
    position: absolute;
    width: 50px;
    height: 45px;
    animation: float 5s ease-in-out infinite;
    box-shadow: 0 4px 16px 0 rgba(58, 106, 199, 0.2);
    transition: transform 0.2s;
    pointer-events: none;
}
.heart:hover {
    transform: scale(1.2);
    filter: brightness(1.2) drop-shadow(0 0 8px #3a6ac7);
}

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

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

#content h1 {
    animation: appear 2s ease-in-out;
}

#next-btn {
    animation: appear 3s ease-in-out;
}

#main-heading {
    font-size: 5rem;
    font-weight: bold;
    text-align: center;
    color: #3a6ac7;
    margin-top: 30px;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    text-shadow: 0 4px 24px rgba(58,106,199,0.15), 0 2px 0 #fff;
    animation: appear 2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* Cringe PowerPoint transition */
.cringe-out {
    animation: cringeSpinOut 1s forwards;
}
@keyframes cringeSpinOut {
    0% { opacity: 1; transform: scale(1) rotate(0deg); }
    60% { opacity: 0.5; transform: scale(1.2) rotate(30deg); }
    100% { opacity: 0; transform: scale(0.1) rotate(720deg); }
}

/* Cringe PowerPoint transition 2 */
.cringe-out-2 {
    animation: cringePoppyOut 1.1s forwards;
}
@keyframes cringePoppyOut {
    0% { opacity: 1; transform: scale(1) rotate(0deg) skewX(0deg); filter: blur(0) brightness(1); }
    20% { opacity: 1; transform: scale(1.3, 0.7) rotate(-10deg) skewX(10deg); filter: blur(2px) brightness(1.2); }
    40% { opacity: 0.8; transform: scale(0.7, 1.3) rotate(10deg) skewX(-10deg); filter: blur(4px) brightness(1.4); }
    60% { opacity: 0.6; transform: scale(1.4, 0.6) rotate(-20deg) skewX(20deg); filter: blur(6px) brightness(1.6); }
    80% { opacity: 0.4; transform: scale(0.6, 1.4) rotate(20deg) skewX(-20deg); filter: blur(8px) brightness(1.8); }
    100% { opacity: 0; transform: scale(2, 0.1) rotate(360deg) skewX(60deg); filter: blur(12px) brightness(2); }
}

/* New content layout */
.new-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    animation: appear 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.question-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 2.2rem;
    color: #2d3a6e;
    margin-bottom: 30px;
}

.question-row img {
    width: 160px;
    height: 160px;
    vertical-align: middle;
}

.button-row {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.button-row button {
    background-color: #3a6ac7;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.button-row button:hover {
    background-color: #1a2a47;
    transform: scale(1.1) rotate(-2deg);
}

.convince-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    animation: appear 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    text-align: center;
    font-size: 1.7rem;
    color: #2d3a6e;
}

.image-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 30px 0 20px 0;
}

.image-row img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 16px 0 rgba(58, 106, 199, 0.15);
}

.convince-btn-row {
    display: flex;
    justify-content: center;
}

.convince-btn-row button {
    background-color: #3a6ac7;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    margin-top: 10px;
}

.convince-btn-row button:hover {
    background-color: #1a2a47;
    transform: scale(1.1) rotate(2deg);
}

.cringe-block-out {
    animation: cringeBlockOut 1.1s forwards;
}
@keyframes cringeBlockOut {
    0% { opacity: 1; clip-path: inset(0 0 0 0); transform: translateX(0); }
    40% { opacity: 0.7; clip-path: inset(0 40% 0 0); transform: translateX(30px); }
    70% { opacity: 0.4; clip-path: inset(0 80% 0 0); transform: translateX(80px); }
    100% { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateX(200px); }
}

.movie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    animation: appear 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    text-align: center;
    font-size: 1.7rem;
    color: #2d3a6e;
    margin-top: 30px;
}

.movie-btn-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 40px;
    z-index: 100;
    height: 60px;
}

.movie-btn-row button {
    background-color: #3a6ac7;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    position: relative;
    z-index: 1;
}

#no-btn {
    pointer-events: none;
    position: fixed;
    right: 40px;
    bottom: 40px;
    transition: left 0.3s, top 0.3s, right 0.3s, bottom 0.3s;
    background-color: #e74c3c;
    color: #fff;
    cursor: not-allowed;
    z-index: 101;
}

#no-btn.movable {
    pointer-events: auto;
}

#no-btn:hover {
    /* The actual movement will be handled by JS */
}

.cringe-confetti-out {
    animation: cringeConfettiOut 1.2s forwards;
}
@keyframes cringeConfettiOut {
    0% { opacity: 1; filter: none; transform: scale(1) rotate(0deg); }
    20% { opacity: 1; filter: hue-rotate(60deg) brightness(1.2); transform: scale(1.2) rotate(-10deg); }
    40% { opacity: 0.8; filter: hue-rotate(120deg) brightness(1.4); transform: scale(0.8) rotate(20deg); }
    60% { opacity: 0.6; filter: hue-rotate(180deg) brightness(1.6); transform: scale(1.3) rotate(-30deg); }
    80% { opacity: 0.4; filter: hue-rotate(240deg) brightness(1.8); transform: scale(0.7) rotate(40deg); }
    100% { opacity: 0; filter: hue-rotate(360deg) brightness(2); transform: scale(2) rotate(720deg); }
}

.final-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    animation: appear 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    text-align: center;
    font-size: 2.5rem;
    color: #e74c3c;
    margin-top: 60px;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 24px rgba(231,76,60,0.15), 0 2px 0 #fff;
}

/* Confetti Bomb */
.confetti-piece {
    position: fixed;
    width: 10px;
    height: 10px;
    top: -20px;
    pointer-events: none;
    animation: fall 3s linear forwards;
    z-index: 9999;
}

@keyframes fall {
    0% {
        transform: translateY(-20vh) rotate(0deg);
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(120vh) rotate(720deg);
        opacity: 0;
    }
}

.final-details {
    margin-top: 40px;
    font-size: 1.5rem;
    color: #2d3a6e;
    animation: appear 2s ease-in-out;
}

.final-details h2 {
    margin: 10px 0;
    font-weight: normal;
}

.final-details p {
    margin-top: 30px;
    font-size: 1.8rem;
    color: #e74c3c;
    font-weight: bold;
}
