@font-face {
  font-family: 'Playfair Display';
  src: local('Playfair Display'), local('PlayfairDisplay-Regular');
  font-weight: 400;
}

@font-face {
  font-family: 'Lato';
  src: local('Lato'), local('Lato-Regular');
  font-weight: 400;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f5f3f0;
  color: #2c2c2c;
  line-height: 1.6;
  font-size: 16px;
}

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

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

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

h3 {
  font-size: 1.875rem;
  line-height: 1.4;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

a:hover {
  color: #1a1a2e;
  text-decoration: underline;
}

/* SVG Icons */
.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  fill: #a78a2b;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.casino-icon:hover {
  fill: #1a1a2e;
  transform: scale(1.1);
}

/* Header */
.header {
  background-color: #1a1a2e;
  color: #f5f3f0;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.15);
}

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

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

.logo .casino-icon {
  margin-right: 8px;
  margin-left: 0;
}

.tagline {
  font-size: 0.875rem;
  color: #b8b8b8;
  font-style: italic;
  display: none;
}

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

.nav a {
  color: #f5f3f0;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.3s ease;
}

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

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #2c2c4e 100%);
  color: #f5f3f0;
  padding: 6rem 2rem;
  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(167, 138, 43, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167, 138, 43, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.hero h1 {
  color: #f5f3f0;
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  border: 2px solid #a78a2b;
  background-color: #a78a2b;
  color: #f5f3f0;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-decoration: none;
  margin: 0.5rem;
}

.btn:hover {
  background-color: #1a1a2e;
  border-color: #1a1a2e;
  color: #f5f3f0;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(167, 138, 43, 0.2);
}

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

.btn-secondary:hover {
  background-color: #a78a2b;
  color: #f5f3f0;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

.btn-small {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

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

/* Sections */
.section {
  padding: 4rem 2rem;
  border-top: 2px solid rgba(167, 138, 43, 0.2);
}

.section:first-of-type {
  border-top: none;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #a78a2b, transparent);
}

.section-header p {
  font-size: 1.125rem;
  color: #666;
  margin-top: 1.5rem;
}

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

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

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

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-image .casino-icon {
  width: 60px;
  height: 60px;
  fill: #a78a2b;
}

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

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  color: #1a1a2e;
}

.card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card-footer {
  padding-top: 1rem;
  border-top: 1px solid #eee;
