@font-face {
  font-family: 'Playfair Display';
  src: url('data:font/woff2;base64,d09GMgABAAAAACJQAA0AAAAAI7AAACH/AAAAAAAAAAAAAAAAAAAAAAAAAAAA') format('woff2');
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('data:font/woff2;base64,d09GMgABAAAAACJQAA0AAAAAI7AAACG/AAAAAAAAAAAAAAAAAAAAAAAAAAAA') format('woff2');
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.3;
}

h4 {
  font-size: 1.35rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 0.95rem;
}

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

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

a:hover {
  color: #8b7120;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.08);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
}

.brand span {
  color: #a98b2c;
  margin-left: 0.5rem;
}

.tagline {
  font-size: 0.75rem;
  color: #666;
  font-style: italic;
  letter-spacing: 1px;
  margin-top: 0.25rem;
  display: block;
}

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

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

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

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

.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #f5f5f5;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #f5f5f5;
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

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

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

.cta-button {
  display: inline-block;
  background-color: #a98b2c;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #a98b2c;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background-color: #8b7120;
  border-color: #8b7120;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(169, 139, 44, 0.3);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button-secondary {
  background-color: transparent;
  color: #a98b2c;
  border: 2px solid #a98b2c;
}

.cta-button-secondary:hover {
  background-color: #a98b2c;
  color: #ffffff;
}

.section {
  padding: 4rem 2rem;
  background-color: #ffffff;
  position: relative;
}

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

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

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

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

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #a98b2c;
  border-radius: 2px;
}

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

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

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

.card-header {
  padding: 0;
  min-height: 200px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f5f5;
}

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

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.card-description {
  color: #555;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-footer {
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
  margin-top: auto;
}

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

.card-link:hover {
  color: #8b7120;
  transform: translateX(4px);
}

.blog-list {
  display: grid;
  gap: 2rem;
}

.article {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.08);
  border-left: 4px solid #a98b2c;
  transition: all 0.3s ease;
}

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

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

.article-meta {
  font-size: 0.85rem;
  color: #999
