:root{
  --bg: #07070a;
  --panel: rgba(10, 10, 14, 0.72);
  --panel2: rgba(18, 10, 10, 0.62);
  --stroke: rgba(255, 208, 120, 0.22);
  --gold: #ffcf6e;
  --gold2: #c28b2c;
  --text: rgba(255, 241, 208, 0.92);
  --muted: rgba(255, 241, 208, 0.68);
  --shadow: 0 18px 44px rgba(0,0,0,.55);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  overflow-x: hidden;
}

.bg{
  position: fixed;
  inset: 0;
  background: #000 url("../img/bg.jpg") center/cover no-repeat;
  filter: saturate(.9) contrast(1.05) brightness(.6);
  transform: scale(1.03);
  z-index: -3;
}
.vignette{
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 207, 110, 0.12), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(255, 207, 110, 0.08), transparent 42%),
    radial-gradient(circle at 50% 70%, rgba(0,0,0,0.0), rgba(0,0,0,0.72) 62%, rgba(0,0,0,0.88));
  z-index: -2;
}
.grain{
  position: fixed;
  inset: -30%;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .22;
  pointer-events: none;
  z-index: -1;
}

.top{
  width: min(1200px, calc(100% - 36px));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.brand__logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: 28px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 207, 110, .10), rgba(0,0,0,.30));
  box-shadow: var(--shadow);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform .12s ease, filter .12s ease, border-color .12s ease;
}
.brand__logo:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
  border-color: rgba(255, 207, 110, 0.55);
}
.brand__logo img{
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,.65));
}

@media (max-width: 520px){
  .brand__logo{ width: 120px; height: 120px; border-radius: 24px; }
}
.brand__mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 207, 110, .14), rgba(0,0,0,.25));
  box-shadow: var(--shadow);
}
.brand__title{
  font-weight: 1000;
  letter-spacing: .16em;
  line-height: 1;
  font-size: 18px;
  color: var(--gold);
  text-shadow: 0 16px 30px rgba(0,0,0,.65);
}
.brand__sub{
  margin-top: 2px;
  font-weight: 850;
  letter-spacing: .22em;
  font-size: 10px;
  opacity: .9;
}

.main{
  width: min(1200px, calc(100% - 36px));
  margin: 18px auto 0;
  /* Paneli sayfanın ortasına daha yakın konumlandır */
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
}

.panel{
  /* Arka plandaki üst panel alanına otursun diye */
  margin: 0 auto;
  max-width: 1120px;
  width: 100%;
  padding: 22px 20px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 207, 110, 0.18);
  background: linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.36));
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}
.panel__title{
  margin: 0;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 1000;
  letter-spacing: .08em;
  color: var(--gold);
  text-shadow: 0 20px 40px rgba(0,0,0,.7);
}
.panel__desc{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 86ch;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 207, 110, .18);
  background: rgba(0,0,0,.22);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  font-weight: 900;
  letter-spacing: .02em;
  transition: transform .12s ease, filter .12s ease, border-color .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
  border-color: rgba(255, 207, 110, .55);
}
.btn--primary{
  color: #1b0f0b;
  background: linear-gradient(180deg, rgba(255, 207, 110, .98), rgba(194, 139, 44, .95));
  border-color: rgba(0,0,0,.22);
}
.btn--disabled{
  opacity: .6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Sunucu "logo" butonları */
.serverEmblems{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 18px;
  align-items: center;
}
@media (max-width: 860px){
  .serverEmblems{ grid-template-columns: 1fr; }
  .main{ min-height: auto; display: block; }
  .serverEmblem{ min-height: 230px; }
}

.serverEmblem{
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 270px;
  border-radius: 22px;
  border: 1px solid rgba(255, 207, 110, 0.18);
  background: rgba(0,0,0,.22);
  box-shadow: 0 18px 44px rgba(0,0,0,.55);
  display: grid;
  place-items: center;
  text-decoration: none;
  overflow: hidden;
  transition: transform .12s ease, filter .12s ease, border-color .12s ease;
}
.serverEmblem::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 207, 110, .08), rgba(0,0,0,.35) 55%, rgba(0,0,0,.48));
  z-index: 2;
  pointer-events: none;
}
.serverEmblem__img{
  position: absolute;
  inset: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  object-fit: contain;
  object-position: center;
  display: block;
  filter: brightness(1.18) contrast(1.14) saturate(1.05);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.serverEmblem:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  border-color: rgba(255, 207, 110, 0.55);
}
.serverEmblem--locked{
  opacity: .78;
  filter: saturate(.85);
  cursor: not-allowed;
}
.serverEmblem--locked:hover{
  transform: none;
  border-color: rgba(255, 207, 110, 0.18);
  filter: saturate(.85);
}

.serverEmblem__ring{
  position: absolute;
  width: 98px;
  height: 98px;
  border-radius: 999px;
  border: 1px solid rgba(255, 207, 110, .32);
  background: radial-gradient(circle at 30% 30%, rgba(255, 207, 110, .20), rgba(0,0,0,.12));
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
}
.serverEmblem__icon{
  position: relative;
  width: 74px;
  height: 74px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.7));
}

.serverEmblem__state{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.35);
  background: rgba(255,255,255,.25);
  box-shadow: 0 10px 22px rgba(0,0,0,.45);
  z-index: 3;
}
.serverEmblem__state--online{
  background: linear-gradient(180deg, #9dff8c, #3fe07b);
}

.serverEmblem__lock{
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  opacity: .9;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,.7));
  z-index: 3;
}

/* "Çok yakında" alanı */
.comingSoon{
  margin-top: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 207, 110, 0.18);
  background: rgba(0,0,0,.28);
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
  overflow: hidden;
}
.comingSoon__inner{
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}
.comingSoon__title{
  font-weight: 1000;
  letter-spacing: .10em;
  color: var(--gold);
  text-shadow: 0 18px 30px rgba(0,0,0,.7);
  text-transform: uppercase;
}

/* Sosyal ikonlar (yazısız) */
.socialIcons{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.socialIcon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 207, 110, 0.18);
  background: rgba(0,0,0,.30);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: transform .12s ease, border-color .12s ease, filter .12s ease;
}
.socialIcon:hover{
  transform: translateY(-1px);
  border-color: rgba(255, 207, 110, 0.55);
  filter: brightness(1.06);
}
.socialIcon span{
  width: 22px;
  height: 22px;
  display: block;
  opacity: .95;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.7));
}

.footer{
  width: min(1200px, calc(100% - 36px));
  margin: 18px auto 22px;
  text-align: center;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 12px;
  color: rgba(255, 241, 208, 0.72);
  text-shadow: 0 10px 24px rgba(0,0,0,.65);
}
