* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #fdeff9, #ecf0ff);
    overflow-x: hidden;
}

.section {
    min-height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.section.active {
    display: flex;
}

.container {
    max-width: 700px;
}

.fade {
    animation: fadeIn 2s forwards;
}

.continue-btn,
.yes-btn,
.think-btn {
    margin-top: 30px;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.yes-btn {
    background: #ff5f9e;
    color: white;
}

.think-btn {
    background: #ddd;
}

.hidden {
    display: none;
}

/* ===== CURSOR EFFECT ===== */
.typing-cursor::after {
    content: '|';
    margin-left: 6px;
    animation: blink 1s steps(1) infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ccc;
}

.signature {
    margin-top: 40px;
    font-style: italic;
}
