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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f7f3;
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #0f1419;
  margin-bottom: 16px;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 24px;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
}

h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #333;
  font-size: 16px;
}

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

a:hover {
  color: #0f1419;
}

/* Header */
.header {
  background-color: #0f1419;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #aa8c2c;
  letter-spacing: 1px;
}

.tagline {
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
}

.nav {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav a {
  color: #f8f7f3;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  padding-bottom: 2px;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #f8f7f3;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
  color: #f8f7f3;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.hero h1 {
  color: #f8f7f3;
  margin-bottom: 16px;
  font-size: 52px;
}

.hero-subtitle {
  font-size: 24px;
  color: #aa8c2c;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero p {
  color: #ddd;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  margin-bottom: 20px;
  color: #aa8c2c;
}

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

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

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

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

.btn-secondary:hover {
  background-color: #aa8c2c;
  color: #0f1419;
  transform: translateY(-2px);
}

.btn-dark {
  background-color: #0f1419;
  color: #f8f7f3;
  border-color: #0f1419;
}

.btn-dark:hover {
  background-color: #1a1f2e;
  border-color: #1a1f2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 20px;
  margin: 40px 0;
}

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

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

.section-header h2 {
  margin-top: 0;
}

.section-header p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 32px 0;
}

.card {
  background-color: #fff;
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #aa8c2c;
  transition: all 0.3s ease;
}

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

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  margin-bottom: 16px;
  color: #aa8c2c;
}

.card h3 {
  margin-top: 0;
  color: #0f1419;
}

.card p {
  color: #555;
  margin-bottom: 20px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.card-link {
  color: #aa8c2c;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #0f1419;
  margin-right: -4px;
}

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

.article {
  background-color: #fff;
  padding: 28px;
  margin-bottom: 24px;
  border-radius: 4px;
  border-left: 4px solid #aa8c2c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.article h3 {
  margin: 0 0 8px 0;
  color: #0f1419;
}

.article-date {
  color: #999;
  font-size: 14px;
  white-space: nowrap;
  margin-left: 16px;
}

.article p {
  color: #666;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #999;
}

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

.article-cta {
  display: inline-block;
  color: #aa8c2c;
  font-weight: 600;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.article-cta:hover {
  margin-right: -4px;
}

/* Features Section */
.features {
  background-color: #fff;
  padding: 60px 20px;
  margin: 40px 0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
