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

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

/* ============================================================================
   RESET & BASE STYLES
   ============================================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background-color: #f5f5f5;
  line-height: 1.6;
  font-size: 16px;
}

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

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #404040;
}

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

a:hover {
  color: #1a1a2e;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================================
   UTILITIES
   ============================================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.text-center {
  text-align: center;
}

.text-accent {
  color: #a98b2c;
}

.text-primary {
  color: #1a1a2e;
}

.section-divider {
  height: 4px;
  background: linear-gradient(90deg, #1a1a2e 0%, #a98b2c 50%, #16213e 100%);
  margin: 3rem 0;
  border-radius: 2px;
}

/* ============================================================================
   SVG ICON STYLES
   ============================================================================ */

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

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  color: #f5f5f5;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.brand-icon {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  color: #a98b2c;
}

.tagline {
  color: #a98b2c;
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 0.25rem;
}

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

.nav-link {
  color: #f5f5f5;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #a98b2c;
  border-bottom-color: #a98b2c;
}

.nav-link.active {
  color: #a98b2c;
  border-bottom-color: #a98b2c;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #f5f5f5;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #a98b2c 100%);
  color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(169, 139, 44, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(22, 33, 62, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.hero h1 {
  color: #f5f5f5;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.hero p {
  color: #e0e0e0;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

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

/* ============================================================================
   BUTTONS
   ============================================================================ */

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background-color: #a98b2c;
  color: #f5f5f5;
}

.btn-primary:hover {
  background-color: #8a7024;
  box-shadow: 0 4px 12px rgba(169, 139, 44, 0.3);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: #f5f5f5;
  color: #1a1a2e;
  box-shadow: 0 4px 12px rgba(245, 245, 245, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: #a98b2c;
  border-color: #a98b2c;
}

.btn-outline:hover {
  background-color: #a98b2c;
  color: #f5f5f5;
  box-shadow: 0 4px 12px rgba(169, 139, 44, 0.3);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn:disabled:hover {
  transform: none;
  box-shadow: none;
  background-color: inherit;
}

/* ============================================================================
   SECTIONS
   ============================================================================ */

.section {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

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

.section.dark h2,
.section.dark h3 {
  color: #f5f5f5;
}

.section.dark p {
  color: #e0e0e0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #a98b2c;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 500;
}

/* ============================================================================
   CARDS
   ============================================================================ */

.card {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #a98b2c;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom
