/* ===========================
   CSS Reset & Base Styles
   =========================== */

* {
  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: #f5f5f5;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #0F3B66;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

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

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

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

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

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

a:hover {
  color: #a98b2c;
}

/* ===========================
   Typography & Utility
   =========================== */

.text-accent {
  color: #a98b2c;
}

.text-primary {
  color: #0F3B66;
}

.text-secondary {
  color: #1a1a1a;
}

.text-light {
  color: #666666;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.font-weight-bold {
  font-weight: 600;
}

.font-weight-light {
  font-weight: 300;
}

/* ===========================
   Layout & Spacing
   =========================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.col {
  flex: 1;
  padding: 15px;
  min-width: 250px;
}

.col-1 { flex: 0 0 8.333%; }
.col-2 { flex: 0 0 16.666%; }
.col-3 { flex: 0 0 25%; }
.col-4 { flex: 0 0 33.333%; }
.col-6 { flex: 0 0 50%; }
.col-12 { flex: 0 0 100%; }

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

.section:not(:last-child)::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(to right, #0F3B66, #a98b2c, transparent);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

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

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #a98b2c;
  margin: 1rem auto 0;
}

/* ===========================
   SVG Icons
   =========================== */

.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  fill: #0F3B66;
  transition: fill 0.3s ease;
}

.casino-icon.accent {
  fill: #a98b2c;
}

.casino-icon.light {
  fill: #ffffff;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-right: 12px;
}

/* ===========================
   Buttons
   =========================== */

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
}

.btn-primary {
  background-color: #0F3B66;
  color: #ffffff;
  border-color: #0F3B66;
}

.btn-primary:hover {
  background-color: #0a2847;
  border-color: #0a2847;
  box-shadow: 0 4px 12px rgba(15, 59, 102, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #a98b2c;
  color: #ffffff;
  border-color: #a98b2c;
}

.btn-secondary:hover {
  background-color: #8f7325;
  border-color: #8f7325;
  box-shadow: 0 4px 12px rgba(169, 139, 44, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #0F3B66;
  border-color: #0F3B66;
}

.btn-outline:hover {
  background-color: #0F3B66;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 59, 102, 0.3);
}

.btn-outline.accent {
  color: #a98b2c;
  border-color: #a98b2c;
}

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

.btn-block {
  display: block;
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ===========================
   Header & Navigation
   =========================== */

.header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F3B66;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand .casino-icon {
  margin-right: 4px;
}

.tagline {
  font-size: 0.75rem;
  color: #a98b2c;
  font-style: italic;
  margin-top: 2px;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  color: #1a1a1a;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

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

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

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

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

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: #0F3B66;
  transition: all 0.3s ease;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
  background: linear-gradient(135deg, #0F3B66 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(169, 139, 44, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

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

.hero p {
  color: #e0e0e0;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.hero-icon {
  flex: 0 0 auto;
}

.hero .casino-icon {
  fill: #a98b2c;
}

/* ===========================
   Cards
   =========================== */

.card {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-top: 4px solid #a98b2c;
  height: 100%;
}

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

.card-header {
  padding: 1.5rem;
  background-color: #f5f5f5;
