* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: #ffb6c1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.intro {
    text-align: center;
    animation: fadeIn 0.6s ease-out;
    max-width: 600px;
}

.intro-image {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.3);
    border: 3px solid white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro p {
    font-size: clamp(20px, 4vw, 50px);
    color: #4a4a4a;
    margin-bottom: 50px;
    line-height: 1.7;
    font-weight: 400;
}

.intro button {
    padding: 16px 45px;
    font-size: clamp(16px, 3vw, 28px);
    background: white;
    color: #ff69b4;
    border: 2px solid #ff69b4;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.intro button:hover {
    background: #ff69b4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
}

.intro button:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

#intro2, #intro3, #intro4, #intro5 {
    display: none;
}

.container {
    text-align: center;
    display: none;
    animation: fadeIn 0.6s ease-out;
    max-width: 700px;
}

.main-image {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.3);
    border: 3px solid white;
}

h1 {
    font-size: clamp(24px, 5vw, 60px);
    color: #4a4a4a;
    margin-bottom: 60px;
    font-weight: 400;
    line-height: 1.4;
}

.buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

button {
    padding: 18px 60px;
    font-size: clamp(18px, 3.5vw, 32px);
    border: 2px solid #ff69b4;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#yes-btn {
    background: #ff69b4;
    color: white;
}

#yes-btn:hover {
    background: #ff1493;
    border-color: #ff1493;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

#yes-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.2);
}

#no-btn {
    background: white;
    color: #ff69b4;
}

#no-btn:hover {
    background: #fff0f5;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
}

#no-btn:active {
    transform: translateY(0);
}

#sure-yes-btn {
    background: white;
    color: #ff69b4;
    transition: all 0.3s ease;
}

#sure-yes-btn:hover {
    background: #fff0f5;
    transform: translateY(-2px);
}

#sure-no-btn {
    background: #ff69b4;
    color: white;
    transition: all 0.3s ease;
}

#sure-no-btn:hover {
    background: #ff1493;
    border-color: #ff1493;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

#sure-no-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.2);
}

.response {
    display: none;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
    max-width: 600px;
}

.response h2 {
    font-size: clamp(32px, 6vw, 70px);
    color: #ff1493;
    margin-bottom: 25px;
    animation: bounce 0.6s ease-in-out;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.response p {
    font-size: clamp(18px, 3.5vw, 36px);
    color: #4a4a4a;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
}
