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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f5f3f0;
  color: #2c2c2c;
  line-height: 1.6;
  font-weight: 400;
}

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

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

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

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.375rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

a:hover {
  color: #1a1a2e;
}

/* Header */
.header {
  background-color: #1a1a2e;
  padding: 1.5rem 2rem;
  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;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #a78a2b;
}

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

.logo-brand {
  font-size: 1.5rem;
  color: #a78a2b;
}

.logo-tagline {
  font-size: 0.65rem;
  color: #a78a2b;
  font-weight: 400;
  letter-spacing: 0.5px;
}

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

/* Navigation */
.nav {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
}

.nav a {
  color: #f5f3f0;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.nav a:hover {
  color: #a78a2b;
  border-bottom-color: #a78a2b;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  color: #f5f3f0;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167, 138, 43, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  fill: #a78a2b;
}

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

.hero p {
  font-size: 1.25rem;
  color: #d4d4d4;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
  text-align: center;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: #8f7324;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(167, 138, 43, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #f5f3f0;
  border: 2px solid #a78a2b;
}

.btn-secondary:hover {
  background-color: #a78a2b;
  color: #1a1a2e;
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

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

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

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

.section-title h2 {
  margin-bottom: 0.5rem;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #a78a2b 50%, transparent 100%);
  margin: 3rem 0;
}

/* Cards */
.card {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #a78a2b;
  padding: 2rem;
}

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

.card-image {
  width: 100%;
  height: 200px;
  background-color: #f5f3f0;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  fill: #a78a2b;
  flex-shrink: 0;
}

.card h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.375rem;
}

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

.card-footer {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

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

.card-link:hover {
  color: #8f7324;
}

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

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

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

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

/* Blog List */
.blog-list {
  list-style: none;
  margin: 0;
}

.blog-item {
  padding: 2rem;
  border-bottom: 1px solid #e0ddd9;
  display: flex;
  gap: 2rem;
  transition: background-color 0.3s ease;
}

.blog-item:last-child {
  border-bottom: none;
}

.blog-item:hover {
  background-color: #faf9f7;
}

.blog-item-image {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78a2b;
  font-size: 2rem;
}

.blog-item-content {
  flex: 1;
}

.blog
