@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Manrope:wght@300;400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --bg: #06070b;
  --bg-2: #0b0f1a;
  --bg-3: #101728;
  --panel: rgba(12, 16, 28, 0.78);
  --card: rgba(18, 24, 40, 0.78);
  --border: rgba(255, 255, 255, 0.12);
  --muted: #b6c0d2;
  --text: #f8f5f0;
  --gold: #f6c45f;
  --gold-2: #ffd585;
  --ruby: #ff3b81;
  --violet: #8f6bff;
  --cyan: #22d3ee;
  --emerald: #1dd3a7;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --radius-lg: 24px;
  --radius: 16px;
  --font-head: 'Cinzel', serif;
  --font-body: 'Manrope', sans-serif;
  --font-accent: 'Rajdhani', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(1200px 700px at 5% -10%, rgba(255, 61, 129, 0.18), transparent 55%),
              radial-gradient(900px 600px at 85% 10%, rgba(34, 211, 238, 0.16), transparent 50%),
              radial-gradient(600px 500px at 40% 110%, rgba(143, 107, 255, 0.18), transparent 55%),
              linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 45%, var(--bg-3) 100%);
  min-height: 100vh;
}

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

img { max-width: 100%; display: block; }

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

.page-loader {
  position: fixed;
  inset: 0;
  background: rgba(6, 7, 11, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-core {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--gold);
  box-shadow: 0 0 30px rgba(246, 196, 95, 0.4);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(6, 8, 14, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease;
}

.site-header.is-sticky {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.logo span {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  font-weight: 600;
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.site-nav li { margin: 0; }

.site-nav a {
  color: var(--muted);
  padding: 6px 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.74rem;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--ruby));
  transition: width 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.active,
.site-nav .current-menu-item > a {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.active::after,
.site-nav .current-menu-item > a::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--ruby));
  color: #111;
  box-shadow: 0 18px 40px rgba(246, 196, 95, 0.3);
}

.btn.secondary {
  background: linear-gradient(135deg, rgba(143, 107, 255, 0.9), rgba(34, 211, 238, 0.9));
  color: #0b0e12;
}

.btn.ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 40px rgba(34, 211, 238, 0.25);
}

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

.hero-swiper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  height: clamp(420px, 62vh, 680px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(12, 16, 28, 0.6);
  box-shadow: var(--shadow);
}

.swiper-wrapper {
  position: relative;
  height: 100%;
}

.swiper-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 32px 64px 80px;
  background-size: cover;
  background-position: center;
}

.swiper-slide.is-active {
  opacity: 1;
}

.swiper-overlay {
  background: linear-gradient(120deg, rgba(6, 7, 11, 0.88), rgba(6, 7, 11, 0.5));
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  max-width: 760px;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  min-height: 62%;
  margin: 0 auto;
}

.hero-content .eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-2);
  font-weight: 700;
}

.hero-content h1,
.hero-content h2 {
  font-family: var(--font-head);
  line-height: 1.12;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
}

.hero-content h2 {
  font-size: clamp(1.9rem, 3.1vw, 3.1rem);
}

.hero-content p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 640px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  justify-content: center;
}

.hero-actions.actions-left {
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  width: 100%;
}

.hero-media {
  display: none;
}

.hero-media.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.swiper-controls {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.swiper-button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 12, 20, 0.6);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.swiper-pagination {
  display: none;
}

.swiper-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.swiper-dot.active {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(246, 196, 95, 0.8);
}

.marquee {
  max-width: 1200px;
  width: min(1200px, 92%);
  margin: 18px auto 0;
  background: linear-gradient(90deg, rgba(246, 196, 95, 0.18), rgba(143, 107, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.marquee .container {
  width: 100%;
  margin: 0;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
}

.marquee-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(246, 196, 95, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  color: var(--text);
  font-size: 0.9rem;
}

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

.section {
  padding: 60px 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  margin: 0;
}

.section-title p {
  max-width: 520px;
  color: var(--muted);
  margin: 0;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 196, 95, 0.6);
  box-shadow: 0 22px 60px rgba(246, 196, 95, 0.2);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(246, 196, 95, 0.16);
  color: var(--gold-2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-nav {
  margin-top: 28px;
}

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

.category-tabs a {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--muted);
  transition: all 0.25s ease;
}

.category-tabs a.active,
.category-tabs a:hover {
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--emerald));
  box-shadow: 0 12px 30px rgba(246, 196, 95, 0.35);
}

.game-card {
  padding: 0;
}

.game-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.game-card-body {
  padding: 18px 20px 84px;
  min-height: 200px;
}

.game-card .play-btn {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 16px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.game-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.glow-frame {
  border: 1px solid rgba(246, 196, 95, 0.3);
  box-shadow: inset 0 0 20px rgba(246, 196, 95, 0.15);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.list li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 14px;
  max-width: 560px;
  width: 100%;
  justify-items: center;
}

.stat-card {
  background: rgba(16, 22, 36, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.stat-card span {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--gold-2);
  display: block;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.notice {
  border: 1px dashed rgba(246, 196, 95, 0.4);
  padding: 16px 18px;
  border-radius: 14px;
  color: var(--muted);
  background: rgba(246, 196, 95, 0.08);
}

.payment-grid img {
  height: 54px;
  width: auto;
  margin: 0 auto;
}

.page-hero {
  max-width: 1200px;
  width: 100%;
  margin: 24px auto 0;
  min-height: 240px;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: url("../images/hero-slide-2.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  width: 100%;
  margin: 0;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin-bottom: 10px;
}

.page-hero p { color: var(--muted); }

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.table th, .table td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.table th {
  color: var(--text);
  font-weight: 700;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 0 24px;
  background: rgba(5, 7, 12, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer h4 {
  margin-top: 0;
  font-family: var(--font-head);
}

.footer a { color: var(--muted); }

.footer-bottom {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 10, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 120;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: min(520px, 92%);
  background: rgba(12, 16, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 58px 24px 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  position: relative;
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.modal-tabs {
  display: flex;
  gap: 12px;
  margin-top: 4px;
  padding-right: 64px;
  margin-bottom: 18px;
}

.modal-tabs button {
  flex: 1;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  padding: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.modal-tabs button.active {
  background: linear-gradient(135deg, var(--gold), var(--ruby));
  color: #111;
}

.form {
  display: grid;
  gap: 12px;
}

.form input,
.form select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font-body);
}

.form label {
  font-size: 0.85rem;
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(135deg, var(--gold), var(--ruby));
  color: #111;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 80;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav { display: none; }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 4%;
    background: rgba(10, 13, 18, 0.98);
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .site-nav ul { flex-direction: column; }
  .nav-toggle { display: inline-flex; }
  .nav-actions { display: none; }
  .hero-media { display: none; }
  .swiper-slide { padding: 24px 28px 72px; }
}

@media (max-width: 720px) {
  .hero { padding-top: 24px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; }
  .swiper-controls { left: 50%; transform: translateX(-50%); }
}

.pagination {
  margin-top: 24px;
}

.pagination ul {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

.pagination .current {
  background: linear-gradient(135deg, var(--gold), var(--ruby));
  color: #111;
  border-color: transparent;
}

.stat-card small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.8rem;
}


.nav-wrap {
  flex-wrap: nowrap;
}
@media (max-width: 720px) {
  .hero-swiper,
  .marquee,
  .page-hero {
    width: 100%;
  }
}

\n








