* {
  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;
  color: #1a1a2e;
  background-color: #f8f9fa;
  line-height: 1.6;
}

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

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

a:hover {
  color: #1a1a2e;
}

/* HEADER & NAVIGATION */
.header {
  background-color: #1a1a2e;
  padding: 1.5rem 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 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ab8e2c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: #ab8e2c;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: none;
}

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

.nav-item a {
  color: #f8f9fa;
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-item a:hover {
  color: #ab8e2c;
  border-bottom-color: #ab8e2c;
}

.nav-item a.active {
  color: #ab8e2c;
  border-bottom-color: #ab8e2c;
}

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

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  color: #f8f9fa;
  padding: 6rem 2rem;
  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(171, 142, 44, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(171, 142, 44, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

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

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

.hero-tagline {
  color: #ab8e2c;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-style: italic;
  letter-spacing: 1px;
}

/* BUTTONS */
.button {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

.button-primary {
  background-color: #ab8e2c;
  color: #1a1a2e;
}

.button-primary:hover {
  background-color: #1a1a2e;
  color: #ab8e2c;
  border-color: #ab8e2c;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(171, 142, 44, 0.2);
}

.button-secondary {
  background-color: transparent;
  color: #ab8e2c;
  border-color: #ab8e2c;
}

.button-secondary:hover {
  background-color: #ab8e2c;
  color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(171, 142, 44, 0.2);
}

.button-small {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

/* SECTION DIVIDER */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #ab8e2c 50%, transparent 100%);
  margin: 4rem 0;
}

/* MAIN CONTENT SECTIONS */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

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

.card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #ab8e2c;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.card-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #1a1a2e;
}

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

.card-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

.card-footer {
  display: flex;
  gap: 1rem;
}

.card .button {
  flex: 1;
  text-align: center;
}

/* BLOG LIST */
.blog-list {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.article-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #999;
}

.article-date {
  color: #ab8e2c;
  font-weight: 600;
}

.article h2 {
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.article p {
  color: #666;
  margin-bottom: 1.5rem;
}

.article-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
