@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: local('Playfair Display'), local('PlayfairDisplay-Regular'),
       url('https://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vgNJGyjOvF5PrH7MiPEO-Ks15aPac-7aarsahk.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: local('Playfair Display Bold'), local('PlayfairDisplay-Bold'),
       url('https://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vgNJGyjOvF5PrH7MiPEO-Ks15aPac-7aarsahk.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: local('Inter'), local('Inter-Regular'),
       url('https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCaTbzJvmlcLZesTz-Z2sSuYVJ5UNsrP.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: local('Inter SemiBold'), local('Inter-SemiBold'),
       url('https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCaTbzJvmqrDxz_Z2sSuYVJ5UNsrP.woff2') format('woff2');
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a2e;
  background-color: #f8f9fa;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a2e;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

h4 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

h5 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: #1a1a2e;
  line-height: 1.8;
}

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

a:hover {
  color: #1a1a2e;
}

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

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

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ab8e2c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
}

.tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #ab8e2c;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: none;
}

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

.nav li {
  position: relative;
}

.nav a {
  color: #f8f9fa;
  font-weight: 500;
  transition: color 0.3s ease;
  padding-bottom: 0.5rem;
  display: block;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ab8e2c;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: #ab8e2c;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #f8f9fa;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  color: #f8f9fa;
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(171, 142, 44, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(171, 142, 44, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

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

.hero h1 {
  color: #f8f9fa;
  margin-bottom: 1rem;
}

.hero p {
  color: #f8f9fa;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-tagline {
  color: #ab8e2c;
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: #ab8e2c;
  color: #1a1a2e;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid #ab8e2c;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: #1a1a2e;
  color: #ab8e2c;
  box-shadow: 0 8px 16px rgba(171, 142, 44, 0.2);
}

.cta-button-secondary {
  background-color: transparent;
  color: #ab8e2c;
  border: 2px solid #ab8e2c;
  margin-left: 1rem;
}

.cta-button-secondary:hover {
  background-color: #ab8e2c;
  color: #1a1a2e;
}

/* Section Divider */
.section-divider {
  height: 3px;
  background: linear-gradient(90deg, #1a1a2e 0%, #ab8e2c 50%, #1a1a2e 100%);
  margin: 3rem 0;
}

/* Main Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-light {
  background-color: #f8f9fa;
}

.section-dark {
  background-color: #1a1a2e;
  color: #f8f9fa;
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: #f8f9fa;
}

.section-dark p {
  color: #f8f9fa;
  opacity: 0.9;
}

.section-dark a {
  color: #ab8e2c;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ab8e2c, transparent);
}

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

.card {
  background-color: #fff;
  border-
