@import url('https://fonts.googleapis.com/css2?family=Gowun+Dodum&display=swap');

body {
    font-family: 'Gowun Dodum', sans-serif;
    background: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden; /* Hide scrollbars */
}

.container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    padding: 40px;
    width: 90%;
    max-width: 550px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

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

.school-name {
    font-size: 18px;
    color: #ff6f61;
    margin-bottom: 10px;
}

.screen h1 {
    font-size: 28px;
    color: #333;
    font-weight: bold;
}

.screen h2 {
    font-size: 22px;
    color: #444;
    margin-bottom: 25px;
}

.screen p {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

button {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 35px;
    font-size: 18px;
    font-family: 'Gowun Dodum', sans-serif;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.choices {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.choice-btn {
    background-color: #fff;
    color: #555;
    border: 2px solid #ddd;
    border-radius: 20px;
    padding: 15px;
    font-size: 16px;
    font-family: 'Gowun Dodum', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, transform 0.2s;
}

.choice-btn:hover {
    background-color: #f5f5f5;
    border-color: #ff7e5f;
    transform: translateX(5px);
}

#result-screen p {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding: 20px;
    background-color: #fff3e0;
    border-radius: 15px;
    border: 2px dashed #ffb74d;
}

.creator-text {
    margin-top: 30px;
    font-size: 14px;
    color: #888;
}
