/* =====================================================
   MAIN LAYOUT — emo13.com birebir kopya
   Tema renkleri themes/*.css dosyasından gelir
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Roboto Condensed', 'Segoe UI', sans-serif;
  background: var(--bg);
  background-size: 100% 100%;
  color: #fff;
  min-height: 100vh;
}

a { text-decoration: none; color: #fff; }
li { list-style: none; }
svg { width: 24px; height: 24px; }

/* ── Container ── */
.container {
  width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

/* ─────────────────────────── HEADER ─────────────────────────── */
header {
  height: 70px;
  background: var(--menu-bg);
  backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  transition: all ease 1s;
  position: sticky;
  top: 0;
  z-index: 200;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

header .logo { width: 160px; }

header .social {
  display: flex;
  align-items: center;
}

.social-button {
  font-family: Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  padding: 10px 15px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-weight: 600;
  text-transform: uppercase;
  transition: opacity 0.15s;
  cursor: pointer;
}
.social-button:hover { opacity: 0.85; }
.social-button svg {
  margin-right: 5px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.social-button.telegram  { background: var(--tg-color);  }
.social-button.instagram { background: var(--ig-color);  }
.social-button.skype     { background: var(--sk-color);  }

/* ─────────────────────────── TICKER STRIP ─────────────────────────── */
.row.strip {
  background: var(--strip-bg);
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
}

.row.strip h1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  background: var(--strip-bg);
  backdrop-filter: blur(10px);
  padding: 0 35px 0 15px;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  gap: 6px;
  clip-path: polygon(0 0, 100% 0, 83% 100%, 0% 100%);
}

.ticker-wrap {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 220px;
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.ticker:hover { animation-play-state: paused; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  padding-right: 40px;
}

.ticker__item .item {
  display: inline-flex;
  align-items: center;
  background: rgba(0,0,0,.16);
  padding: 6px 14px;
  border-radius: 35px;
  margin: 0 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.ticker__item .item::before {
  content: '';
  position: absolute;
  left: 110px; bottom: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--site-color) 100%);
  z-index: -1;
}
.ticker__item .item .button {
  background: var(--site-color);
  border-radius: 30px;
  height: 28px;
  font-size: 11px;
  font-weight: bold;
  padding: 0 12px;
  display: flex;
  align-items: center;
  margin-left: 12px;
  white-space: nowrap;
}

/* ─────────────────────────── MAIN CARDS ─────────────────────────── */
.row.vip {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.row.banner1 .col { width: 100%; }

.vip .item {
  background: var(--card);
  padding: 20px 25px;
  margin: 8px 0;
  border-radius: 30px;
  display: flex;
  overflow: hidden;
  z-index: 1;
  position: relative;
  cursor: pointer;
  align-items: center;
  min-height: 110px;
  transition: filter 0.2s;
}
.vip .item:hover { filter: brightness(1.08); }

/* Sağa doğru site rengi gradyanı */
.vip .item::before {
  content: '';
  position: absolute;
  left: 130px; bottom: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--site-color) 100%);
  z-index: -1;
}

/* King variant: büyük kart */
.vip.king .item {
  min-height: 130px;
}

/* VIP star rozet - sol */
.vip .item .vip.l {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.vip .item .vip.l svg {
  width: 22px;
  height: 22px;
  fill: var(--site-color);
}

/* Left content */
.vip .item .left {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  padding: 0 100px;
  gap: 20px;
}

.vip .item .left img {
  width: 200px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.vip .item .text {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  font-weight: 900;
  flex: 1;
  min-width: 0;
}
.vip .item .text small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 3px;
}

.logo-name {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--site-color, #fff);
  padding: 8px 16px;
  border: 2px solid var(--site-color, rgba(255,255,255,.3));
  border-radius: 8px;
  flex-shrink: 0;
}

/* GİRİŞ YAP button */
.vip .item .button {
  background: var(--site-color);
  text-align: center;
  border-radius: 30px;
  height: 40px;
  font-size: 13px;
  font-weight: 900;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
  transition: filter 0.15s, transform 0.15s;
  letter-spacing: 0.5px;
}
.vip .item .button:hover { filter: brightness(1.2); transform: scale(1.03); }

/* ─────────────────────────── FIX-SIDE PANELS ─────────────────────────── */
.fix-side {
  position: fixed;
  width: 150px;
  background: var(--card);
  height: 80%;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 50px;
  border-radius: 30px;
  display: flex;
  z-index: 999;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: .3s all ease-in-out;
  text-decoration: none;
  color: #fff;
}
.fix-side::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  border-radius: 30px;
  width: 100%; height: 50%;
  background: linear-gradient(180deg, transparent 0%, var(--site-color) 100%);
  z-index: -1;
}
.fix-side.left  { left: 20px; }
.fix-side.right { right: 20px; }

.fix-side .top,
.fix-side .bottom {
  position: absolute;
}
.fix-side .top    { top: 20px; left: 50%; transform: translateX(-50%); }
.fix-side .bottom { bottom: 20px; left: 50%; transform: translateX(-50%); }
.fix-side .top img,
.fix-side .bottom img {
  width: 70px;
  object-fit: contain;
}

.fix-side .center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  text-align: center;
  padding: 100px 10px;
}

.fix-side .center .vip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #fff;
  color: var(--site-color);
  font-weight: 900;
  font-size: 13px;
  border-radius: 10px;
  padding: 4px 10px;
}
.fix-side .center .vip svg { width: 14px; height: 14px; fill: var(--site-color); }

.fix-side .logo-img img {
  width: 120px;
  object-fit: contain;
  max-height: 50px;
}

.fix-side .center .promo {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  width: 85%;
}
.fix-side .center .promo span {
  font-size: 15px;
  color: var(--site-color);
}

.fix-side .button {
  background: var(--site-color);
  border-radius: 30px;
  height: 32px;
  font-size: 12px;
  font-weight: 900;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ─────────────────────────── BOTTOM FIXED ─────────────────────────── */
.bottom-fixed {
  width: 1150px;
  height: 120px;
  z-index: 99;
  background: var(--card);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 40px;
  border: 3px solid;
  border-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  backdrop-filter: blur(10px);
}

.bottom-fixed .button {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.bottom-fixed .logo img {
  max-height: 60px;
  object-fit: contain;
}

.bottom-fixed .center {
  text-align: center;
  flex: 1;
}
.bottom-fixed .center p {
  margin: 4px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}
.bottom-fixed .center .blink {
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.bottom-fixed a {
  padding: 12px 20px;
  color: #fff;
  font-weight: 900;
  border-radius: 30px;
  font-size: 14px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ─────────────────────────── BÖLÜM BAŞLIĞI ─────────────────────────── */
.section-title-row {
  height: 50px;
  margin-top: 14px;
}
.section-title-row h1 {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--color);
}

/* ─────────────────────────── HEADER LOGO IMG ─────────────────────────── */
header .logo img {
  max-height: 44px;
  object-fit: contain;
}

/* ─────────────────────────── RESPONSIVE ─────────────────────────── */
@media (max-width: 1400px) {
  .vip .item .text { font-size: 15px !important; }
  .vip .item .vip.l { transform: scale(0.8) translateY(-60%); }
  .fix-side { display: none; }
}

@media (max-width: 1200px) {
  .container { width: 100%; }
  .bottom-fixed { width: 100%; }
}

@media (max-width: 768px) {
  .container { padding: 10px; }
  .vip .item .left { padding: 0 50px; flex-wrap: wrap; }
  .vip .item .left img { width: 130px; height: 40px; }
  .vip .item .text { font-size: 13px !important; line-height: 18px; }
  .vip .item .button { height: 32px; font-size: 11px; padding: 0 14px; }
  .social-button { font-size: 0; margin-left: 6px; padding: 8px 10px; }
  .social-button svg { margin: 0; }
}

@media (max-width: 480px) {
  .vip .item { padding: 15px 10px; min-height: 90px; }
  .vip .item .left { padding: 0 40px; gap: 10px; }
  .vip .item .left img { width: 100px; height: 35px; }
  .vip .item .text { font-size: 11px !important; }
  .vip .item .button { width: 80px !important; height: 28px; font-size: 10px; padding: 0 8px; }
  header { height: 120px; }
  header .container { flex-direction: column; gap: 8px; }
}
