/* ============================================================
   PINCO — "index1"
   Pinco ürün ekranına yakın: koyu zemin, sol ikon menüsü,
   üst bar (kırmızı REGISTRATION), yan yana SPORT/CASINO
   bonus bannerları, altın parıltılar.
   Tüm sınıf adları özel: rt- öneki.
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --rt-bg:      #0e0e12;
  --rt-bg-2:    #08080b;
  --rt-surface: #161620;
  --rt-surface-2:#1e1e2b;
  --rt-red:     #ec1c24;
  --rt-red-dk:  #c00d14;
  --rt-gold:    #f6a821;
  --rt-gold-2:  #ffcf4d;
  --rt-ink:     #f4f5fb;
  --rt-mute:    #9a9ab0;
  --rt-line:    rgba(255,255,255,0.08);
  --rt-topH:    64px;
}

body {
  font-family: 'Rubik', Arial, sans-serif;
  background: var(--rt-bg);
  color: var(--rt-ink);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Montserrat', 'Rubik', sans-serif; }
a { text-decoration: none; color: inherit; }

/* ---- Top bar ---- */
.rt-top {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--rt-topH);
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 22px;
  background: var(--rt-bg-2);
  border-bottom: 1px solid var(--rt-line);
}
.rt-top__logo img { height: 38px; width: auto; display: block; }

.rt-top__nav { display: flex; gap: 22px; }
.rt-top__nav a {
  font-size: 0.98rem;
  color: var(--rt-mute);
  font-weight: 500;
  transition: color .15s ease;
}
.rt-top__nav a:hover { color: var(--rt-ink); }

.rt-top__msg {
  margin-left: auto;
  color: var(--rt-mute);
  font-size: 0.95rem;
}

.rt-top__auth { display: flex; gap: 10px; }
.rt-btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 11px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.rt-btn--reg {
  color: #fff;
  background: var(--rt-red);
  box-shadow: 0 6px 16px rgba(236,28,36,0.4);
}
.rt-btn--reg:hover { background: var(--rt-red-dk); transform: translateY(-1px); }
.rt-btn--login {
  color: var(--rt-ink);
  border-color: rgba(255,255,255,0.35);
}
.rt-btn--login:hover { border-color: #fff; }

/* ---- Layout: sidebar + main ---- */
.rt-layout {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.rt-side {
  position: sticky;
  top: var(--rt-topH);
  flex-shrink: 0;
  width: 232px;
  height: calc(100vh - var(--rt-topH));
  overflow-y: auto;
  padding: 14px 10px;
  background: var(--rt-bg-2);
  border-right: 1px solid var(--rt-line);
}
.rt-side__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--rt-mute);
  font-size: 1.02rem;
  font-weight: 500;
  transition: background .15s ease, color .15s ease;
}
.rt-side__item:hover { background: var(--rt-surface); color: var(--rt-ink); }
.rt-side__item.is-active { color: var(--rt-ink); }
.rt-side__item.is-active .rt-side__ico { filter: none; }
.rt-side__ico { font-size: 1.25rem; width: 24px; text-align: center; }

/* ---- Main column ---- */
.rt-main {
  position: relative;
  flex: 1;
  min-width: 0;
  padding: 26px 32px 0;
}

/* gold sparks */
.rt-spark {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rt-gold-2), rgba(246,168,33,0));
  box-shadow: 0 0 10px 2px rgba(246,168,33,0.6);
  opacity: .7;
  pointer-events: none;
}
.rt-spark.s1 { top: 380px; left: 12%; }
.rt-spark.s2 { top: 440px; left: 40%; width: 4px; height: 4px; }
.rt-spark.s3 { top: 410px; left: 66%; }
.rt-spark.s4 { top: 470px; left: 82%; width: 5px; height: 5px; }
.rt-spark.s5 { top: 350px; left: 54%; width: 4px; height: 4px; }

/* ---- Bonus banners ---- */
.rt-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.rt-banner {
  position: relative;
  border-radius: 18px;
  padding: 38px 34px;
  min-height: 260px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.rt-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 16px, transparent 16px 34px);
  opacity: .5;
}
.rt-banner--sport {
  background: radial-gradient(120% 120% at 0% 50%, #ff7a18 0%, #e21e1e 55%, #8c0d0d 100%);
}
.rt-banner--casino {
  background: radial-gradient(120% 120% at 100% 50%, #ffd45a 0%, #d98f1c 55%, #7a4a08 100%);
}
.rt-banner__body { position: relative; z-index: 1; max-width: 60%; }
.rt-banner__kind {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.rt-banner__sub {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.rt-banner__pct {
  font-size: 2.4rem;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  line-height: 1.1;
}
.rt-banner__big {
  font-size: 2.8rem;
  font-weight: 800;
  font-style: italic;
  color: var(--rt-gold-2);
  line-height: 1.05;
  margin-bottom: 22px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.rt-banner--casino .rt-banner__big { color: #fff; }
.rt-banner__cta {
  display: inline-block;
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #fff;
  background: var(--rt-red);
  padding: 14px 34px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: transform .15s ease, background .15s ease;
}
.rt-banner__cta:hover { background: var(--rt-red-dk); transform: translateY(-2px); }

/* ---- Section heading ---- */
.rt-sec {
  text-align: center;
  margin: 54px 0 30px;
}
.rt-sec__title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.rt-sec__sub { color: var(--rt-mute); font-size: 1.1rem; }

/* ---- Updated stamp ---- */
.rt-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rt-surface);
  border: 1px solid var(--rt-line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 1rem;
  margin-bottom: 22px;
}
.rt-stamp time { color: var(--rt-gold-2); font-weight: 600; }

/* ---- Article ---- */
.rt-doc { position: relative; z-index: 1; max-width: 880px; }
.rt-shot {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 16px;
  margin: 0 auto 32px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.rt-doc h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 34px 0 14px;
  color: #fff;
}
.rt-doc h2::before {
  content: "";
  display: inline-block;
  width: 8px; height: 22px;
  background: var(--rt-red);
  border-radius: 3px;
  margin-right: 12px;
  vertical-align: -3px;
}
.rt-doc h3 { font-size: 1.55rem; font-weight: 600; color: var(--rt-gold-2); margin: 26px 0 12px; }
.rt-doc p { font-size: 1.2rem; color: #d3d7ea; margin-bottom: 18px; }

/* gizli (orijinal içerik saklanır, SEO için DOM'da kalır) */
.rt-hidden { display: none !important; }

/* ---- Bonus CTA block ---- */
.rt-cta {
  position: relative; z-index: 1;
  margin: 8px 0 44px;
  padding: 44px 36px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid var(--rt-line);
  background:
    radial-gradient(130% 150% at 0% 0%, rgba(246,168,33,0.22), transparent 60%),
    radial-gradient(130% 150% at 100% 100%, rgba(236,28,36,0.18), transparent 60%),
    linear-gradient(160deg, var(--rt-surface-2), var(--rt-surface));
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.rt-cta__title { font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 14px; }
.rt-cta__title span { color: var(--rt-gold-2); }
.rt-cta__text { font-size: 1.28rem; color: #e2e5f2; max-width: 780px; margin: 0 auto 28px; }
.rt-cta__btn {
  display: inline-block;
  font-weight: 700; font-size: 1.18rem; text-transform: uppercase; letter-spacing: 0.4px;
  color: #fff; background: var(--rt-red);
  padding: 16px 46px; border-radius: 10px;
  box-shadow: 0 8px 22px rgba(236,28,36,0.45);
  transition: transform .15s ease, background .15s ease;
}
.rt-cta__btn:hover { background: var(--rt-red-dk); transform: translateY(-2px); }
.rt-cta__hint { margin-top: 16px; font-size: 1rem; color: var(--rt-mute); }

/* ---- Deposit table ---- */
.rt-table-wrap { position: relative; z-index: 1; overflow-x: auto; margin-bottom: 46px; }
.rt-table {
  width: 100%; min-width: 640px;
  border-collapse: collapse;
  background: var(--rt-surface);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.rt-table thead th {
  background: var(--rt-surface-2);
  color: #fff; text-align: left; font-weight: 700;
  font-size: 1.02rem; padding: 15px 18px;
  border-bottom: 2px solid var(--rt-red);
}
.rt-table td { padding: 14px 18px; border-top: 1px solid var(--rt-line); color: #d3d7ea; font-size: 1.1rem; }
.rt-table tbody tr:hover td { background: rgba(255,255,255,0.04); }
.rt-table__method { display: inline-flex; align-items: center; gap: 11px; font-weight: 600; color: #fff; }
.rt-table__method img {
  height: 26px; width: 40px; object-fit: contain;
  background: #fff; border-radius: 6px; padding: 3px 5px;
}
.rt-table .rt-table__free { color: var(--rt-gold-2); font-weight: 600; }

/* ---- Footer ---- */
.rt-foot {
  background: var(--rt-bg-2);
  border-top: 3px solid var(--rt-red);
  padding: 36px 0 28px;
  margin-top: 56px;
}
.rt-foot__in { max-width: 1100px; margin: 0 auto; padding: 0 22px; }
.rt-badges {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 16px; margin-bottom: 22px;
}
.rt-badges img {
  width: 60px; height: 60px; padding: 11px;
  object-fit: contain;
  background: #fff; border-radius: 12px;
}
.rt-pay {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 24px;
}
.rt-pay__cell {
  background: #fff; border-radius: 10px;
  padding: 10px 16px; display: flex; align-items: center; justify-content: center;
  height: 52px; min-width: 72px;
}
.rt-pay__cell img { height: 30px; width: auto; max-width: 64px; object-fit: contain; display: block; }
.rt-pay__cell--coin img { width: 30px; height: 30px; }
.rt-foot__copy { text-align: center; color: var(--rt-mute); font-size: 0.98rem; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  /* sidebar -> yatay kaydırmalı şerit */
  .rt-layout { display: block; }
  .rt-side {
    position: sticky; top: var(--rt-topH); z-index: 40;
    width: 100%; height: auto;
    display: flex; flex-direction: row; flex-wrap: nowrap;
    gap: 8px; padding: 10px 14px;
    overflow-x: auto; overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border-right: none; border-bottom: 1px solid var(--rt-line);
  }
  .rt-side__item {
    flex: 0 0 auto;
    padding: 8px 14px; border-radius: 999px;
    border: 1px solid var(--rt-line); background: var(--rt-surface);
    font-size: 0.95rem; white-space: nowrap;
  }
  .rt-side__item.is-active { background: var(--rt-surface-2); color: #fff; }
  .rt-main { padding: 22px 18px 0; }
  .rt-table-wrap { max-width: 100%; }
}

@media (max-width: 860px) {
  .rt-top { gap: 12px; padding: 0 16px; }
  .rt-top__nav, .rt-top__msg { display: none; }
  .rt-top__auth { margin-left: auto; }
  .rt-btn { padding: 9px 16px; font-size: 0.85rem; }

  .rt-banners { grid-template-columns: 1fr; }
  .rt-banner { min-height: auto; padding: 30px 26px; }
  .rt-banner__body { max-width: 100%; }

  .rt-cta { padding: 34px 22px; }
  .rt-cta__title { font-size: 2rem; }
  .rt-cta__text { font-size: 1.12rem; }
}

@media (max-width: 560px) {
  .rt-main { padding: 18px 14px 0; }

  .rt-banner__kind { font-size: 2rem; }
  .rt-banner__sub { font-size: 1.2rem; }
  .rt-banner__pct { font-size: 1.7rem; }
  .rt-banner__big { font-size: 2.1rem; }

  .rt-sec { margin: 38px 0 22px; }
  .rt-sec__title { font-size: 1.7rem; letter-spacing: 1px; }
  .rt-sec__sub { font-size: 1rem; }

  .rt-cta__title { font-size: 1.7rem; }
  .rt-cta__text { font-size: 1.06rem; }
  .rt-cta__btn { width: 100%; padding: 14px 24px; font-size: 1.05rem; }

  .rt-table th, .rt-table td { padding: 11px 12px; font-size: 0.98rem; }
  .rt-table__method img { height: 22px; width: 34px; }

  .rt-badges img { width: 52px; height: 52px; }
  .rt-pay { gap: 10px; }
  .rt-pay__cell { height: 46px; min-width: 58px; padding: 8px 12px; }
  .rt-pay__cell img { height: 24px; }
  .rt-pay__cell--coin img { width: 24px; height: 24px; }
  .rt-foot__copy { font-size: 0.92rem; }

  .rt-doc h2 { font-size: 1.55rem; }
  .rt-doc p { font-size: 1.08rem; }
}

@media (max-width: 380px) {
  .rt-top__logo img { height: 28px; }
  .rt-btn { padding: 8px 11px; font-size: 0.78rem; letter-spacing: 0; }
}
