@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: local('Playfair Display'), local('PlayfairDisplay-Regular'),
       url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato'), local('Lato-Regular'),
       url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
}

* {
  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;
}

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

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

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

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

h4 {
  font-size: 1.35rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  margin-bottom: 1em;
}

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

a:hover {
  color: #16213e;
}

button, .btn {
  padding: 12px 28px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

button:focus, .btn:focus {
  outline: 2px solid #aa8c2c;
  outline-offset: 2px;
}

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

.btn-primary:hover {
  background-color: #16213e;
  box-shadow: 0 6px 16px rgba(170, 140, 44, 0.25);
}

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

.btn-secondary:hover {
  background-color: #1a1a2e;
  box-shadow: 0 6px 16px rgba(26, 26, 46, 0.25);
}

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

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

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

.header {
  background-color: #1a1a2e;
  color: #f8f7f3;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

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

.brand .casino-icon {
  margin-right: 8px;
}

.tagline {
  font-size: 0.65rem;
  color: #aa8c2c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 0.25rem;
}

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

.nav a {
  color: #f8f7f3;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding-bottom: 0.5rem;
  border-bottom: 2px 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: #f8f7f3;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #f8f7f3;
  padding: 5rem 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%),
              radial-gradient(circle at 80% 80%, rgba(170, 140, 44, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: #aa8c2c;
}

.hero h1 {
  color: #f8f7f3;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #aa8c2c;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

.card-icon {
  width: 48px;
  height: 48px;
  color: #aa8c2c;
  margin-right: 1rem;
  flex-shrink: 0;
}

.card-title {
  font-size: 1.35rem;
  margin: 0;
}

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

.card-footer {
  margin-top: auto;
}

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

.card-link:hover {
  gap: 0.8rem;
}

.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.article-content {
  flex-grow: 1;
}

.article
