
/* ==============================================================
   ========================= F O N T S ==========================
   ============================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700&display=swap');

@font-face {
    font-family: 'Comfortaa-Regular';
    src: url('/static/fonts/Comfortaa-Regular.ttf') format("truetype");
}

/* ==============================================================
   ========================= P A G E S ==========================
   ============================================================== */

* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg,
        #ff6b6b 0%,
        #ff9f43 18%,
        #ffd32a 34%,
        #0be881 50%,
        #0fbcf9 66%,
        #575fcf 82%,
        #ef5777 100%
    );
    background-size: 300% 300%;
    animation: rainbow-shift 8s ease infinite;
    color: white;
    font-family: 'Nunito', 'Comfortaa-Regular', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

@keyframes rainbow-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hidden {
    display: none;
}

/* ==============================================================
   ========================= T E X T S ==========================
   ============================================================== */

.title {
    font-family: 'Fredoka One', cursive;
    font-size: 52px;
    color: white;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 2px 3px 0px rgba(0,0,0,0.2);
}

.subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    text-shadow: 1px 2px 0px rgba(0,0,0,0.15);
}

.corps {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.6;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
}

/* ==============================================================
   ======================= B U T T O N S ========================
   ============================================================== */

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.button {
    width: 240px;
    padding: 16px 20px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    font-size: 20px;
    font-family: 'Fredoka One', cursive;
    text-align: center;
    letter-spacing: 0.5px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 0px rgba(0,0,0,0.2);
}

.button:hover  { transform: scale(1.06) translateY(-2px); box-shadow: 0 6px 0px rgba(0,0,0,0.2); }
.button:active { transform: scale(0.97) translateY(2px); box-shadow: 0 2px 0px rgba(0,0,0,0.2); }





.btn-1 { background: #ff6b6b; color: white; }
.btn-2 { background: #ff9f43; color: white; }
.btn-3 { background: #ffd32a; color: #333;  }
.btn-4 { background: #0be881; color: white; }
.btn-5 { background: #0fbcf9; color: white; }

.options-box {
    background-color: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 20px;
    border-radius: 20px;
    text-align: left;
    min-width: 200px;
    backdrop-filter: blur(4px);
}