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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f7f4;
  color: #2c2c2c;
  line-height: 1.6;
  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: 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: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  line-height: 1.8;
}

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

a:hover {
  color: #8b7020;
}

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

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

.brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 1px;
}

.brand-accent {
  color: #aa8c2c;
}

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

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

.nav a {
  color: #2c2c2c;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.5rem;
}

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

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

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

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

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

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

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

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #aa8c2c;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', Georgia, serif;
}

.hero-description {
  font-size: 1.1875rem;
  color: #e8e7e4;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

.btn-primary {
  background-color: #aa8c2c;
  color: #fff;
}

.btn-primary:hover {
  background-color: #8b7020;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(170, 140, 44, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #aa8c2c;
  border: 2px solid #aa8c2c;
}

.btn-secondary:hover {
  background-color: #aa8c2c;
  color: #fff;
  transform: translateY(-2px);
}

.btn-dark {
  background-color: #1a1a2e;
  color: #f8f7f4;
}

.btn-dark:hover {
  background-color: #16213e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(26, 26, 46, 0.3);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Section Divider */
.divider {
  height: 3px;
  background: linear-gradient(90deg, #1a1a2e, #aa8c2c, #1a1a2e);
  margin: 3rem 0;
  opacity: 0.6;
}

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

.section {
  padding: 5rem 0;
  position: relative;
}

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

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

.section-header p {
  font-size: 1.125rem;
  color: #555;
}

.section-accent {
  color: #aa8c2c;
}

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

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

.card-header {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.02), rgba(170, 140, 44, 0.02));
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 0.5rem;
}

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

.card-body {
  padding: 1.5rem 2rem;
  flex-grow: 1;
}

.card-body p {
  color: #555;
  font-size: 1rem;
}

.card-footer {
  padding: 1.5rem 2rem;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
}

.card-link {
  color: #aa8c2c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  color: #8b7020;
}

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

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Feature List */
.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 1rem 0;
  padding-left: 3rem;
  position: relative;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #aa8c2c;
  font-weight: bold;
  font-size: 1.25rem;
}

/* Blog List */
.blog-list {
  list-style: none;
}

.blog-item {
  padding: 2rem;
  background-color: #fff;
  border-bottom: 1px solid #eee;
