@font-face {
  font-family: 'Playfair Display';
  src: local('Playfair Display'), local('PlayfairDisplay-Regular');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: local('Source Sans Pro'), local('SourceSansPro-Regular');
  font-weight: 400;
  font-style: normal;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f6f1;
  color: #2c2c2c;
  line-height: 1.6;
  font-size: 16px;
}

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

h1 {
  font-size: 3.5rem;
  letter-spacing: -2px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  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;
  color: #2c2c2c;
  font-size: 1rem;
  line-height: 1.8;
}

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

a:hover {
  color: #0f0f0f;
}

/* SVG Icons */
.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  fill: #a98c2c;
  transition: fill 0.3s ease;
}

.casino-icon:hover {
  fill: #0f0f0f;
}

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

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

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-brand h1 {
  font-size: 1.5rem;
  color: #a98c2c;
  margin: 0;
  letter-spacing: -0.5px;
}

.header-tagline {
  font-size: 0.75rem;
  color: #a98c2c;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  color: #f8f6f1;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  color: #f8f6f1;
  padding: 6rem 2rem;
  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 top right, rgba(169, 140, 44, 0.1) 0%, transparent 60%);
  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;
  fill: #a98c2c;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: #a98c2c;
  margin-bottom: 2rem;
  font-style: italic;
  letter-spacing: 1px;
}

.hero-description {
  font-size: 1.05rem;
  color: #e8e6e1;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Source Sans Pro', sans-serif;
}

.btn-primary {
  background-color: #a98c2c;
  color: #0f0f0f;
  border-color: #a98c2c;
}

.btn-primary:hover {
  background-color: #0f0f0f;
  color: #a98c2c;
  box-shadow: 0 4px 12px rgba(169, 140, 44, 0.3);
}

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

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

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

/* Main Content */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections */
.section {
  padding: 4rem 2rem;
  position: relative;
}

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

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

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, #a98c2c 0%, #1a1a1a 50%, #a98c2c 100%);
  margin: 2rem 0;
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

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

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 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 #a98c2c;
}

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

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

.card-icon {
  width: 48px;
  height: 48px;
  fill: #a98c2c;
  flex-shrink: 0;
}

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

.card-content {
  padding: 2rem;
}

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

.card-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #f0f0f0;
  background-color: #fafaf8;
}

.card-link {
  color: #a98c2c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  color: #0f0f0f;
  gap: 0.75rem;
}

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

.blog-list-item {
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.blog-list-item:last-child {
  border-bottom: none;
}

.blog-list-item:hover {
  padding-left: 1rem;
  background-color: rgba(169, 140, 44, 0.03);
}

.blog-list-link {
  display: block;
}

.blog-list-date {
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
