body{
  margin: 0;
  padding: 0;
  font-family: Inter_24pt-Black;
}

@font-face {
  font-family: Inter_24pt-Black;
  src: url(../font/Inter_24pt-Black.ttf);
}

@font-face {
  font-family: DS-Digital;
  src: url(../font/DS-DIGIB.TTF);
}

.gradient-bg{
  width: 100%;
  height: 100%;
  background-image: url('../images/gradient-bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
}

.gradient-bg img{
  object-fit: contain;
  height: 95vh;
}

.row{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sol-alt-logo{
  width: 175px;
  object-fit: contain;
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
}

.geri-sayim-text{
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

h1{
  margin: 0;
  font-size: 50px;
}

.soru-box{
  width: 70%;
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.soru-text{
  color: #fff; 
  text-align: center; 
  font-size: 80px;
  margin-top: 30px;
}

.cevap-box{
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cevap{
  margin-top: 15px;
  width: 48%;
  height: 15vh;
  background-image: url('../images/cevap-bg.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.dogru{
 background-image: url('../images/dogru-cevap-bg.png'); 

 h1 {
  color: #000099 !important;
 }
}

.geri-sayim-box{
  width: 100vw;
  position: absolute;
  bottom: 0;
  left: 0;
}

.geri-sayim-bar{
  width: 100%;
  height: 50px;
  background-color: #ffff00;
  transition: width 0.5s;
}

.soru-geri-sayim-text{
  align-items: flex-start;
  color: #ffff00; 
  margin-left: 15px;
  font-size: 60px;
}

.kapak-bg{
  width: 100%;
  height: 100%;
  background-image: url('../images/kapak-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.saniye10{
  font-family: DS-Digital !important;
  color: #ffff00;
  font-size: 250px;
  line-height: 150px;
}


.score-card{
  margin-top: 15px;
  width: 100%;
  padding: 8px 15px;
  border-radius: 34px;
  border: 1px solid #ffd400;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  color: #fff;

  /* arka plan degrade */
  background:
    radial-gradient(1200px 200px at 10% 50%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(90deg, #061a78 0%, #0a2ea6 45%, #5f8fe6 100%);

  display: grid;
  grid-template-columns: 1.4fr auto .7fr auto .9fr;
  align-items: center;
  gap: 28px;

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow: hidden;
}

.col{ min-width: 0; }
.col.center{ text-align: left; }
.col.right{ text-align: left; }

.title{
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 22px;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.value{
  margin-top: 12px;
  font-weight: 500;
  font-size: 22px;
  opacity: .95;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.divider{
  width: 2px;
  height: 82px;
  background: rgba(255,255,255,.55);
  border-radius: 2px;
}

/* küçük ekranlarda alt alta */
@media (max-width: 720px){
  .score-card{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .divider{ display: none; }
}

/* RESPONSIVE TASARIM - TÜM EKRANLAR */
/* Tablet ve küçük ekranlar */
@media (max-width: 1366px) {
  .soru-box {
    width: 85%;
  }

  .soru-text {
    font-size: 3.5vw;
  }

  .cevap h1 {
    font-size: 2.5vw !important;
    margin-left: 15px !important;
  }

  .cevap {
    height: 12vh;
  }

  .soru-geri-sayim-text {
    font-size: 4vw;
  }

  .saniye10 {
    font-size: 15vw;
    line-height: 10vw;
  }
}

/* Mobil ve küçük tabletler */
@media (max-width: 768px) {
  .soru-box {
    width: 90%;
    margin-top: 20px;
  }

  .soru-box img {
    height: 20vh !important;
  }

  .soru-text {
    font-size: 4vw;
    margin-top: 15px;
  }

  .cevap-box {
    margin-top: 10px;
  }

  .cevap {
    width: 100%;
    height: 10vh;
    margin-top: 10px;
  }

  .cevap h1 {
    font-size: 3.5vw !important;
    margin-left: 10px !important;
  }

  .soru-geri-sayim-text {
    font-size: 5vw;
    margin-left: 10px;
  }

  .geri-sayim-bar {
    height: 40px;
  }
}

/* Çok küçük mobil cihazlar */
@media (max-width: 480px) {
  .soru-box {
    width: 95%;
    margin-top: 10px;
  }

  .soru-box img {
    height: 20vh !important;
  }

  .soru-text {
    font-size: 7vw;
    margin-top: 10px;
  }

  .cevap {
    /* height: 8vh; */
    margin-top: 8px;
  }

  .cevap h1 {
    font-size: 5vw !important;
    margin-left: 10px !important;
  }

  .soru-geri-sayim-text {
    font-size: 6vw;
    text-align: center;
  }

  .geri-sayim-bar {
    height: 30px;
  }

  .saniye10 {
    font-size: 20vw;
    line-height: 15vw;
  }
}

/* Geniş ekranlar */
@media (min-width: 1920px) {
  .soru-text {
    font-size: 70px;
  }

  .cevap h1 {
    font-size: 45px !important;
  }

  .cevap {
    height: 18vh;
  }

  .soru-geri-sayim-text {
    font-size: 70px;
  }
}

/* Ultra geniş ekranlar (4K) */
@media (min-width: 2560px) {
  .soru-text {
    font-size: 90px;
  }

  .cevap h1 {
    font-size: 60px !important;
  }

  .cevap {
    height: 20vh;
  }

  .soru-geri-sayim-text {
    font-size: 90px;
  }

  .geri-sayim-bar {
    height: 60px;
  }
}

.hidden{
  display: none;
}