:root {
  --radius-xl:20px;
  --radius-md:12px;
  --transition:all .25s ease;
}

/* === GLOBAL === */
body{
  background:
    radial-gradient(circle at top,rgba(0,188,212,.08),transparent 60%),
    radial-gradient(circle at bottom,rgba(0,123,255,.06),transparent 60%),
    var(--bg-dark);
  color:var(--text-light);
  font-family:"Poppins","Segoe UI",sans-serif;
  display:flex;
  flex-direction:column;
  align-items:stretch;     /* ✅ artık ortalamıyor, tam genişlikte */
  min-height:100vh;
}
.page{
  max-width:1200px;
  width:100%;
  margin:0 auto;           /* ✅ ortalanmış ana içerik */
  padding:24px 32px 100px; /* ✅ alt boşluk artırıldı ki footer’a yer kalsın */
  display:flex;
  flex-direction:column;
  gap:32px;
}

/* SEQUENTIAL PAGE FADE */
.fade-step{
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp .55s ease forwards;
}

.fade-step-1{ animation-delay: .05s; }
.fade-step-2{ animation-delay: .18s; }
.fade-step-3{ animation-delay: .31s; }
.fade-step-4{ animation-delay: .44s; }


/* === BACK BUTTON === */
.back-btn{
  align-self:flex-start;
  border:1px solid rgba(255,255,255,.2);
  background:linear-gradient(90deg,rgba(0,188,212,.25),rgba(0,123,255,.15));
  color:var(--text-light);
  border-radius:999px;
  padding:8px 18px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  cursor:pointer;
  transition:var(--transition);
}
.back-btn:hover{
  box-shadow:0 0 14px rgba(0,188,212,.5);
  border-color:var(--primary-color);
  transform:translateY(-1px);
}

/* === TOP SECTION === */
.top-section{
  display:grid;
  grid-template-columns:1.6fr 1.4fr;
  gap:24px;
}
.game-cover{
  position:relative;
  background:linear-gradient(145deg,var(--bg-dark),var(--bg-light));
  border-radius:var(--radius-xl);
  padding:10px;
  border:1px solid rgba(255,255,255,.05);
  box-shadow:0 18px 45px rgba(0,0,0,.55);
}
.game-cover-inner{
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:16px;
}
.game-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}
.game-cover:hover img{
  transform:scale(1.03);
}

/* === GAME HEADER === */
.game-header{
  background:var(--bg-light);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-xl);
  padding:18px 20px;
  box-shadow:0 18px 45px rgba(0,0,0,.55);
  display:flex;
  flex-direction:column;
  gap:14px;
}
.game-title{
  font-size:26px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.05em;
  background:linear-gradient(90deg,var(--primary-color),var(--secondary-color));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.game-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.game-tags span{
  font-size:11px;
  color:var(--text-dark);
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.05);
  padding:3px 10px;
  border-radius:999px;
}

/* === STATS === */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
.stat-item{
  background:rgba(23,26,33,.96);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-md);
  padding:8px 10px;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.stat-label{
  color:var(--text-dark);
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.stat-value{
  display:flex;
  align-items:center;
  gap:6px;
  color:var(--primary-color);
  font-size:13px;
  font-weight:600;
}
.stat-sub{
  font-size:9px;
  color:var(--text-dark);
}

/* === BUTTON === */
.cta-row{margin-top:auto}
.primary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(90deg,var(--primary-color),var(--secondary-color));
  border:none;
  color:#000;
  border-radius:999px;
  padding:10px 32px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 9px 22px rgba(0,0,0,.7);
  transition:var(--transition);
  text-decoration:none;
}
.primary-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(0,0,0,.9);
}

/* === ABOUT + SYSTEM === */
.info-grid{
  display:grid;
  grid-template-columns:1.8fr 1fr;
  gap:20px;
}
.section{
  background:var(--bg-light);
  border-radius:var(--radius-xl);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 30px rgba(0,0,0,.5);
  padding:20px;
}
.section-title{
  color:var(--primary-color);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.16em;
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:8px;
}
.section-title::before{
  content:"";
  width:22px;
  height:1px;
  background:linear-gradient(90deg,var(--primary-color),transparent);
}
.section-body{
  font-size:13px;
  line-height:1.7;
  color:var(--text-dark);
}

/* ✅ SYSTEM REQ TEXT — açıklamayla aynı ton */
.requirements-single p{
  font-size:13px;
  line-height:1.7;
  color:var(--text-dark);
}
.requirements-single p span{
  color:var(--text-light);
}

/* ==== EXPLORE MORE ==== */
.explore-section {
  padding: 20px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.explore-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 0 2px;
}

.explore-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--esport-accent);
  display: flex;
  align-items: center;
  gap: 8px;
}
.explore-title::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--esport-accent), transparent);
}
.explore-sub {font-size:11px;color:var(--text-dark);}

.explore-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 10px 4px 6px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,188,212,.45) rgba(255,255,255,.03);
}
.explore-row::-webkit-scrollbar {height: 6px;}
.explore-row::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(0,188,212,.55), rgba(0,123,255,.55));
  border-radius: 999px;
}
.explore-row::-webkit-scrollbar-track {background: rgba(255,255,255,.02);}

/* === CARD === */
a.game-card {
  flex: 0 0 270px;
  background: linear-gradient(160deg, rgba(40,58,90,.65), rgba(23,26,33,.9));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.6);
  padding: 0 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 34px rgba(0,0,0,.9);
  border-color: rgba(0,188,212,.55);
}

/* === IMAGE === */
.game-card-img {
  width: calc(100% + 20px);
  margin: 0 -10px;
  aspect-ratio: 16/9;
  border-radius: 18px 18px 12px 12px;
  overflow: hidden;
  background: var(--bg-dark);
  position: relative;
}
.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* 🔥 görüntü tam oturuyor */
  object-position: center;
  transform: scale(1.03);    /* kart oranına tam oturması için min zoom */
  transition: transform .45s ease, filter .45s ease;
}
a.game-card:hover .game-card-img img {
  transform: scale(1.08);    /* yumuşak büyütme */
  filter: brightness(1.08) contrast(1.03);
}

.game-card-title {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 6px;
}
.game-card-meta {
  font-size: 10.5px;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  gap: 6px;
  white-space: nowrap;
}

/* === PLACEHOLDER === */
.game-card.skeleton {
  flex: 0 0 270px;
  height: 220px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.3s infinite;
}
@keyframes shimmer {
  0% {background-position: -200% 0;}
  100% {background-position: 200% 0;}
}

/* === FADE-IN === */
.game-card.appear {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp .45s ease forwards;
}
@keyframes fadeInUp {
  to {opacity: 1; transform: translateY(0);}
}


@media(max-width:900px){
  .top-section{grid-template-columns:1fr;}
  .info-grid{grid-template-columns:1fr;}
  .game-card{flex:0 0 55%;}
}
@media(max-width:600px){
  .game-card{flex:0 0 70%;}
}
@media(max-width:768px){
  .page{
    padding:18px 16px 74px;
    gap:24px;
  }
  .game-title{
    font-size:22px;
  }
  .game-header{
    padding:16px;
  }
  .explore-row{
    gap:14px;
  }
  a.game-card{
    flex:0 0 66%;
  }
}
@media(max-width:480px){
  .page{
    padding:14px 10px 58px;
    gap:18px;
  }
  .back-btn{
    padding:7px 14px;
    font-size:11px;
    letter-spacing:.05em;
  }
  .game-title{
    font-size:18px;
    letter-spacing:.03em;
  }
  .stats-grid{
    grid-template-columns:1fr;
  }
  .stat-item{
    padding:8px;
  }
  .explore-header{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }
  a.game-card{
    flex:0 0 84%;
  }
}

/* === IMAGE GALLERY SLIDER === */
.oyun-galerisi, .game-cover-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-dark);
}

.galeri-resmi {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s ease, transform 1.2s ease;
}
.galeri-resmi.active {
  opacity: 1;
  transform: scale(1);
}

/* SLIDER BUTTONS */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0,0,0,0.45);
  color: var(--text-light);
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
  z-index: 10;
}
.gallery-btn:hover {
  background: var(--primary-color);
  color: #000;
  transform: translateY(-50%) scale(1.05); /* ✅ artık yukarı kaymaz */
  box-shadow: 0 0 14px var(--primary-color);
}
.gallery-btn.prev { left: 12px; }
.gallery-btn.next { right: 12px; }

/* DOTS */
.gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.4); /* ✅ kontrast için */
  border-radius: 999px;
  padding: 4px 8px; /* ✅ uzamadan tam çevresine */
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 11;
  backdrop-filter: blur(4px);
}
.gallery-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  transition: all .25s ease;
  cursor: pointer;
}
.gallery-dots button.active {
  background: var(--primary-color);
  transform: scale(1.25);
}
.gallery-dots button:hover {
  background: rgba(255,255,255,.8);
}

.stat-icon{
  width:16px;
  height:16px;
  top: -5px;
  flex:0 0 auto;
  object-fit:contain;
  opacity:.95;
  filter:drop-shadow(0 0 4px rgba(0,0,0,.7));
}

@media(max-width:480px){
  .gallery-btn{
    width:36px;
    height:36px;
    font-size:1.5rem;
  }
  .gallery-btn.prev{ left:8px; }
  .gallery-btn.next{ right:8px; }
}

/* =====================================================
   RU INFO PAGE REDESIGN (SCOPED)
   ===================================================== */
.info-ru-page{
  font-family:"Montserrat","Segoe UI",sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(44,243,200,.1), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(36, 214, 243,.08), transparent 38%),
    linear-gradient(180deg, #05101a, #06121e 45%, #06111c);
}

.info-ru-page .page{
  max-width:1340px;
  padding:24px 18px 110px;
  gap:26px;
}

.info-ru-page .back-btn{
  border:1px solid rgba(114,212,255,.35);
  background:linear-gradient(120deg, rgba(8,34,54,.86), rgba(10,25,40,.74));
  color:#d8f4ff;
  letter-spacing:.12em;
  font-size:12px;
}

.info-ru-page .back-btn:hover{
  border-color:rgba(44,243,200,.74);
  box-shadow:0 0 0 3px rgba(44,243,200,.16), 0 8px 18px rgba(0,0,0,.42);
}

.info-ru-page .top-section{
  grid-template-columns:minmax(0,1.3fr) minmax(0,.95fr);
  gap:18px;
}

.info-ru-page .game-cover{
  border-radius:22px;
  padding:12px;
  border:1px solid rgba(114,212,255,.2);
  background:
    linear-gradient(160deg, rgba(10,31,49,.88), rgba(8,19,32,.94)),
    radial-gradient(circle at 95% 6%, rgba(114,212,255,.12), transparent 42%);
  box-shadow:0 20px 42px rgba(0,0,0,.48);
}

.info-ru-page .game-cover-inner{
  border-radius:16px;
  border:1px solid rgba(114,212,255,.16);
}

.info-ru-page .gallery-btn{
  width:42px;
  height:42px;
  font-size:1.75rem;
  border:1px solid rgba(114,212,255,.3);
  background:rgba(8,22,35,.58);
  color:#dff4ff;
  backdrop-filter:blur(4px);
}

.info-ru-page .gallery-btn:hover{
  border-color:rgba(44,243,200,.85);
  background:rgba(10,33,52,.85);
  color:var(--primary-color);
  box-shadow:0 0 0 2px rgba(44,243,200,.2), 0 10px 18px rgba(0,0,0,.45);
}

.info-ru-page .gallery-dots{
  background:rgba(6,19,31,.56);
  border:1px solid rgba(114,212,255,.18);
  padding:4px 10px;
}

.info-ru-page .gallery-dots button{
  width:9px;
  height:9px;
}

.info-ru-page .game-header{
  border-radius:22px;
  padding:18px 18px 16px;
  border:1px solid rgba(114,212,255,.22);
  background:
    linear-gradient(165deg, rgba(9,29,47,.93), rgba(8,20,34,.95)),
    radial-gradient(circle at 92% 4%, rgba(36, 214, 243,.13), transparent 44%);
  box-shadow:0 20px 42px rgba(0,0,0,.48);
}

.info-ru-page .game-title{
  font-size:clamp(1.9rem,4vw,3rem);
  letter-spacing:.04em;
  line-height:1.06;
}

.info-ru-page .game-tags{
  gap:7px;
}

.info-ru-page .game-tags span{
  font-size:.76rem;
  letter-spacing:.04em;
  color:#c9deef;
  border-color:rgba(114,212,255,.26);
  background:rgba(7,25,39,.72);
  padding:5px 12px;
}

.info-ru-page .stats-grid{
  gap:9px;
}

.info-ru-page .stat-item{
  border-radius:14px;
  border:1px solid rgba(114,212,255,.22);
  background:
    linear-gradient(168deg, rgba(12,31,49,.86), rgba(8,21,35,.9)),
    radial-gradient(circle at 100% 0%, rgba(114,212,255,.1), transparent 40%);
  padding:10px 12px;
}

.info-ru-page .stat-label{
  font-size:.72rem;
  letter-spacing:.12em;
  color:#9bb6c9;
}

.info-ru-page .stat-value{
  color:#4df4ce;
  font-size:1.9rem;
  font-weight:700;
  line-height:1.1;
}

.info-ru-page .stat-sub{
  font-size:.74rem;
  color:#90a9bf;
}

.info-ru-page .stat-icon{
  width:18px;
  height:18px;
  top:auto;
}

.info-ru-page .primary-btn{
  padding:11px 30px;
  min-width:240px;
  font-size:.8rem;
  letter-spacing:.12em;
  border:1px solid rgba(255,255,255,.32);
}

.info-ru-page .info-grid{
  grid-template-columns:minmax(0,1.55fr) minmax(0,.85fr);
  gap:18px;
}

.info-ru-page .section{
  border-radius:22px;
  border:1px solid rgba(114,212,255,.2);
  background:
    linear-gradient(170deg, rgba(9,28,45,.9), rgba(8,19,32,.95)),
    radial-gradient(circle at 96% 10%, rgba(114,212,255,.12), transparent 38%);
  padding:20px 20px 18px;
}

.info-ru-page .section-title{
  color:#66f5d1;
  font-size:.95rem;
  letter-spacing:.16em;
  margin-bottom:10px;
}

.info-ru-page .section-title::before{
  width:24px;
  background:linear-gradient(90deg, #66f5d1, transparent);
}

.info-ru-page .section-body,
.info-ru-page .requirements-single p{
  font-size:1rem;
  color:#a8c0d5;
  line-height:1.72;
}

.info-ru-page .requirements-single p span{
  color:#e8f6ff;
}

.info-ru-page .explore-section{
  border-radius:22px;
  border:1px solid rgba(114,212,255,.18);
  background:linear-gradient(170deg, rgba(8,24,40,.82), rgba(7,17,29,.88));
  box-shadow:0 16px 28px rgba(0,0,0,.36);
  padding:18px 16px 14px;
}

.info-ru-page .explore-header{
  padding:0 4px;
}

.info-ru-page .explore-title{
  font-size:.92rem;
  color:#66f5d1;
}

.info-ru-page .explore-sub{
  color:#9cb6cb;
}

.info-ru-page .explore-row{
  gap:16px;
  padding:8px 2px 4px;
}

.info-ru-page a.game-card{
  flex:0 0 290px;
  border-radius:16px;
  border:1px solid rgba(114,212,255,.2);
  background:
    linear-gradient(160deg, rgba(9,29,47,.88), rgba(8,19,32,.94)),
    radial-gradient(circle at 88% 8%, rgba(114,212,255,.1), transparent 36%);
  box-shadow:0 14px 24px rgba(0,0,0,.42);
}

.info-ru-page a.game-card:hover{
  border-color:rgba(114,212,255,.58);
  box-shadow:0 18px 30px rgba(0,0,0,.5);
  transform:translateY(-4px);
}

.info-ru-page .game-card-img{
  border-radius:16px 16px 10px 10px;
}

.info-ru-page .game-card-title{
  font-size:.8rem;
}

.info-ru-page .game-card-meta{
  font-size:.72rem;
}

@media (max-width:980px){
  .info-ru-page .top-section{
    grid-template-columns:1fr;
  }

  .info-ru-page .info-grid{
    grid-template-columns:1fr;
  }

  .info-ru-page .primary-btn{
    min-width:220px;
  }
}

@media (max-width:768px){
  .info-ru-page .page{
    padding:16px 12px 84px;
    gap:18px;
  }

  .info-ru-page .game-cover,
  .info-ru-page .game-header,
  .info-ru-page .section,
  .info-ru-page .explore-section{
    border-radius:16px;
  }

  .info-ru-page .game-title{
    font-size:1.7rem;
  }

  .info-ru-page .stat-value{
    font-size:1.5rem;
  }

  .info-ru-page .section-body,
  .info-ru-page .requirements-single p{
    font-size:.94rem;
  }
}

@media (max-width:520px){
  .info-ru-page .stats-grid{
    grid-template-columns:1fr;
  }

  .info-ru-page .primary-btn{
    width:100%;
    min-width:0;
  }

  .info-ru-page a.game-card{
    flex:0 0 82%;
  }
}
