:root {
  --bg: #090814;
  --bg-soft: #141327;
  --card: rgba(17, 20, 38, 0.78);
  --line: rgba(255, 199, 107, 0.34);
  --line-strong: rgba(255, 214, 140, 0.72);
  --text: #ecf0ff;
  --muted: #d8d1c2;
  --main: #f2b84d;
  --main-strong: #d79a2c;
  --gold: #ffd06f;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  scrollbar-gutter: stable;
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(120deg, rgba(8, 8, 12, 0.72), rgba(16, 12, 8, 0.68)),
    url("https://i.imgur.com/wLVsFWv.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(100% - 34px, 1280px);
  margin: 0 auto;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.08;
  background-image: radial-gradient(#e9c87d 0.45px, transparent 0.45px);
  background-size: 3.5px 3.5px;
}

.glow {
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.45;
  animation: floatGlow 9s ease-in-out infinite;
}

.glow-a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 198, 92, 0.68), rgba(96, 52, 18, 0.2));
  top: -120px;
  right: -90px;
}

.glow-b {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 163, 71, 0.56), rgba(79, 34, 16, 0.18));
  left: -120px;
  bottom: 8%;
  animation-delay: -4s;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 195, 90, 0.32);
  background: linear-gradient(180deg, rgba(10, 10, 16, 0.88), rgba(14, 10, 8, 0.56));
  transform: translateZ(0);
}

.header-inner {
  min-height: 124px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.top-quick-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
}

.top-quick-links a {
  font-size: 17px;
  font-weight: 700;
  color: #f1f4ff;
}

.top-quick-links a:hover {
  color: #ffd27f;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 310px;
  height: 82px;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 0 24px rgba(255, 191, 74, 0.35);
}

.header-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  min-height: 44px;
  border-radius: 10px;
  padding: 10px 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

.btn-primary {
  color: #f2f5ff;
  background: linear-gradient(140deg, #f4bb56, #dd9f36 58%, #b8791f);
  border-color: rgba(255, 218, 145, 0.45);
}

.btn-soft {
  background: linear-gradient(180deg, #3a2e20, #24190f);
  border-color: var(--line);
}

.btn-main {
  color: #2e1b07;
  background: linear-gradient(135deg, #ffd98e 0%, #f3b953 45%, #d98f28 100%);
  border-color: rgba(255, 226, 166, 0.78);
  text-shadow: 0 1px 0 rgba(255,255,255,.28);
  box-shadow: 0 12px 28px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.24);
}

.btn::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -32%;
  width: 26%;
  height: 300%;
  transform: rotate(24deg);
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.45), rgba(255,255,255,0));
  transition: left .55s ease;
}

.btn:hover::after {
  left: 118%;
}

.hero {
  min-height: calc(100vh - 86px);
  padding: 18px 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
}

.hero-card {
  min-height: 640px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(110deg, rgba(8,10,22,.92) 0%, rgba(8,10,22,.6) 50%, rgba(8,10,22,.2) 100%), url("../../../img/content_18772310_fb142a9aacad74ad83a3e5854238d337.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 20%, rgba(255, 193, 82, 0.24), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 54px, 820px);
  margin: 34px 27px;
  display: grid;
  gap: 15px;
}

.hero-badge {
  width: fit-content;
  border-radius: 999px;
  background: linear-gradient(110deg, #ffedc0, #f4c261);
  color: #2f1d05;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
}

.hero-card h1 {
  margin: 0;
  line-height: 1.08;
  font-size: clamp(34px, 5vw, 66px);
  letter-spacing: .2px;
  background: linear-gradient(90deg, #fff6da 0%, #ffd27a 45%, #fff2cf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 34px rgba(0,0,0,.42);
  animation: titleGlow 4.2s ease-in-out infinite;
}

.hero-card p {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.stat {
  min-height: 86px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(16, 12, 8, 0.82);
  padding: 10px;
  display: grid;
  align-content: center;
  gap: 4px;
}

.stat strong {
  font-size: 24px;
  color: var(--gold);
}

.stat span {
  font-size: 13px;
  color: var(--muted);
}

.ticker-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(26, 18, 12, 0.82);
  overflow: hidden;
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  padding: 10px 0;
  color: #dfe6ff;
  font-weight: 700;
  animation: ticker 24s linear infinite;
  text-shadow: 0 0 18px rgba(255,194,97,.34);
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 48px);
  color: var(--text);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.bonus-slider {
  margin-top: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.bonus-track-wrap {
  overflow: hidden;
  border-radius: 16px;
}

.bonus-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.bonus-track::-webkit-scrollbar {
  display: none;
}

.bonus-item {
  flex: 0 0 min(34vw, 360px);
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--card);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  will-change: transform;
}

.bonus-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.38);
  border-color: var(--line-strong);
}

.bonus-item img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  display: block;
  object-fit: cover;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(190, 124, 39, 0.32);
  color: #f4f7ff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,.32);
}

.nav-btn:hover {
  transform: translateY(-2px);
  background: rgba(218, 148, 57, 0.42);
}

.section {
  padding: 34px 0 12px;
}

#bonuslar-kampanyalar,
#hakkinda {
  scroll-margin-top: 140px;
}

.section-title {
  margin: 0 0 12px;
  color: var(--gold);
  line-height: 1.15;
  font-size: clamp(28px, 4vw, 46px);
}

.section-text {
  margin: 0;
  max-width: 950px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.feature-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.feature {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  padding: 14px;
}

.feature h3 {
  margin: 0 0 8px;
  color: #f5c97a;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  padding: 16px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 221, 153, 0.82);
  box-shadow: 0 16px 38px rgba(0,0,0,.34);
}

.info-card h3 {
  margin: 0 0 8px;
  color: #dce4ff;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  margin-top: 30px;
  border-top: 1px solid rgba(240,183,67,.2);
  padding: 34px 0 22px;
  background: linear-gradient(180deg, rgba(8, 10, 20, 0.84), rgba(6, 8, 14, 0.92));
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.mega-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 26px;
  padding-bottom: 20px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h4 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #f3f6ff;
}

.footer-col a {
  color: #c6cde0;
  transition: color .2s ease, transform .2s ease;
  width: fit-content;
}

.footer-col a:hover {
  color: #ffcd72;
  transform: translateX(2px);
}

.footer-brand p {
  margin: 0;
  color: #aab2c8;
  line-height: 1.6;
  max-width: 380px;
}

.footer-logo {
  width: 120px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.social-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.social-row a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 205, 114, 0.35);
  background: rgba(255,255,255,0.04);
  font-size: 12px;
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
  display: grid;
  gap: 8px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #8e98b4;
  font-size: 13px;
}

.copy {
  margin-top: 12px;
  text-align: center;
  color: #bda980;
  font-size: 12px;
}

body.leaving {
  transition: opacity .35s ease;
  opacity: .72;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 185, 78, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(255, 185, 78, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 185, 78, 0); }
}

@keyframes floatGlow {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(12px,-12px) scale(1.06); }
  100% { transform: translate(0,0) scale(1); }
}

@keyframes titleGlow {
  0% { filter: drop-shadow(0 0 0 rgba(255,205,122,0)); }
  50% { filter: drop-shadow(0 0 16px rgba(255,205,122,.35)); }
  100% { filter: drop-shadow(0 0 0 rgba(255,205,122,0)); }
}

.pulse-link {
  animation: pulse 2.6s infinite;
}

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  html, body {
    background-attachment: scroll;
  }

  .site-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    backdrop-filter: none;
  }

  .header-inner {
    min-height: auto;
    padding: 8px 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 8px;
    column-gap: 10px;
  }

  .brand {
    justify-content: flex-start;
    flex: 0 0 auto;
  }

  .header-actions {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .header-actions .btn {
    min-height: 36px;
    min-width: 0;
    padding: 7px 10px;
    font-size: 11px;
    white-space: nowrap;
  }

  .top-quick-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 12px;
    padding-bottom: 0;
  }

  .top-quick-links a {
    font-size: 14px;
  }

  .container {
    width: min(100% - 20px, 1280px);
  }

  .brand-logo {
    width: 132px;
    height: 50px;
  }

  .hero {
    min-height: auto;
    padding-top: 16px;
  }

  .hero-main {
    min-height: 560px;
  }

  .hero-content {
    width: min(100% - 24px, 100%);
    margin: 14px 12px;
    gap: 12px;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
  .bonus-slider {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .nav-btn {
    display: none;
  }
  .bonus-item {
    flex-basis: 84vw;
  }

  .mega-footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-col h4 {
    font-size: 18px;
  }
}

@media (max-width: 460px) {
  .header-actions {
    width: 100%;
    order: 2;
    justify-content: stretch;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .header-actions .btn {
    padding: 7px 4px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
