/* Rulobet Gece Kraliyeti Tema */
:root {
  --bg-main: #0b0d1e;
  --bg-panel: #151a35;
  --bg-panel-2: #1b2245;
  --accent-gold: #f5c84c;
  --accent-red: #ff4057;
  --accent-orange: #ff8a3d;
  --accent-violet: #8b7bff;
  --text-main: #edf1ff;
  --text-muted: #b8bfdc;
  --success: #30d89a;
  --danger: #ff6f7f;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 44px rgba(5, 8, 26, 0.45);
  --shadow-glow: 0 0 0 1px rgba(245, 200, 76, 0.28), 0 0 28px rgba(139, 123, 255, 0.22);
  --cta-gradient: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% -10%, rgba(139, 123, 255, 0.24), transparent 48%),
    radial-gradient(circle at 80% 0%, rgba(245, 200, 76, 0.14), transparent 43%),
    var(--bg-main);
  color: var(--text-main);
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.72;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.15;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.ticker-wrap {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, rgba(255, 64, 87, 0.14), rgba(139, 123, 255, 0.16));
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  gap: 42px;
  padding: 10px 0;
  min-width: 100%;
  animation: tickerMove 34s linear infinite;
  font-family: "Space Grotesk", sans-serif;
  color: #ffe9a7;
  font-size: 0.89rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #ffd976);
  box-shadow: 0 0 10px rgba(245, 200, 76, 0.65);
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(16px);
  background: rgba(10, 13, 34, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-svg {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: var(--shadow-glow);
}

.brand-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #fff8df, var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.96rem;
  color: var(--text-muted);
  padding: 8px 11px;
  border-radius: 999px;
  transition: color 0.24s ease, background 0.24s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  background: rgba(139, 123, 255, 0.18);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:focus-visible {
  outline: 3px solid rgba(245, 200, 76, 0.55);
  outline-offset: 2px;
}

.btn-cta {
  background: var(--cta-gradient);
  color: #fff;
  padding: 12px 22px;
  box-shadow: 0 8px 24px rgba(255, 92, 83, 0.35);
}

.btn-gold {
  background: linear-gradient(135deg, #ffe39b, var(--accent-gold));
  color: #221b03;
  padding: 12px 22px;
  box-shadow: 0 8px 24px rgba(245, 200, 76, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn-pulse {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 130, 90, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(255, 130, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 130, 90, 0); }
}

.burger {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.hero {
  padding: 42px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.card {
  background: linear-gradient(180deg, rgba(21, 26, 53, 0.98), rgba(16, 21, 45, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(139, 123, 255, 0.28), transparent 68%);
  pointer-events: none;
}

.hero-copy {
  padding: 36px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: #ffc95f;
}

.label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px rgba(48, 216, 154, 0.6);
}

h1, h2, h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 1.24;
  margin-top: 0;
}

h1 {
  margin: 16px 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.hero-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badges {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  font-size: 0.86rem;
  color: #dbe1ff;
}

.hero-slider {
  padding: 0;
  min-height: 100%;
}

.slider-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 100%;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.7s ease;
}

.slide {
  min-width: 100%;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(145deg, rgba(23, 30, 66, 0.96), rgba(29, 18, 56, 0.9));
}

.slide h2 {
  font-size: 1.55rem;
  margin-bottom: 0;
}

.slide p {
  margin: 0;
  color: #c3cae5;
}

.slide-tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: #ffd77e;
  text-transform: uppercase;
}

.dots {
  display: flex;
  gap: 8px;
  position: absolute;
  bottom: 18px;
  left: 34px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  border: 0;
  cursor: pointer;
}

.dot.active {
  width: 26px;
  background: linear-gradient(90deg, #ff7d6d, #ffd07d);
}

.breadcrumb {
  margin: 18px 0 4px;
  color: #adb6d9;
  font-size: 0.9rem;
}

.breadcrumb a { color: #d8dffc; }

.section {
  margin: 28px 0;
}

.panel {
  padding: 26px;
}

.address-board .address-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 14px 0 8px;
}

.address-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(48, 216, 154, 0.12);
  border: 1px solid rgba(48, 216, 154, 0.45);
  color: #aff8da;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.address-url {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #fff2c0;
  word-break: break-all;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 9px 14px;
  border-radius: 999px;
}

.copy-feedback {
  min-height: 20px;
  color: #b5ffc7;
  font-size: 0.85rem;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 22px;
}

.toc {
  position: sticky;
  top: 108px;
  background: rgba(9, 12, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 18px;
}

.toc h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.toc ol {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.toc a:hover { color: #fff; }

.article-summary {
  padding: 12px 14px;
  background: rgba(139, 123, 255, 0.12);
  border-left: 4px solid var(--accent-violet);
  border-radius: 10px;
  color: #dfe3ff;
  margin: 10px 0 20px;
}

.long-copy h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 10px;
}

.long-copy h3 {
  margin-top: 22px;
  margin-bottom: 10px;
  color: #ffe5a3;
}

.long-copy p {
  margin: 0 0 16px;
  color: #d7ddf8;
}

.step-list,
.tip-list,
.warning-list,
.plus-minus,
.support-list {
  margin: 0 0 16px;
  padding-left: 20px;
}

.step-list li,
.tip-list li,
.warning-list li,
.plus-minus li,
.support-list li {
  margin-bottom: 10px;
  color: #d8ddf6;
}

.address-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 0.95rem;
}

.address-table th,
.address-table td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px;
  text-align: left;
}

.address-table th {
  background: rgba(245, 200, 76, 0.12);
}

.tag-active,
.tag-passive {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.tag-active {
  background: rgba(48, 216, 154, 0.15);
  color: #9cf6d2;
  border: 1px solid rgba(48, 216, 154, 0.42);
}

.tag-passive {
  background: rgba(255, 111, 127, 0.14);
  color: #ffbec7;
  border: 1px solid rgba(255, 111, 127, 0.42);
}

.event-card {
  margin-top: 12px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto;
  align-items: center;
  background: linear-gradient(135deg, rgba(139, 123, 255, 0.16), rgba(255, 129, 86, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px;
  border-radius: 16px;
}

.countdown {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.count-box {
  min-width: 64px;
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  background: rgba(9, 12, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.count-box strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.24rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 16px;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.review-wrap {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.score-box {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.score-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.score-title strong {
  font-size: 1.6rem;
  color: #ffd98f;
}

.metric {
  margin: 12px 0;
}

.metric-line {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.metric-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffd36d, #ff8f4a);
}

.plus-minus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-left: 0;
  list-style: none;
}

.plus-minus li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
}

.comments-slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-track {
  display: flex;
  transition: transform 0.5s ease;
}

.comment {
  min-width: 100%;
  padding: 18px;
  background: rgba(8, 11, 28, 0.75);
}

.comment strong {
  color: #ffe4a4;
}

.comment p { margin: 8px 0 0; color: #d8def9; }

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 0;
  padding: 14px 16px;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 16px;
}

.faq-item.active .faq-answer {
  max-height: 240px;
  padding: 0 16px 14px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.support-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.support-card h3 { margin-bottom: 8px; }

.cta-band {
  padding: 24px;
  border-radius: 18px;
  margin-top: 22px;
  background: linear-gradient(120deg, rgba(255, 64, 87, 0.22), rgba(255, 138, 61, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.site-footer {
  margin-top: 40px;
  padding: 28px 0 92px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 9, 24, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
}

.footer-grid h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 6px; color: #ced5f4; }

.footer-note {
  margin-top: 18px;
  color: #afbadf;
  font-size: 0.9rem;
}

.mobile-dock {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(6, 8, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .columns,
  .review-wrap,
  .footer-grid { grid-template-columns: 1fr; }

  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .support-grid { grid-template-columns: 1fr 1fr; }

  .toc { position: static; }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto auto 1fr auto;
  }

  .burger { display: inline-flex; align-items: center; justify-content: center; }

  .main-nav {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 82px;
    background: rgba(11, 14, 34, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.24s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .header-cta { display: none; }
  .mobile-dock { display: grid; }

  .badge { font-size: 0.8rem; }

  .support-grid,
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-copy,
  .slide,
  .panel { padding: 20px; }

  h1 { font-size: 1.56rem; }

  .event-card { grid-template-columns: 1fr; }

  .plus-minus { grid-template-columns: 1fr; }

  .ticker-track { font-size: 0.78rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
