html {
  background: #E5E5E5;
}

body {
    font-family: "Proxima Nova", "proxima-nova", sans-serif;
    text-align: center;
}

.container {
    position: relative;
    top: 30px;
}

.card {
    background: white;
    width: 640px;
    padding: 50px 45px 60px;
    margin: 40px auto;
    box-shadow: 0 0 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.hmm {
    font-size: 72px;
}

.question {
    font-size: 32px;
    margin-top: 5px;
    margin-bottom: -15px;
}

.answer {
    font-size: 80px;
    font-weight: bold;
    margin: 40px 0 0;
    padding-bottom: 10px;
    line-height: 1.1;
}

.timing {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
}

.timing div + div {
    margin-top: 4px;
}

.warning {
    color: red;
    font-weight: bold;
    margin-top: 12px;
    font-size: 16px;
}

.celebration {
    color: #008357;
    font-weight: bold;
    margin-top: 12px;
    font-size: 16px;
}

.footer-note {
    margin-top: 40px;
    font-size: 14px;
    color: #555;
    font-style: italic;
}

/* ====== DREAD MODE ====== */
.dread {
    animation: dreadPulse 3s infinite ease-in-out;
    background: linear-gradient(180deg, #fff 0%, #ffe6e6 100%);
    background-size: 200% 200%;
}

@keyframes dreadPulse {
    0% {
        background-position: 0% 0%;
        box-shadow: 0 0 20px rgba(255,0,0,0.05), 0 0 25px rgba(0,0,0,0.15);
    }
    50% {
        background-position: 100% 100%;
        box-shadow: 0 0 40px rgba(255,0,0,0.25), 0 0 25px rgba(0,0,0,0.15);
    }
    100% {
        background-position: 0% 0%;
        box-shadow: 0 0 20px rgba(255,0,0,0.05), 0 0 25px rgba(0,0,0,0.15);
    }
}

/* ====== JOY MODE ====== */
.joy {
    animation: joyPulse 3s infinite ease-in-out;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #e8fff5 40%, #d7f5ff 100%);
    background-size: 200% 200%;
}

@keyframes joyPulse {
    0% {
        background-position: 0% 0%;
        box-shadow: 0 0 20px rgba(0,180,80,0.08), 0 0 25px rgba(0,0,0,0.15);
    }
    50% {
        background-position: 100% 100%;
        box-shadow: 0 0 40px rgba(0,180,80,0.25), 0 0 25px rgba(0,0,0,0.15);
    }
    100% {
        background-position: 0% 0%;
        box-shadow: 0 0 20px rgba(0,180,80,0.08), 0 0 25px rgba(0,0,0,0.15);
    }
}

/* ====== QUARTER / CYCLE LAYOUT ====== */
.schedule {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
}

.quarter-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.quarter-label {
    font-size: 20px;
    font-weight: 700;
    width: 70px;
    text-align: right;
    margin-right: 8px;
    color: #333;
}

.cycles {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cycle-box {
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: normal;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
    background: #fff;
    width: 140px;
}

.cycle-box.current {
    font-weight: bold;
    box-shadow: 0 0 12px rgba(0,0,0,0.18);
    border: 2px solid #000;
}

.cycle-box .label {
    font-size: 15px;
    font-weight: 600;
}

.cycle-box .dates {
    font-size: 13px;
}
