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

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap');
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #f8f7f3;
  color: #2c2c2c;
  line-height: 1.6;
  font-size: 16px;
}

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

h1 {
  font-size: 3.5rem;
}

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

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

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

h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: #2c2c2c;
}

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

a:hover {
  color: #1a1a2e;
}

/* HEADER & NAVIGATION */
.header {
  background-color: #1a1a2e;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.logo:hover {
  color: #f8f7f3;
}

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

.nav a {
  color: #f8f7f3;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.5rem;
  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;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #f8f7f3;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

.hero-cta {
  display: inline-block;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #aa8c2c;
  color: #1a1a2e;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #aa8c2c;
  cursor: pointer;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
}

.btn:hover {
  background-color: transparent;
  color: #aa8c2c;
  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;
}

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

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

/* SECTIONS */
section {
  padding: 4rem 1rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-divider {
  height: 3px;
  background: linear-gradient(90deg, #1a1a2e 0%, #aa8c2c 50%, #16213e 100%);
  margin: 3rem 0;
}

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

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

.card h3 {
  color: #1a1a2e;
}

.card-body {
  flex: 1;
}

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

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

/* GRID LAYOUTS */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

/* BLOG & ARTICLES */
.blog-list {
  list-style: none;
}

.blog-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8e8e8;
}

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

.blog-item h3 {
  margin-bottom: 0.5rem;
}

.article-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.article-meta span {
  margin-right: 1rem;
}

.article-excerpt {
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.read-more {
  color: #aa8c2c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more:hover {
  color: #1a1a2e;
}

/* FOOTER */
.footer {
  background-color: #1a1a2e;
  color: #f8f7f3;
  padding: 3rem 1rem 1rem;
  margin-top: 4rem;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #1a1a2e 0%, #aa8c2c 50%, #16213e 100%) 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #aa8c2c;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
