/* Genel body ayarları */
body {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    line-height: 1.6;
  }

/* Ayar Ekranı */
.settings-screen {
  width: 100%;
  max-width: 800px;
  padding: 10px;
  margin-top: 10px;
  box-sizing: border-box;
}

.settings-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
}

.header-section {
  text-align: center;
  margin-bottom: 20px;
}

.game-title {
  font-size: 2rem;
  font-weight: 700;
  color: #4a90e2;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.game-subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0;
  font-weight: 400;
}

.help-section {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.help-btn, .scores-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.scores-btn {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.help-btn:hover, .scores-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.scores-btn:hover {
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.settings-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 25px;
}

.setting-group {
  margin-bottom: 0;
}

.setting-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-size: 0.9rem;
}

.setting-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 0.9rem;
  background: white;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.setting-group select:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.player-names {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.player-input {
  margin-bottom: 0;
}

.player-input label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  font-size: 0.9rem;
}

.player-input input {
  width: 100%;
  padding: 12px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 0.9rem;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.player-input input:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.start-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
  font-family: 'Poppins', sans-serif;
}

.start-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4);
}

/* Modal Stilleri */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
  padding: 25px 30px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 30px;
}

.modal-body .help-section {
  margin-bottom: 25px;
  text-align: left;
}

.modal-body .help-section:last-child {
  margin-bottom: 0;
}

.modal-body h3 {
  color: #4a90e2;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-body p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.modal-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-body li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.modal-body li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4a90e2;
  font-weight: bold;
}

.modal-body strong {
  color: #333;
  font-weight: 600;
}

.modal-footer {
  padding: 25px 30px;
  background: #f8f9fa;
  border-radius: 0 0 20px 20px;
  text-align: center;
}

.modal-footer .start-btn {
  width: auto;
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* Skor Tablosu Stilleri */
.no-scores {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  padding: 40px 20px;
}

.no-scores p {
  margin: 10px 0;
}

.scores-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.score-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.score-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.score-item.top-three {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border-color: #ffd700;
}

.rank {
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 15px;
  min-width: 40px;
  text-align: center;
}

.player-info {
  flex: 1;
}

.player-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.game-info {
  font-size: 0.9rem;
  color: #666;
}

.score-value {
  font-weight: 700;
  font-size: 1.2rem;
  color: #4a90e2;
  background: white;
  padding: 8px 15px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
}

/* Responsive Modal */
@media(max-width: 768px) {
  .modal-content {
    margin: 10% auto;
    width: 95%;
  }
  
  .modal-header {
    padding: 20px;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .modal-footer {
    padding: 20px;
  }
  
  .score-item {
    padding: 12px;
  }
  
  .rank {
    font-size: 1.3rem;
    margin-right: 12px;
    min-width: 35px;
  }
  
  .player-name {
    font-size: 1rem;
  }
  
  .game-info {
    font-size: 0.8rem;
  }
  
  .score-value {
    font-size: 1rem;
    padding: 6px 12px;
  }
}

/* Oyun Sonu Ekranı */
.game-over-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.game-over-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.game-over-container h2 {
  color: #4a90e2;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

#winnerInfo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #333;
}

#finalScores {
  margin-bottom: 30px;
}

.final-score-item {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  margin: 5px 0;
  background: #f5f5f5;
  border-radius: 8px;
  font-weight: 600;
}

.game-over-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.game-over-buttons button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#playAgainBtn {
  background: #28a745;
  color: white;
}

#saveScoreBtn {
  background: #17a2b8;
  color: white;
}

#viewScoresBtn {
  background: #6f42c1;
  color: white;
}

#backToMenuBtn {
  background: #6c757d;
  color: white;
}

.game-over-buttons button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width: 480px) {
  .settings-screen {
    padding: 5px;
    margin-top: 5px;
  }
  
  .settings-container {
    padding: 20px;
    border-radius: 15px;
  }
  
  .game-title {
    font-size: 1.8rem;
  }
  
  .game-subtitle {
    font-size: 0.9rem;
  }
  
  .help-section {
    flex-direction: column;
    gap: 10px;
  }
  
  .help-btn, .scores-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .settings-grid {
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .setting-group label {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }
  
  .setting-group select {
    padding: 10px;
    font-size: 0.85rem;
  }
  
  .player-names {
    gap: 12px;
    margin-bottom: 15px;
  }
  
  .player-input label {
    font-size: 0.85rem;
    margin-bottom: 5px;
  }
  
  .player-input input {
    padding: 10px;
    font-size: 0.85rem;
  }
  
  .start-btn {
    padding: 12px;
    font-size: 1rem;
  }
  
  .game-over-buttons {
    grid-template-columns: 1fr;
  }
  
  .game-over-container {
    padding: 25px;
  }
  
  .game-over-container h2 {
    font-size: 2rem;
  }
  
  #winnerInfo {
    font-size: 1.3rem;
    padding: 12px;
  }
  
  .score-item {
    padding: 10px;
  }
  
  .rank {
    font-size: 1.2rem;
    margin-right: 10px;
    min-width: 30px;
  }
  
  .player-name {
    font-size: 0.9rem;
  }
  
  .game-info {
    font-size: 0.75rem;
  }
  
  .score-value {
    font-size: 0.9rem;
    padding: 5px 10px;
  }
}

@media(max-width: 360px) {
  .settings-container {
    padding: 15px;
  }
  
  .game-title {
    font-size: 1.6rem;
  }
  
  .game-subtitle {
    font-size: 0.8rem;
  }
  
  .help-btn, .scores-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .setting-group select,
  .player-input input {
    padding: 8px;
    font-size: 0.8rem;
  }
  
  .start-btn {
    padding: 10px;
    font-size: 0.9rem;
  }
  
  .score-item {
    padding: 8px;
  }
  
  .rank {
    font-size: 1.1rem;
    margin-right: 8px;
    min-width: 25px;
  }
  
  .player-name {
    font-size: 0.8rem;
  }
  
  .game-info {
    font-size: 0.7rem;
  }
  
  .score-value {
    font-size: 0.8rem;
    padding: 4px 8px;
  }
}
  
  /* Header kısmı */
  .header {
    width: 100%;
    max-width: 900px;
    padding: 15px;
    background-color: #4a90e2;
    color: white;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  /* Ayarlar bölümü (soru sayısı, zaman, butonlar) */
  .settings {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
  
  .settings label {
    font-weight: 600;
    margin-right: 5px;
  }
  
  .settings select {
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
  }
  
  .settings button {
    cursor: pointer;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    color: white;
  }
  
  #restartBtn {
    background-color: #28a745;
  }
  
  #restartBtn:hover {
    background-color: #218838;
  }
  
  #pauseBtn {
    background-color: #ffc107;
    color: black;
  }
  
  #pauseBtn:hover {
    background-color: #e0a800;
  }

  #backToSettingsBtn {
    background-color: #6c757d;
  }

  #backToSettingsBtn:hover {
    background-color: #5a6268;
  }
  
  /* Skorlar konteyneri */
  .skorlar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 0.5rem;
    width: 90%;
    max-width: 600px;
  }
  
  /* Oyuncu kartı */
  .oyuncu {
    flex: 1 1 calc(50% - 0.5rem); /* Yan yana 2 kutu */
    box-sizing: border-box;
    background-color: white;
    padding: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
    min-width: 100px;
  }
  
  /* Daha büyük ekranlarda (masaüstü gibi) genişlik esnek olsun */
  @media (min-width: 601px) {
    .skorlar {
      flex-wrap: nowrap;
      justify-content: flex-start;
    }
  
    .oyuncu {
      flex: none;
      width: auto;
      padding: 1rem;
      font-size: 1.2rem;
    }
  }
  
  .oyuncu.hasan {
    background-color: #d0eaff;
    color: #1976d2;
  }
  
  .oyuncu.meryem {
    background-color: #ffd0d0;
    color: #e91e63;
  }
  
  .oyuncu.ali {
    background-color: #d0ffd6;
    color: #4caf50;
  }
  
  .oyuncu.efe {
    background-color: #f7dfff;
    color: #ff5722;
  }
  
  /* Oyun alanı */
  .game-area {
    margin-top: 15px;
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    box-sizing: border-box;
    user-select: none;
  }
    /* Türkçe Fiil yazısı için vurgulu kırmızı stil */
#turkish {
    color: #d32f2f; /* kırmızı ton */
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  /* Türkçe fiil ve zaman */
  .question-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.2rem;
  }
  
  .verb {
    color: #222;
  }
  
  .timer {
    font-weight: 700;
    font-size: 1.2rem;
    color: green;
  }
  
  .timer.red {
    color: red !important;
  }
  
  /* Sıra bilgisi */
  .turn-info {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
  }
  
  /* Cevap butonları */
  .answers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .answer-card {
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid #ddd;
    background-color: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
  }
  
  .answer-card:hover:not(:disabled) {
    background-color: #e0e0e0;
    border-color: #999;
  }
  
  .answer-card:disabled {
    cursor: default;
    opacity: 0.6;
  }
  
  /* Doğru cevap */
  .answer-card.dogru {
    background-color: #28a745 !important;
    color: white;
    border-color: #28a745 !important;
  }
  
  /* Yanlış cevap */
  .answer-card.yanlis {
    background-color: #dc3545 !important;
    color: white;
    border-color: #dc3545 !important;
  }
  
  /* Responsive */
  @media(max-width: 480px) {
    .answers {
      grid-template-columns: 1fr;
    }
    .question-box {
      flex-direction: column;
      gap: 10px;
    }
    
    .game-area {
      margin-top: 10px;
      padding: 15px;
    }
    
    #turkish {
      font-size: 1.5rem;
    }
    
    .question-box {
      font-size: 1rem;
    }
    
    .timer {
      font-size: 1rem;
    }
    
    .turn-info {
      font-size: 1rem;
      margin-bottom: 12px;
    }
    
    .answer-card {
      padding: 12px 0;
      font-size: 1rem;
    }
    
    .header {
      padding: 10px;
      gap: 8px;
    }
    
    .settings button {
      padding: 5px 10px;
      font-size: 0.8rem;
    }
    
    .oyuncu {
      font-size: 0.8rem;
      padding: 0.4rem;
    }
  }

@media(max-width: 360px) {
  .game-area {
    padding: 12px;
    margin-top: 8px;
  }
  
  #turkish {
    font-size: 1.3rem;
  }
  
  .question-box {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .timer {
    font-size: 0.9rem;
  }
  
  .turn-info {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .answer-card {
    padding: 10px 0;
    font-size: 0.9rem;
  }
  
  .answers {
    gap: 12px;
  }
}
/* Skorlar konteyneri */
.skorlar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 1rem;
    width: 90%;
    max-width: 600px;
  }
  
  /* Her bir oyuncu kartı */
  .oyuncu {
    flex: 1 1 40%; /* Daha dar %40 genişlik, yan yana 2 sütun */
    min-width: 120px; /* Minimum genişlik küçültüldü */
    padding: 0.8rem;
    border-radius: 1rem;
    font-weight: bold;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 1.1rem;
    text-align: center;
  }
  
  /* Masaüstünde eski yatay görünüm */
  @media (min-width: 601px) {
    .oyuncu {
      flex: none;
      width: auto;
      min-width: auto;
      font-size: 1.2rem;
      padding: 1rem;
    }
    .skorlar {
      flex-wrap: nowrap;
    }
  }

  #toastMessage {
    pointer-events: none;
    user-select: none;
  }

/* ==================== ANİMASYONLAR ==================== */

/* Buton Tıklama Animasyonu */
button:active, .mode-card:active, .help-btn:active, .scores-btn:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

/* Hover Animasyonları */
.mode-card:hover {
  animation: cardHover 0.3s ease;
}

@keyframes cardHover {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(-3px);
  }
}

/* Fade In Animasyonu */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide In Animasyonu */
@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Pulse Animasyonu */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Günlük görevler ve streak container'larına animasyon */
#dailyQuestsContainer, #streakContainer, #powerupsContainer {
  animation: fadeIn 0.5s ease;
}

/* Görev item'larına animasyon */
#dailyQuestsList > div {
  animation: slideIn 0.5s ease;
}

/* Power-up item'larına animasyon */
#powerupsList > div {
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==================== HAMBURGER MENÜ ==================== */

/* Hamburger Butonu */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.hamburger-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.hamburger-line {
  width: 22px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobil Menü Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobil Menü Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

/* Menü Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.mobile-menu-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.close-menu-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-menu-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Menü İçerik */
.mobile-menu-content {
  padding: 15px;
}

.mobile-menu-section {
  margin-bottom: 10px;
}

.mobile-menu-section h4 {
  margin: 0 0 12px 0;
  padding: 8px 12px;
  font-size: 0.9rem;
  color: #666;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 8px;
  font-weight: 600;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 8px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.mobile-menu-item:hover {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
  border-color: transparent;
  transform: translateX(-5px);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.mobile-menu-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #ddd, transparent);
  margin: 15px 0;
}

/* Desktop only class */
.desktop-only {
  display: flex;
}

/* Mobilde hamburger görünsün, help-section ve authButtons gizlensin */
@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }
  
  .desktop-only {
    display: none !important;
  }
}

/* Büyük ekranlarda hamburger gizlensin */
@media (min-width: 769px) {
  .hamburger-btn {
    display: none;
  }
  
  .mobile-menu,
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* ==================== OYUNLAŞTIRMA STİLLERİ ==================== */

/* Streak Container */
#streakContainer {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  }
  50% { 
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6);
  }
}

/* Günlük Görevler */
#dailyQuestsList .quest-item {
  transition: all 0.3s ease;
}

#dailyQuestsList .quest-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#dailyQuestsList .quest-item.completed {
  background: linear-gradient(135deg, #d4edda, #f0f9f0);
  border-color: #28a745 !important;
}