@font-face {
    font-family: "MyDisneyFont";
    src: url("Walter.ttf") format("truetype");
}

/* NAVBAR & CENTERING */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 60px;
    background-color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 100;
    border-bottom: 3px solid #ffd700;
}

.nav-logo {
    font-family: "MyDisneyFont", cursive;
    color: #ffd700;
    font-size: 1.8rem;
}

.nav-links span {
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* BODY */
body {
    background-color: #d22d2d;
    margin: 0;
    padding-top: 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

.card {
    background: #ffffff;
    padding: 2.5rem;
    border: 6px solid #1a1a1a;
    border-radius: 30px;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 420px;
    width: 90%;
    position: relative;
}

h1 {
    font-family: "MyDisneyFont", cursive;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin: 0;
}

.start-subtitle {
    font-family: 'Avenir', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d22d2d;
    font-size: 1rem;
    margin-bottom: 25px;
    display: block;
}

/* MICKEY HEAD SCORE - FIXED VISIBILITY */
.mickey-head {
    position: relative;
    background: #1a1a1a;
    color: white;
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-family: "MyDisneyFont", cursive;
    z-index: 5; /* Brings it to the front */
}

.mickey-head::before, .mickey-head::after {
    content: ""; /* CRITICAL: Without this, ears won't show */
    position: absolute;
    background: #1a1a1a;
    width: 28px; height: 28px;
    border-radius: 50%;
    top: -8px;
}
.mickey-head::before { left: -10px; }
.mickey-head::after { right: -10px; }

/* QUOTES & FEEDBACK */
#quote-text {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: #333;
    line-height: 1.5;
    margin: 20px 0;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.streak-label {
    font-family: "MyDisneyFont", cursive;
    font-size: 1.2rem;
    color: #d22d2d;
    margin-bottom: 15px;
}

.correct { color: #28a745 !important; font-weight: bold !important; }
.wrong { color: #d22d2d !important; font-weight: bold !important; }

/* BUTTONS */
button {
    padding: 14px;
    background: #ffd700;
    color: #1a1a1a;
    border: 3px solid #1a1a1a;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 900;
    width: 100%;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 600px) {
    .navbar { justify-content: center; }
    .nav-links { display: none; }
    .nav-logo { font-size: 1.5rem; text-align: center; width: 100%; }
    .card { width: 85%; padding: 1.5rem; }
    h1 { font-size: 2rem; }
}