@font-face {
  font-family: 'Playfair Display';
  src: local('Playfair Display'), local('PlayfairDisplay-Regular'),
       url('data:font/woff2;base64,d09GMgABAAAAAwZIAA4AAAAAG7wAAwGRAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhYGVgCDMgqEGIULATYCJAMOCAsABCAFhHAHgSsB0AARAAAAxBA5C8hVy5Uh/3+Zyb7Pr5bZuZMnqTGk1iTExHv/////'+
       'f////+f9/////++/f////v/gf//3+8///////+////fvf/////f////+////f//3//f//v//2//f//8P//v8f/v/f//+/////f//+/3f/+//f////f//+//f////+/v+//3//v/+3v8A') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: local('Inter'), local('Inter-Regular'),
       url('data:font/woff2;base64,d09GMgABAAAAAwTIAA4AAAAAG7wAAwGRAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhYGVgCDMgqEGIULATYCJAMOCAsABCAFhHAHgSsB0AARAAAAxBA5C8hVy5Uh/3+Zyb7Pr5bZuZMnqTGk1iTExHv/'+
       '////f////+f9/////f/////f//3//f//v//2//f//8P//v8f/v/f//+/////f//+/3f/+//f////f//+//f////+/v+//3//v/+3v8A') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: -0.3px;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

a:hover {
  color: #0f3460;
  text-decoration: underline;
}

/* SVG Icons */
.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  fill: currentColor;
}

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.btn-primary {
  background-color: #e94560;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #d63850;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(233, 69, 96, 0.3);
}

.btn-secondary {
  background-color: #0f3460;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #051f3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(15, 52, 96, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: #e94560;
  border: 2px solid #e94560;
}

.btn-outline:hover {
  background-color: #e94560;
  color: #ffffff;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.125rem;
}

/* Header & Navigation */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.05);
}

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

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1a1a2e;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.5px;
}

.brand:hover {
  color: #e94560;
}

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

.nav-link {
  color: #1a1a2e;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #e94560;
}

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

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

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

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  color: #ffffff;
  padding: clamp(4rem, 10vh, 8rem) 1rem;
  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(233, 69, 96, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

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

.hero .btn-primary {
  background-color: #e94560;
}

.hero .btn-primary:hover {
  background-color: #d63850;
}

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

/* Sections */
.section {
  padding: clamp(2rem, 5vh, 4rem) 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vh, 4rem);
}

.section-header h2 {
  margin-bottom: 1rem;
}

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

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr
