:root{
  --card-bg: rgba(18,18,20,.55);
  --card-border: rgba(255,255,255,.10);
  --shadow: 0 25px 60px rgba(0,0,0,.45);
  --glow: 0 0 30px rgba(255,120,0,.20);
  --safe-center: 520px; /* ortadaki karakter alanı */
  --radius: 20px;
}

*{margin:0;padding:0;box-sizing:border-box;font-family:Arial, sans-serif;}

/* ✅ scroll kapat + tam ekran */
html, body{
  height:100%;
  overflow:hidden; /* PC'de aşağı kaydırma yok */
}

body{
  color:#fff;
  background: #0b0b0f url("../img/arkaplan.png") no-repeat center center / cover;
}

/* premium overlay */
body::before{
  content:"";
  position:fixed; inset:0;
  background: radial-gradient(circle at center, rgba(0,0,0,.25), rgba(0,0,0,.70));
  z-index:-1;
}

/* Layout: üst + orta + alt = viewport'a sığ */
.page{
  height:100vh;
  display:flex;
  flex-direction:column;
}

/* ÜST LOGOLAR */
.topbar{
  flex: 0 0 auto;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:34px;
  padding:14px 16px 10px;
}
.topbar img{
  height:58px;
  width:auto;
  object-fit:contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

/* ORTA ALAN */
.stage{
  flex: 1 1 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 0 5vw;
  min-height: 0; /* important for overflow calc */
}

.grid{
  width:100%;
  max-width: 1500px;
  display:grid;
  grid-template-columns: 1fr var(--safe-center) 1fr; /* ortayı boş bırak */
  align-items:center;
  gap: 34px;
  min-height: 0;
}

/* Column stacking for card + stats */
.col{
  display:flex;
  flex-direction:column;
  gap: 14px;
  min-height: 0;
}

/* KART */
.card{
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  text-align:center;
  transition:.25s ease;
  position:relative;
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(circle at top, rgba(255,255,255,.10), rgba(255,255,255,0) 55%);
  pointer-events:none;
  opacity:.85;
}

.card:hover{
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow), var(--glow);
  border-color: rgba(255,140,0,.25);
}

.card .logo{
  height:152px;          /* 2 kat büyüttük */
  width:auto;
  max-width: 100%;       /* taşmasın */
  object-fit:contain;
  margin: 2px 0 12px;
  filter: drop-shadow(0 12px 16px rgba(0,0,0,.35));
}

.card h2{
  font-size: 22px;
  letter-spacing: .8px;
  margin-bottom: 12px;
  opacity:.95;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration:none;
  color:#fff;
  font-weight:700;
  background: linear-gradient(45deg, #ff2a00, #ff8a00);
  box-shadow: 0 14px 30px rgba(255,90,0,.18);
  transition:.2s ease;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255,90,0,.25);
  filter: saturate(1.05);
}

/* ✅ MINI PANELS */
.mini{
  background: rgba(10,10,12,.50);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 14px 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.30);
  backdrop-filter: blur(10px);
}
.mini .title{
  font-weight:800;
  letter-spacing:.5px;
  font-size: 14px;
  opacity:.95;
  margin-bottom: 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-transform: uppercase;
}
.mini .timer{
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 6px;
}
.pill{
  min-width: 92px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 10px 10px;
  text-align:center;
}
.pill .num{
  font-size: 20px;
  font-weight: 900;
  letter-spacing:.5px;
  line-height: 1.1;
}
.pill .lbl{
  font-size: 11px;
  opacity:.85;
  margin-top: 2px;
  letter-spacing:.6px;
}
.status-text{
  text-align:center;
  margin-top: 8px;
  font-size: 12.5px;
  opacity:.9;
}
.status-text b{ color:#ffb86b; }

/* ✅ ÖNEMLİ BİLGİLER */
.notice{
  background: rgba(10,10,12,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 16px 16px;
  box-shadow: 0 22px 55px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  min-height: 0;
  margin-top: 250px; /* senin ayarın */
}
.notice .head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.6px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
}
.notice ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height: 0;
}
.notice li{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.3;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.notice-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:10px;
  padding:8px 12px;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  color:#fff;
  background: linear-gradient(45deg, #ff2a00, #ff8a00);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 26px rgba(255,90,0,.18);
  transition:.2s ease;
  white-space:nowrap;
}
.notice-link:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255,90,0,.25);
}

/* ALT */
.footer{
  flex: 0 0 auto;
  text-align:center;
  padding: 10px 12px 14px;
}
.socials{
  display:flex;
  justify-content:center;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap:wrap;
}
.socials a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color:#fff;
  text-decoration:none;
  font-size:20px;
  transition:.2s ease;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}
.socials a:hover{
  transform: translateY(-2px);
  border-color: rgba(255,140,0,.35);
  color:#ffb86b;
}
.copyright{
  font-size: 12.5px;
  opacity: .85;
  letter-spacing:.3px;
}

/* ✅ Mobil uyum (geliştirildi) */
@media (max-width: 980px){
  html, body{
    height:auto;
    overflow:auto; /* mobilde scroll serbest */
  }

  :root{ --safe-center: 0px; }

  .page{ height:auto; min-height:100vh; }

  .topbar{
    gap:16px;
    padding: 12px 12px 6px;
  }
  .topbar img{ height:44px; }

  .stage{
    padding: 10px 4.5vw 0;
  }

  .grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card{ padding: 18px 16px; }
  .card .logo{ height:56px; }
  .card h2{ font-size: 20px; }

  .mini .title{ font-size: 13px; }
  .pill{ min-width: 78px; padding: 9px 9px; }
  .pill .num{ font-size: 18px; }

  /* Önemli bilgiler mobilde yukarı taşınsın + daha mantıklı */
  .notice{
    margin-top: 0;
    order: 3;
  }

  .footer{ padding: 14px 12px 18px; }
}