/* =====================================================
   GLOBAL FONT (ANEK TELUGU – FORCE EVERYWHERE)
===================================================== */

:root{
  --telugu-font: 'Anek Telugu','Noto Sans Telugu','Pothana2000',sans-serif;
}

*{
  box-sizing: border-box;
}

body,
select,
option,
button,
input,
textarea,
div,
span,
p,
h1,h2,h3,h4,h5,
.grid,
.cell,
.question,
.title {
  font-family: var(--telugu-font) !important;
}

/* =====================================================
   PAGE LAYOUT
===================================================== */

body{
  margin: 0;
  background: #f4f6f8;
}

.container{
  max-width: 420px;
  margin: auto;
  padding: 12px;
}

.title{
  text-align: center;
  font-size: 24px;
  margin-bottom: 12px;
}

/* =====================================================
   DROPDOWNS (CRITICAL FIX)
===================================================== */

select{
  width: 100%;
  padding: 12px;
  font-size: 18px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #bbb;
  background-color: #fff;

  /* Android / Chrome fix */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select option{
  font-family: var(--telugu-font) !important;
  font-size: 18px;
}

/* =====================================================
   QUESTION TEXT
===================================================== */

.question{
  text-align: center;
  font-size: 20px;
  margin: 12px 0;
}

/* =====================================================
   ANSWER GRID
===================================================== */

.grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.cell{
  background: #ffffff;
  border: 2px solid #ccc;
  border-radius: 14px;
  text-align: center;
  font-size: 32px;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
}

/* =====================================================
   FEEDBACK COLORS
===================================================== */

.green{
  background: #4CAF50 !important;
  color: #fff !important;
  animation: blink 0.6s infinite;
}

.red{
  background: #F44336 !important;
  color: #fff !important;
  animation: blink 0.6s infinite;
}

@keyframes blink{
  50%{
    opacity: 0.4;
  }
}

/* =====================================================
   MOBILE FRIENDLY TOUCH
===================================================== */

@media (max-width: 480px){
  .cell{
    font-size: 30px;
    padding: 20px 0;
  }

  .question{
    font-size: 19px;
  }

  .title{
    font-size: 22px;
  }
}
