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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

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

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

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

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

a:hover {
  color: #8b7220;
}

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

.btn:hover {
  background-color: #8b7220;
  border-color: #8b7220;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(169, 139, 44, 0.2);
}

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

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

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Header */
.header {
  background-color: #fff;
  border-bottom: 2px solid #2d2d2d;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.logo span {
  color: #a98b2c;
}

.tagline {
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Navigation */
.nav {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 8px;
  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;
  font-size: 1.5rem;
  cursor: pointer;
  color: #1a1a1a;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: #f5f5f5;
  padding: 80px 20px;
  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%);
  pointer-events: none;
}

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

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

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

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

.hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Section Divider */
.section-divider {
  height: 3px;
  background: linear-gradient(90deg, #1a1a1a 0%, #a98b2c 50%, #1a1a1a 100%);
  margin: 3rem 0;
}

/* Main Content */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section {
  margin-bottom: 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 1rem;
}

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

.section-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.card-header .casino-icon {
  flex-shrink: 0;
}

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

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.card-content p {
  margin-bottom: 1rem;
  color: #555;
}

.card-content ul {
  margin: 1rem 0;
  padding-left: 20px;
}

.card-content li {
  margin-bottom: 0.5rem;
  color: #555;
}

.card-footer {
  padding: 1.5rem;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 10px;
}

.card-link {
  color: #a98b2c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card-link:hover {
  color: #8b7220;
}

/* Blog List */
.blog-list {
  list-style: none;
}

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

.blog-item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #999;
}

.blog-date, .blog-author {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.article h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article strong {
  color: #a98b2c;
}

.article-cta {
  background-color: #f9f9f9;
  border-left: 4px solid #a98b2c;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.article-cta p {
  margin-bottom: 1rem;
}

/* Features Grid */
.features
