* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: white;

  background:
    linear-gradient(rgba(5, 10, 18, 0.82), rgba(5, 10, 18, 0.9)),
    url("images/background.jpg");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
}

.game-box {
  width: 100%;
  max-width: 620px;
  background: rgba(18, 32, 50, 0.95);
  padding: 28px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 0 35px rgba(0,0,0,0.6);
  border: 1px solid rgba(200,155,60,0.25);
  position: relative;
}

h1 {
  font-size: 34px;
  margin: 0 0 8px;
}

h1 span {
  color: #c89b3c;
}

.subtitle {
  color: #b8c0cc;
  margin-bottom: 25px;
}

.image-area {
  background: #0b1422;
  border: 1px solid #243447;
  border-radius: 14px;
  padding: 15px;
  margin-bottom: 25px;
}

#championImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  background: #000;
  display: block;
}

.input-title {
  text-align: left;
  color: #c89b3c;
  font-weight: bold;
  margin-bottom: 8px;
}

input {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #35506d;
  background: #0c1523;
  color: white;
  font-size: 16px;
  margin-bottom: 15px;
}

input::placeholder {
  color: #8996a8;
}

.buttons {
  display: flex;         /* Butonları esnek yapıda yan yana getirir */
  justify-content: space-between; /* İki uca yaslar, aradaki boşluğu korur */
  gap: 15px;             /* Butonların arasındaki net boşluk */
  margin-bottom: 18px;
  width: 100%;
}

button {
  border: none;
  background: linear-gradient(135deg, #1d3555, #27476f);
  color: white;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: bold;
  cursor: pointer;
  /* flex: 1; <-- BU SATIRI BURADAN SİLDİK! (Dil butonlarını etkilemesin diye) */
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.buttons button {
  flex: 1; /* Genişleme özelliğini sadece oyun butonlarına verdik */
}

button:first-child {
  background: linear-gradient(180deg, #e5b95a, #b98526);
  color: #111;
}
button:hover {

  transform: translateY(-2px);

  box-shadow:
    0 6px 18px rgba(0,0,0,0.28),
    0 0 16px rgba(61, 125, 255, 0.28);

  background:
    linear-gradient(
      135deg,
      #294b73,
      #35608f
    );
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#attempts {
  font-size: 17px;
}

#hint {
  color: #c89b3c;
  font-weight: bold;
}

#result {
  font-size: 18px;
  font-weight: bold;
}

.history-title {
  text-align: left;
  margin-top: 25px;
  color: #c89b3c;
  font-weight: bold;
  border-top: 1px solid #26384f;
  padding-top: 18px;
}

#guessHistory {
  margin-top: 12px;
}

.guess-item {

  transition:
    transform 0.2s,
    box-shadow 0.2s;

  border:
    1px solid rgba(255,255,255,0.05);
}

.guess-item:hover {

  transform: translateY(-2px);

  box-shadow:
    0 4px 16px rgba(0,0,0,0.24);

  background:
    rgba(255,255,255,0.04);
}

.guess-item {
  background: #102033;
}

.guess-name.name-correct {
  color: #58d68d;
}

.guess-name.name-wrong {
  color: #ff6b6b;
}

#shareButton {
  width: 100%;
  margin-top: 20px;
  background: #244b78;
}

@media (max-width: 600px) {
  h1 {
    font-size: 26px;
  }


  #championImage {
    height: 210px;
  }
}

.image-area {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: #0b1422;
  border: 1px solid #243447;
  border-radius: 14px;
  padding: 0;
  margin-bottom: 25px;
}

.zoom-image {
  transition: transform 0.4s ease;
  transform-origin: center center;
}

.suggestions {
  width: 100%;
  background: #0f1b2e;
  border-radius: 10px;
  margin-top: 6px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #243447;
  display: none;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.suggestion-item:hover {
  background: #1a2c44;
}

.suggestion-item img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.suggestion-item span {
  color: white;
  font-weight: bold;
}
.guess-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.guess-item img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.guess-item div {
  display: flex;
  flex-direction: column;
}

.guess-item small {
  color: #d6d6d6;
  margin-top: 3px;
}

.lane-correct {
  color: #58d68d;
  font-weight: bold;
}

.lane-wrong {
  color: #ff6b6b;
  font-weight: bold;
}

.guess-info {
  width: 100%;
}

.clue-row {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.clue-row span {
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
}

.clue-correct {
  background: #1f7a3f;
  color: white;
}

.clue-wrong {
  background: #7a1f1f;
  color: white;
}

.language-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  position: absolute; /* Butonları logodan bağımsız sağ üst köşeye sabitler */
  top: 20px;
  right: 20px;
  margin-bottom: 0;
  z-index: 10;
}

.lang-btn {
  width: 38px;
  height: 38px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);

  cursor: pointer;
  transition: 0.2s;
}

.lang-btn img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.lang-btn:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,0.12);
}

@media (max-width: 768px) {

  body {
    padding: 20px 12px;
  }

  .game-container {
  width: 100%;
  max-width: 720px;

  background: rgba(10, 18, 30, 0.78);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 0 30px rgba(0,0,0,0.45),
    0 0 80px rgba(17, 38, 68, 0.18);

  border-radius: 24px;

  padding: 28px;

  transition: 0.25s;
}

  h1 {
    font-size: 32px;
  }

  .subtitle {
    font-size: 14px;
  }

  .image-area {
    height: 240px;
  }

  #focusCircle {
    width: 120px;
    height: 120px;
  }

  input {
    font-size: 16px;
    padding: 14px;
  }

  .guess-item {
    align-items: flex-start;
  }

  .guess-item img {
    width: 52px;
    height: 52px;
  }

  .clue-row {
    gap: 6px;
  }

  .clue-row span {
    font-size: 11px;
    padding: 4px 7px;
  }

  .language-box {
    justify-content: center;
  }
}


/* Admin Paneli İnce Ayarları */
#admin-panel-overlay img {
  max-width: none !important; /* Resimlerin genişlik sınırlandırmalarını kaldırır */
  max-height: none !important;
}

#admin-champ-list div:hover {
  background-color: #cca43b !important;
  color: black !important;
}
.logo-title{

    margin:0;

    text-align:center;

    font-family:"Cinzel","Times New Roman",serif;

    font-size:78px;

    font-weight:700;

    letter-spacing:1px;

    line-height:1;

    background:linear-gradient(
        180deg,
        #fff7cf 0%,
        #f6dc8a 18%,
        #d8a947 42%,
        #9f6a22 72%,
        #5d3810 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;

    -webkit-text-stroke:2px #53320d;

    text-shadow:
        0 2px 0 #2b1a06,
        0 4px 0 #2b1a06,
        0 0 8px rgba(255,214,110,.25),
        0 0 18px rgba(255,214,110,.15);

}
.logo-container {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px; /* Altındaki elementleri çok itmesin */
}

.logo-container::after {
  content: "";
  display: block;
  width: 88%;
  margin: 10px auto 0; /* 20px olan üst boşluğu 10px yaptık */
  background: linear-gradient(180deg, #fff8d8 0%, #ffe59d 18%, #e8be63 45%, #ba8333 75%, #6d4518 100%);
  height: 1px;
  opacity: .6;
}
.daily-badge-container {
  text-align: center;
  margin: 15px 0 10px 0; /* Üstten 15px, alttan 10px boşluk */
}

.diamond {
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #aef5ff, #41c8ff, #008ed8);
  border: 2px solid #d7ffff;
  box-shadow: 0 0 6px #5fd8ff, 0 0 14px #00b7ff;

  /* Boşlukları yukarı-aşağı 4px, sağa-sola otomatik yapıyoruz */
  margin: 4px auto; 
}

.logo-title{

animation:logoGlow 3s ease-in-out infinite;

}

@keyframes logoGlow{

0%,100%{

filter:brightness(1);
}
50%{
filter:brightness(1.08);
}
}
.logo-title{
    font-size:58px;
    margin-left:10px;

}
@media (max-width:768px){

.logo-title{

font-size:40px;
letter-spacing:-1px;

text-shadow:
0 1px 0 #fff1b0,
0 2px 0 #c79333,
0 3px 0 #8b5d18,
0 4px 8px rgba(0,0,0,.55),
0 0 12px rgba(255,195,70,.18);

background:linear-gradient(
180deg,
#fff6cb 0%,
#f7d97a 18%,
#e0b756 40%,
#b67d2d 70%,
#6f4515 100%
);

}

}

.logo-title{
    display:flex;
    flex-direction:column;
    align-items:center;
    line-height:.9;
}

.logo-title span{
    display:block;
}

.inline-diamond {
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #aef5ff, #41c8ff, #008ed8);
  border: 1px solid #d7ffff;
  box-shadow: 0 0 4px #5fd8ff;
  margin: 0 8px;
  vertical-align: middle;
}
