/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: #0f0f0f;
  color: #f0f0f0;
  line-height: 1.6;
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f0f0f0;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

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

h4 {
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
}

p {
  margin-bottom: 1rem;
  color: #e0e0e0;
  line-height: 1.8;
}

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

a:hover {
  color: #e6c745;
}

/* Header and Navigation */
.header {
  background-color: #0f0f0f;
  border-bottom: 2px solid #5f5f5f;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

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

.logo-text-secondary {
  font-size: 0.65rem;
  color: #5f5f5f;
  display: block;
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

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

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: #f0f0f0;
  font-weight: 500;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.nav-link:hover {
  border-bottom-color: #d4af37;
  color: #d4af37;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 6rem 1rem;
  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(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.125rem;
  color: #d0d0d0;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 2px solid #d4af37;
  background-color: #d4af37;
  color: #0f0f0f;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  font-size: 0.95rem;
}

.btn:hover {
  background-color: transparent;
  color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary:hover {
  background-color: #d4af37;
  color: #0f0f0f;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Sections */
.section {
  padding: 5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #5f5f5f 0%, #d4af37 50%, #5f5f5f 100%);
}

.section-subtitle {
  color: #d4af37;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  display: block;
}

/* Cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background-color: #1a1a1a;
  border-top: 4px solid #d4af37;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
  background-color: #222222;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: inline-block;
}

.card h3 {
  margin-bottom: 1rem;
  color: #f0f0f0;
}

.card p {
  font-size: 0.95rem;
  color: #d0d0d0;
  margin-bottom: 1.5rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #5f5f5f;
}

.card-meta {
  font-size: 0.85rem;
  color: #8a8a8a;
}

.card-link {
  color: #d4af37;
  font-weight: 600;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: #e6c745;
}

/* Blog and Articles */
.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.article {
  background-color: #1a1a1a;
  border-left: 4px solid #d4af37;
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.article:hover {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.12);
  background-color: #222222;
}

.article-image {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #5f5f5f 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
}

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

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.article-date,
.article-category {
  color: #8a8a8a;
}

.article-category {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.article-excerpt {
  color: #d0d0d0;
  font-size: 0.95rem;
}

.article-read-more {
  text-align: right;
  white-space: nowrap;
}

.article-read-more a {
  color: #d4af37
