:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #aa8f00;
  --background: #f8f9fa;
  --text: #1a1a2e;
  --light-gray: #e9ecef;
  --border-gray: #dee2e6;
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 26, 46, 0.12);
  --shadow-lg: 0 8px 24px rgba(26, 26, 46, 0.16);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 1.75rem;
  letter-spacing: -0.2px;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.8;
}

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

a:hover {
  color: #8a6f00;
  text-decoration: underline;
}

strong {
  font-weight: 600;
  color: var(--primary);
}

/* Header and Navigation */
.header {
  background-color: var(--primary);
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

.header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-brand h1 {
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
  letter-spacing: 1px;
}

.header-brand span {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  font-weight: 600;
}

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

.nav a {
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  padding-bottom: 0.5rem;
}

.nav a:hover {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 6rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: #8a6f00;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-secondary {
  background-color: var(--primary);
  color: #fff;
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--primary);
  text-decoration: none;
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

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

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

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 1rem auto 0;
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 2rem 0;
}

/* Cards */
.card {
  background-color: #fff;
  border-radius: 8px;
  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(-4px);
}

.card-header {
  background-color: rgba(170, 143, 0, 0.05);
  padding: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

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

.card-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-title h3 {
  margin: 0;
  font-size: 1.5rem;
}

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

.card-content p {
  margin-bottom: 0.75rem;
  color: #666;
}

.card-content ul {
  list-style: none;
  padding: 0;
}

.card-content li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #666;
  position: relative;
}

.card-content li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.card-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--light-gray);
  background-color: rgba(26, 26, 46, 0.02);
}

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

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

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

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Blog/Article List */
.blog-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.article {
  background-color: #fff;
