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

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

body {
  font-family: 'Lato', 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', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

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

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

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

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

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #1a1a1a;
}

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

a:hover {
  color: #8b6f1f;
}

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

.header-container {
  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: #a98b2c;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.header .casino-icon {
  width: 40px;
  height: 40px;
}

.tagline {
  font-size: 0.75rem;
  color: #a98b2c;
  font-style: italic;
  margin-top: 0.25rem;
}

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

.nav a {
  color: #f5f5f5;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #a98b2c;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #a98b2c;
}

.nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #a98b2c;
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: #f5f5f5;
  padding: 6rem 1.5rem;
  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(169, 139, 44, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(169, 139, 44, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(169, 139, 44, 0.3));
}

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

.hero p {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #a98b2c;
  background-color: #a98b2c;
  color: #1a1a1a;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Lato', sans-serif;
}

.btn:hover {
  background-color: #8b6f1f;
  border-color: #8b6f1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(169, 139, 44, 0.3);
}

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

.btn-secondary:hover {
  background-color: #a98b2c;
  color: #1a1a1a;
}

/* SECTIONS */
.section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section:nth-of-type(odd) {
  background-color: #fff;
}

.section:nth-of-type(even) {
  background-color: #f5f5f5;
}

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

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

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #a98b2c;
  margin: 1rem auto 0;
  border-radius: 2px;
}

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

.card {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 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(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(169, 139, 44, 0.2));
}

.card-header {
  padding: 2rem;
  padding-bottom: 0;
  flex-grow: 0;
}

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

.card-body p {
  margin-bottom: 1.5rem;
  color: #555;
}

.card-footer {
  padding: 0 2rem 2rem;
  flex-grow: 0;
}

.card-footer .btn {
  width: 100%;
}

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

.article {
  padding: 2rem;
  margin-bottom: 1.5rem;
  background-color: #fff;
  border-radius: 4px;
  border-left: 4px solid #a98b2c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-date {
  font-size: 0.85rem;
  color: #999;
  white-space: nowrap;
  background-color: #f5f5f5;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  font-weight: 500;
}

.article-title {
  margin: 0;
}

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

.article-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #999;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.read-more {
  color: #a98b2c;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.read-more:hover
