/* === VipLuck Landing Page === */

:root {
  --bg: #f5efe4;
  --bg-soft: #ebe3d4;
  --bg-dark: #1f2540;
  --bg-darker: #161b30;
  --ink: #1f2540;
  --ink-soft: #4a5070;
  --ink-mute: #6b7090;
  --gold: #c9a961;
  --gold-soft: #e0c896;
  --blue: #4a5a8c;
  --blue-deep: #2e3a5e;
  --line: rgba(31, 37, 64, 0.12);
  --card-bg: #ffffff;
  --card-shadow: 0 4px 24px rgba(31, 37, 64, 0.08);
  --card-shadow-hover: 0 8px 32px rgba(31, 37, 64, 0.15);
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Typography === */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.eyebrow {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.gold { color: var(--gold); font-style: italic; }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-intro {
  max-width: 780px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 48px;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(74, 90, 140, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74, 90, 140, 0.45);
}

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

.btn-ghost:hover {
  background: rgba(31, 37, 64, 0.05);
  border-color: var(--ink-mute);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* === Navigation === */
.nav {
  position: sticky;
  top: 0;
  background: rgba(245, 239, 228, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark {
  font-size: 1.4rem;
  color: var(--gold);
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  display: flex;
  gap: 12px;
}

/* === Hero === */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(74, 90, 140, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  z-index: -1;
}

.hero-inner {
  text-align: center;
  max-width: 900px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.hero-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stats strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-top: 4px;
}

/* === Sections === */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-soft);
}

/* === Bonus Cards === */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.bonus-card {
  position: relative;
  background: var(--card-bg);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.bonus-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff 0%, #fdfaf3 100%);
}

.bonus-tag {
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--gold);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bonus-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  margin-bottom: 12px;
}

.bonus-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.bonus-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--blue-deep);
  font-weight: 700;
  margin-bottom: 12px;
}

.bonus-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.card-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: gap 0.2s;
}

.card-link:hover { color: var(--blue-deep); }

/* === Games Grid === */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.game-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  display: block;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.game-img {
  height: 140px;
  width: 100%;
}

.game-card h4 {
  font-size: 1.05rem;
  padding: 16px 16px 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.game-card span {
  display: block;
  padding: 0 16px 16px;
  font-size: 0.8rem;
  color: var(--ink-mute);
}

/* === Features === */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature {
  background: var(--card-bg);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--line);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.feature p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* === Markets Block === */
.markets-block {
  margin-top: 64px;
  padding: 40px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.markets-title {
  font-size: 1.6rem;
  margin-bottom: 24px;
  text-align: center;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.market {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.2s;
}

.market:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.04);
}

.market strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--blue-deep);
  margin-bottom: 4px;
}

.market span {
  font-size: 0.85rem;
  color: var(--ink-mute);
}

/* === CTA Section === */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--bg-darker) 100%);
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.85;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
}

.cta-section .btn-primary:hover {
  background: var(--gold-soft);
  box-shadow: 0 6px 28px rgba(201, 169, 97, 0.55);
}

/* === Footer === */
.footer {
  background: var(--bg-darker);
  color: #b8bcd0;
  padding: 64px 0 24px;
}

.footer .logo { color: #fff; }
.footer .logo-text { color: #fff; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.7;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-cols h5 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-cols a {
  display: block;
  color: #b8bcd0;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-cols a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* === Utilities === */
.center { text-align: center; }

/* === Responsive === */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .nav-cta .btn-ghost { display: none; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
