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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0f0f0f;
  color: #f5f5f5;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: #f5f5f5;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.3;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #e8e8e8;
}

a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #f5f5f5;
}

/* Header & Navigation */
.header {
  background-color: #2d2d2d;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  color: #a8a8a8;
  text-transform: none;
  letter-spacing: 1px;
  font-weight: 400;
  display: none;
}

.nav {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav li {
  position: relative;
}

.nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease, border-color 0.3s ease;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  display: inline-block;
}

.nav a:hover {
  color: #d4af37;
  border-bottom-color: #d4af37;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #f5f5f5;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #5f5f5f 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #f5f5f5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d4af37;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-description {
  font-size: 1.1rem;
  color: #e8e8e8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Main Content */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 2rem;
  border-bottom: 1px solid #5f5f5f;
}

.section:last-of-type {
  border-bottom: none;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #5f5f5f 0%, #d4af37 50%, #5f5f5f 100%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #b8b8b8;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 4px solid #d4af37;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.card:hover {
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.card-header {
  padding: 2rem 2rem 0 2rem;
  display: flex;
  align-items: flex-start;
}

.card-icon-wrapper {
  flex-shrink: 0;
}

.card-title-wrapper {
  flex-grow: 1;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #f5f5f5;
}

.card-content {
  padding: 0 2rem 2rem 2rem;
}

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

.card-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #5f5f5f;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-stat {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: #d4af37;
  font-weight: 700;
}

.card-label {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: #d4af37;
  color: #0f0f0f;
  border-color: #d4af37;
}

.btn-primary:hover {
  background-color: transparent;
  color: #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #d4af37;
  border-color: #d4af37;
}

.btn-secondary:hover {
  background-color: #d4af37;
  color: #0f0f0f;
}

.btn-tertiary {
  background-color: #5f5f5f;
  color: #f5f5f5;
  border-color: #5f5f5f;
}

.btn-tertiary:hover {
  background-color: #d4af37;
  color: #0f0f0f;
  border-color: #d4af37;
}

.btn:disabled {
