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

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

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f7f3;
  color: #2d2d2d;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

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

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

h2 {
  font-size: 2.25rem;
  letter-spacing: 0.8px;
}

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

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.25rem;
  color: #2d2d2d;
}

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

a:hover {
  color: #1a1a2e;
}

button, .btn {
  font-family: 'Source Sans Pro', sans-serif;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

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

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

.btn-secondary {
  background-color: #16213e;
  color: #f8f7f3;
}

.btn-secondary:hover {
  background-color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(22, 33, 62, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: #aa8c2c;
  border: 2px solid #aa8c2c;
}

.btn-outline:hover {
  background-color: #aa8c2c;
  color: #f8f7f3;
}

/* SVG Icon Styles */
.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  fill: #aa8c2c;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-right: 12px;
}

/* 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.1);
}

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

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

.tagline {
  font-size: 0.75rem;
  color: #aa8c2c;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

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

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

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

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

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

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

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

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

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

.hero .btn {
  margin: 0 0.5rem;
}

/* Main Content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 1.5rem;
  position: relative;
}

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

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

.section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #1a1a2e 0%, #aa8c2c 50%, #1a1a2e 100%);
}

.section:first-of-type::before {
  display: none;
}

/* Card Styles */
.card {
  background-color: #fff;
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-top: 4px solid #aa8c2c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.card h3 {
  margin-top: 0;
  color: #1a1a2e;
  display: flex;
  align-items: center;
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #666;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

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

.blog-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

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

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

.blog-content h3 {
  margin-top: 0;
}

.article {
  max-width: 800px;
  margin: 0 auto;
}

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

.article-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #aa8c2c;
  font-size: 0.95rem;
  color: #666;
}

.article-author::before {
  content: '✓ ';
  color: #aa8c2c;
  font-weight: bold;
}

.article-body {
  line-height: 1.8;
}

.article-body h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-body ul,
.article-body ol {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-body li {
  margin-bottom: 0.5rem;
  color: #2d2d2d;
}

/* Footer */
.footer {
  background-color: #1a1a2e;
  color: #f8f7f3;
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
