@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --primary: #2d1b69;
  --secondary: #d4af37;
  --dark: #0f0a1e;
  --light: #f5f0ff;
  --accent: #7b5ea7;
  --text: #e8e0f0;
  --card-bg: rgba(45, 27, 105, 0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--secondary);
}

a { color: var(--secondary); text-decoration: none; transition: color 0.3s; }
a:hover { color: #f0d060; }

/* Header */
.site-header {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--secondary);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--secondary);
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  transition: 0.3s;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--primary) 0%, var(--dark) 60%, #1a0d3d 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5%, 3%); }
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  position: relative;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  position: relative;
}

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), #f0d060);
  color: var(--dark);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  color: var(--dark);
}

/* Sections */
.section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}

/* Notice Cards */
.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.notice-card {
  background: var(--card-bg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s;
}

.notice-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
}

.notice-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.notice-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

/* Game Embed */
.game-wrapper {
  background: var(--card-bg);
  border: 2px solid var(--secondary);
  border-radius: 20px;
  overflow: hidden;
  margin: 2rem auto;
  max-width: 960px;
}

.game-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

/* Info Blocks */
.info-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 2rem 0;
}

.info-block {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(123, 94, 167, 0.3);
}

.info-block h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* Stats */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--secondary);
  font-weight: 900;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.3rem;
}

/* Page Content */
.page-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.page-content h1 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.page-content h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
}

.page-content p,
.page-content li {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.page-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, var(--dark), var(--primary));
  padding: 3rem 2rem;
  border-top: 2px solid var(--secondary);
  text-align: center;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--text);
  font-size: 0.9rem;
}

.responsible-gambling {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.responsible-gambling p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 0.8rem;
}

.responsible-gambling a {
  margin: 0 0.8rem;
  font-size: 0.85rem;
}

/* Age Gate */
.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 10, 30, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate-box {
  background: linear-gradient(160deg, var(--primary), var(--dark));
  border: 2px solid var(--secondary);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  max-width: 460px;
  width: 90%;
}

.age-gate-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.age-gate-box p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.age-gate-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-gate-btns button {
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--secondary);
  transition: all 0.3s;
}

.btn-yes {
  background: var(--secondary);
  color: var(--dark);
}

.btn-yes:hover {
  background: #f0d060;
}

.btn-no {
  background: transparent;
  color: var(--secondary);
}

.btn-no:hover {
  background: rgba(212, 175, 55, 0.1);
}

.age-blocked {
  display: none;
  text-align: center;
  padding: 2rem;
}

.age-blocked h3 {
  color: #ff6b6b;
  font-size: 1.5rem;
}

/* Mobile */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--primary);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 2px solid var(--secondary);
  }

  .nav-links.open { display: flex; }

  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }

  .notice-grid { grid-template-columns: 1fr; }
  .info-columns { grid-template-columns: 1fr; }

  .stats-bar {
    flex-direction: column;
    gap: 1.5rem;
  }

  .game-wrapper iframe { height: 400px; }

  .page-content h1 { font-size: 1.8rem; }
  .footer-links { flex-direction: column; align-items: center; gap: 0.8rem; }
}
