@font-face {
  font-family: 'Playfair Display';
  src: url('data:application/x-font-ttf;base64,AAEAAAALAIAAAwAwRkZUTW5QiT0AAAEsAAAAHEdERUYCUAChAAABCAAAACBHUE9Zy0sGgQAAATgAAAByR0dTU/3+//0AAALwAAAACElOU1AIrgD0AAADAAAAAE9TLzI/JgQXAAABWAAAAGBjbWFw/8L//wAAAhgAAAB8Y3Z0IAsA//8AAALYAAAABGDHBVN/X7z/wAAAA0AAAAA') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('data:application/x-font-ttf;base64,AAEAAAALAIAAAwAwRkZUTVNQGV0AAAEsAAAAHEdERUYBEgAhAAABCAAAACBHUE9Zy0sGgQAAATgAAAByR0dTU/3+//0AAALwAAAACElOU1AIrgD0AAADAAAAAE9TLzI/JgQXAAABWAAAAGBjbWFw/8L//wAAAhgAAAB8Y3Z0IAsA//8AAALYAAAABGDHBVN/X7z/wAAAA0AAAAA') format('truetype');
  font-weight: normal;
  font-style: normal;
}

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

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

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0f3460;
  color: #e8e8e8;
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1em;
  color: #e8e8e8;
}

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

a:hover {
  color: #7c7c87;
}

strong {
  color: #00d4ff;
  font-weight: 600;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #00d4ff;
  color: #0f3460;
  border: 2px solid #00d4ff;
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover {
  background-color: transparent;
  color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: #7c7c87;
  border-color: #7c7c87;
  color: #0f3460;
}

.btn-secondary:hover {
  background-color: transparent;
  color: #7c7c87;
  box-shadow: 0 0 20px rgba(124, 124, 135, 0.3);
}

.btn-ghost {
  background-color: transparent;
  border-color: #00d4ff;
  color: #00d4ff;
}

.btn-ghost:hover {
  background-color: #00d4ff;
  color: #0f3460;
}

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

/* Header */
.header {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #7c7c87;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #7c7c87;
}

.tagline {
  font-size: 0.75rem;
  color: #7c7c87;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* Navigation */
.nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #e8e8e8;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
}

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

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

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(124, 124, 135, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #00d4ff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e8e8e8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: block;
}

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

/* Main Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sections */
.section {
  padding: 4rem 1.5rem;
  position: relative;
}

.section-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
}

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

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

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #00d4ff 50%, transparent 100%);
  margin: 2rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layout */
.grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Card Styles */
.card {
  background: linear-gradient(135deg, #16213e 0%, #1a2a4e 100%);
  border: 1px solid #2a3f5f;
  border-top: 3px solid #00d4ff;
  border-radius: 6px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
}

.card:hover {
