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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
  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: 0.5em;
}

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

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

h3 {
  font-size: 1.75rem;
  margin-top: 1.25em;
  margin-bottom: 0.6em;
}

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

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

h6 {
  font-size: 1rem;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ab8e2c;
}

p {
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.7;
}

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

a:hover {
  color: #16213e;
  text-decoration: underline;
}

/* HEADER & NAVIGATION */

.header {
  background-color: #1a1a2e;
  padding: 1.5rem 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: #ab8e2c;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 1.5rem;
  color: #ab8e2c;
}

.logo-tagline {
  font-size: 0.65rem;
  color: #ab8e2c;
  opacity: 0.85;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

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

.nav a {
  color: #f8f9fa;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ab8e2c;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* HERO SECTION */

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(171, 142, 44, 0.1) 0%, rgba(171, 142, 44, 0) 70%);
  pointer-events: none;
}

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

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

.hero h1 {
  color: #f8f9fa;
  margin-bottom: 1rem;
  font-size: 2.75rem;
}

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

.hero-cta {
  display: inline-block;
  margin-top: 0.5rem;
}

/* SECTION STYLES */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ab8e2c, transparent);
  margin-bottom: 3rem;
}

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

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ab8e2c, #16213e);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-top: 0.5rem;
}

/* CARD STYLES */

.card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #ab8e2c;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-header {
  padding: 2rem 1.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.card-title {
  font-size: 1.35rem;
  color: #1a1a2e;
  margin: 0;
}

.card-content {
  padding: 0 1.5rem 1.5rem;
  flex-grow: 1;
}

.card-content p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #555;
}

.card-footer {
  padding: 1.5rem;
  border-top: 1px solid #f0f0f0;
}

.card-link {
  color: #ab8e2c;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 0.75rem;
}

/* GRID LAYOUTS */

.grid {
  display: grid;
  gap: 2rem;
  margin: 0 0 2rem 0;
}

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

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

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

/* BUTTON STYLES */

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

.btn-primary {
  background-color: #ab8e2c;
  color: white;
}

.btn-primary:hover {
  background-color: #8a6f22;
  box-shadow: 0 4px 12px rgba(171, 142, 44, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #16213e;
  color: #f8f9fa;
}

.btn-secondary:hover {
  background-color: #1a1a2e;
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid #ab8e2c;
  color: #ab8e2c;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #ab8e2c;
  color: white;
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

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

/* BLOG & ARTICLE
