/* Custom Tailwind Configuration */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* CSS Variables */
:root {
  --color-gold: #d4af37;
  --color-gold-light: #f4e4b8;
  --color-gold-dark: #b8941f;
  --color-bronze: #cd7f32;
  --color-platinum: #e5e4e2;
  --color-burgundy: #800020;
  --color-emerald: #50c878;
  --color-sapphire: #0f52ba;
  --color-charcoal: #1a1a1a;
  --color-midnight: #0a0e27;
  --color-graphite: #2c2c2c;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.02em;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Navigation */
#navbar {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.logo-spin {
  color: var(--color-gold);
}

.logo-legend {
  color: #ffffff;
}

.nav-link {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transition: width 0.3s ease;
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-link-mobile {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.nav-link-mobile:hover {
  color: var(--color-gold);
  padding-left: 0.5rem;
}

.cta-button {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #000000 0%, var(--color-midnight) 50%, #000000 100%);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(128, 0, 32, 0.1) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/images/hero-pattern.svg") repeat;
  opacity: 0.03;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #cccccc;
  letter-spacing: 0.05em;
  animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #000000;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  display: inline-flex;
  align-items: center;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  transition: all 0.4s ease;
  display: inline-block;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-gold);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Section Styles */
.section-dark {
  background: linear-gradient(180deg, #000000 0%, var(--color-charcoal) 100%);
  position: relative;
}

.section-light {
  background: linear-gradient(180deg, var(--color-charcoal) 0%, #000000 100%);
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #aaaaaa;
  letter-spacing: 0.03em;
}

/* Bonus Cards */
.bonus-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(44, 44, 44, 0.8) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bonus-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.bonus-card:hover::before {
  opacity: 1;
}

.bonus-card-featured {
  border: 2px solid var(--color-gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.bonus-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-gold);
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bonus-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000000;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.bonus-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.bonus-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cccccc;
  font-size: 1rem;
}

.bonus-feature i {
  color: var(--color-gold);
  font-size: 1.2rem;
}

.bonus-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #000000;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.bonus-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.bonus-terms {
  font-size: 0.75rem;
  color: #888888;
  text-align: center;
  line-height: 1.5;
}

/* Game Cards */
.game-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-tab:hover,
.game-tab.active {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #000000;
  border-color: var(--color-gold);
}

.game-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.game-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-play-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border: none;
  border-radius: 50%;
  color: #000000;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.game-play-btn:hover {
  transform: scale(1.1);
}

.game-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.live-badge {
  background: #ff0000;
  color: #ffffff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.jackpot-badge {
  background: var(--color-gold);
  color: #000000;
}

.game-info {
  padding: 1rem;
}

.game-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.game-provider {
  font-size: 0.85rem;
  color: #888888;
}

/* Feature Cards */
.feature-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.feature-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-gold);
  margin: 0 auto 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 0.95rem;
  color: #aaaaaa;
  line-height: 1.6;
}

/* Payment Methods */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.payment-method {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.payment-method:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.payment-method i {
  font-size: 2.5rem;
  color: var(--color-gold);
}

.payment-method span {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
}

/* VIP Section */
.vip-section {
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.1) 0%, rgba(26, 26, 26, 0.8) 100%);
  border: 2px solid var(--color-gold);
  border-radius: 20px;
  padding: 3rem;
}

.vip-badge-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #000000;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

.vip-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: #cccccc;
}

.vip-benefit i {
  color: var(--color-gold);
  font-size: 1.3rem;
}

.vip-image img {
  border: 2px solid var(--color-gold);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

/* Support Cards */
.support-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.support-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.support-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-gold);
  margin: 0 auto 1.5rem;
}

.support-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.support-description {
  font-size: 1rem;
  color: #aaaaaa;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.support-link {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.support-link:hover {
  color: var(--color-gold-light);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-midnight) 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

/* Secondary CTA */
.secondary-cta {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  padding: 0.875rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.secondary-cta:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

/* Social Icons */
.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--color-gold);
  color: #000000;
  transform: translateY(-3px);
}

/* Animations */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.shimmer {
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  background-size: 1000px 100%;
  animation: shimmer 3s infinite;
}

/* Page Content Styles */
.page-content {
  min-height: 100vh;
  background: linear-gradient(180deg, #000000 0%, var(--color-charcoal) 50%, #000000 100%);
  padding-top: 80px;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: #aaaaaa;
  letter-spacing: 0.03em;
}

/* Prose Styles for Content Pages */
.prose {
  color: #cccccc;
}

.prose h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.prose h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: #cccccc;
}

.prose ul,
.prose ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.prose li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  color: #cccccc;
}

.prose strong {
  color: var(--color-gold);
  font-weight: 600;
}

.prose a {
  color: var(--color-gold);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.prose a:hover {
  color: var(--color-gold-light);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.prose th {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  color: var(--color-gold);
  font-weight: 600;
  padding: 1rem;
  text-align: left;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.prose td {
  padding: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  color: #cccccc;
}

.prose tr:last-child td {
  border-bottom: none;
}

.prose tr:hover {
  background: rgba(212, 175, 55, 0.05);
}

.prose blockquote {
  border-left: 4px solid var(--color-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #aaaaaa;
}

.prose hr {
  border: none;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  margin: 3rem 0;
}

.prose code {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-gold-light);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: "Courier New", monospace;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .bonus-card {
    padding: 1.5rem;
  }

  .vip-section {
    padding: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }
}
