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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f7f2;
  color: #2d2d2d;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */

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

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.875rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
}

h5 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

h6 {
  font-size: 1rem;
  margin-bottom: 0.625rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #2d2d2d;
}

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

a:hover {
  color: #1a1a2e;
}

/* Header & Navigation */

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

.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', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #aa8c2c;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.logo-main {
  font-size: 1.75rem;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.625rem;
  font-family: 'Inter', sans-serif;
  color: #aa8c2c;
  letter-spacing: 1px;
  opacity: 0.9;
}

.nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

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

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

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

/* Hero Section */

.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #2d3561 100%);
  color: #f8f7f2;
  padding: 5rem 1.5rem;
  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(170, 140, 44, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  filter: brightness(0) saturate(100%) invert(100%) sepia(28%) saturate(2563%) hue-rotate(6deg);
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: #aa8c2c;
  margin-bottom: 2rem;
  font-weight: 500;
}

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

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Buttons */

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

.btn-primary {
  background-color: #aa8c2c;
  color: #1a1a2e;
  border-color: #aa8c2c;
}

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

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

.btn-secondary:hover {
  background-color: #aa8c2c;
  color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(170, 140, 44, 0.2);
}

.btn-text {
  background: none;
  border: none;
  color: #aa8c2c;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.btn-text:hover {
  color: #1a1a2e;
}

/* Section Divider */

.section-divider {
  height: 3px;
  background: linear-gradient(90deg, #1a1a2e 0%, #aa8c2c 50%, #1a1a2e 100%);
  margin: 3rem 0;
}

/* Main Content */

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section:nth-child(even) {
  background-color: #f8f7f2;
}

.section:nth-child(odd) {
  background-color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

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

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #aa8c2c;
  border-radius: 2px;
}

.section-description {
  text-align: center;
  color: #666;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

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

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(170, 140, 44, 0.15);
}

.card-icon {
  padding: 2rem;
  text-align: center;
  background-color: #f8f7f2;
}

.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  filter: brightness(0) saturate(100%) invert(20%) sepia(68%) saturate(1342%) hue-rotate(5deg);
}

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

.card h3 {
