/* ======================================================
   BELIEVE IN GOD
   QUIZ.CSS
   PART 2
====================================================== */

/* =========================
   RESET
========================= */

*{

margin:0;

padding:0;

box-sizing:border-box;

}

body{

font-family:Poppins,sans-serif;

background:#121212;

color:#ffffff;

min-height:100vh;

display:flex;

flex-direction:column;

align-items:center;

padding:20px;

}


/* =========================
   HEADER
========================= */

.header{

text-align:center;

margin-bottom:25px;

}

.header h1{

font-size:32px;

font-weight:700;

color:#FFD54F;

margin-bottom:8px;

}

.header p{

font-size:15px;

opacity:.8;

}


/* =========================
   PLAYER CARD
========================= */

.player-card{

width:100%;

max-width:700px;

display:flex;

justify-content:space-between;

gap:15px;

margin-bottom:20px;

}

.xp-box,

.streak-box{

flex:1;

background:#1E1E1E;

border-radius:16px;

padding:18px;

text-align:center;

box-shadow:0 5px 15px rgba(0,0,0,.3);

}

.xp-box span,

.streak-box span{

font-size:13px;

opacity:.7;

}

.xp-box h2,

.streak-box h2{

margin-top:6px;

font-size:24px;

color:#FFD54F;

}


/* =========================
   QUIZ CARD
========================= */

.quiz-container{

width:100%;

max-width:700px;

background:#1E1E1E;

border-radius:18px;

padding:25px;

box-shadow:0 8px 20px rgba(0,0,0,.4);

}


/* =========================
   PROGRESS
========================= */

.progress{

height:10px;

background:#333;

border-radius:20px;

overflow:hidden;

margin-bottom:20px;

}

.progress-bar{

width:0%;

height:100%;

background:#FFD54F;

transition:.4s;

}


/* =========================
   TIMER
========================= */

.timer{

width:70px;

height:70px;

border-radius:50%;

background:#FFD54F;

color:#000;

display:flex;

align-items:center;

justify-content:center;

font-size:26px;

font-weight:bold;

margin:0 auto 25px;

}


/* =========================
   QUESTION
========================= */

.question{

font-size:22px;

font-weight:600;

text-align:center;

line-height:1.6;

margin-bottom:30px;

}


/* =========================
   ANSWERS
========================= */

.answers{

display:flex;

flex-direction:column;

gap:15px;

}

.answers button{

padding:16px;

border:none;

border-radius:14px;

background:#2D2D2D;

color:white;

font-size:16px;

cursor:pointer;

transition:.3s;

}

.answers button:hover{

background:#FFD54F;

color:#000;

transform:translateY(-2px);

}


/* =========================
   NEXT BUTTON
========================= */

#nextButton{

width:100%;

margin-top:25px;

padding:16px;

border:none;

border-radius:14px;

background:#FFD54F;

color:#000;

font-size:17px;

font-weight:bold;

cursor:pointer;

display:none;

}

#nextButton:hover{

opacity:.9;

}


/* =========================
   RESULT
========================= */

.result{

width:100%;

max-width:700px;

margin-top:20px;

background:#1E1E1E;

padding:25px;

border-radius:18px;

text-align:center;

}

.result h2{

margin-bottom:15px;

color:#FFD54F;

}

.result p{

margin-bottom:20px;

line-height:1.6;

}


/* =========================
   FINISH BUTTON
========================= */

#finishButton{

padding:14px 25px;

border:none;

border-radius:12px;

background:#FFD54F;

color:#000;

font-weight:bold;

cursor:pointer;

}


/* =========================
   HIDDEN
========================= */

.hidden{

display:none;

}


/* =========================
   MOBILE
========================= */

@media(max-width:600px){

.header h1{

font-size:26px;

}

.question{

font-size:18px;

}

.timer{

width:60px;

height:60px;

font-size:22px;

}

.player-card{

flex-direction:column;

}

}
