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

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

body {
  font-family: 'Lato', sans-serif;
  background-color: #f8f7f3;
  color: #2c2c2c;
  line-height: 1.6;
}

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

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

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

h4 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #2c2c2c;
}

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

a:hover {
  color: #0f3460;
}

/* Header and Navigation */
.header {
  background-color: #1a1a2e;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

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

.brand h1 {
  color: #aa8c2c;
  font-size: 1.5rem;
  margin: 0;
}

.brand p {
  color: #aa8c2c;
  font-size: 0.75rem;
  margin: 0;
  font-style: italic;
}

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

.nav li a {
  color: #f8f7f3;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

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

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

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

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

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 1rem;
}

.hero h1 {
  color: #f8f7f3;
  margin-bottom: 1rem;
}

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

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

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

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

.btn-secondary {
  background-color: transparent;
  color: #aa8c2c;
  border-color: #aa8c2c;
}

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

.btn-dark {
  background-color: #1a1a2e;
  color: #f8f7f3;
  border-color: #1a1a2e;
}

.btn-dark:hover {
  background-color: #0f3460;
  border-color: #0f3460;
  transform: translateY(-2px);
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Sections */
.section {
  padding: 4rem 1rem;
  position: relative;
}

.section:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, #aa8c2c 0%, #aa8c2c 50%, transparent 100%);
}

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

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

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #aa8c2c;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  margin-top: 1rem;
}

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

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

.card-header {
  padding: 1.5rem;
  background-color: #f8f7f3;
  border-bottom: 1px solid #e0dfd7;
}

.card-header h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

.card-body p {
  margin-bottom: 1rem;
}

.card-body p:last-child {
  margin-bottom: 0;
}

.card-footer {
  padding: 1.5rem;
  border-top: 1px solid #e0dfd7;
  background-color: #f8f7f3;
}

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

.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 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article {
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #aa8c2c;
  display: grid;
  grid-template-columns: 200px 1fr;
}

.article:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.article-image {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aa8c2c;
  font-size: 3rem;
}

.article-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article h3 {
  margin-bottom: 1rem;
}

.article p {
  margin-bottom: 1rem;
  color: #555;
}

/* Highlight Box */
.highlight
