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

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #aa8c2c;
  --background: #f8f7f2;
  --text: #2c2c2c;
  --light-gray: #e8e8e8;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Crimson Text", Georgia, serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

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

h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  opacity: 0.8;
}

/* Header & Navigation */
.header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--background);
  padding: 24px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Crimson Text", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--background);
}

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

.brand-tagline {
  display: none;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--accent);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.nav.active {
  display: flex;
}

.nav a {
  color: var(--background);
  padding: 12px 16px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: calc(100% - 32px);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--background);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.menu-toggle:hover {
  color: var(--accent);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #0f3460 100%);
  color: var(--background);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(170, 140, 44, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 16px;
  color: var(--background);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: rgba(248, 247, 242, 0.9);
}

.hero-tagline {
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent);
  color: var(--primary);
  border: 2px solid var(--accent);
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  letter-spacing: 0.5px;
}

.button:hover {
  background-color: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button.secondary {
  background-color: transparent;
  color: var(--background);
  border-color: var(--background);
}

.button.secondary:hover {
  background-color: var(--background);
  color: var(--primary);
  border-color: var(--background);
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

/* Sections */
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 40px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

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

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.card {
  background-color: #ffffff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  font-size: 2rem;
}

.card-content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.card p {
  color: #555;
  margin-bottom: 16px;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
  font-size: 0.85rem;
  color: #888;
}

.card-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.card-link:hover {
  gap: 10px;
}

/* Blog List */
.blog-list {
  list-style: none;
  margin-top: 32px;
}

.blog-list li {
  padding: 24px;
  border-left: 4px solid var(--accent);
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.blog-list li:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.blog-list h4 {
  margin-bottom: 8px;
  color: var(--primary);
}

.blog-list
