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

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  color: #1a1a2e;
  margin-top: 0;
  margin-bottom: 16px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

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

a:hover {
  color: #16213e;
}

button, .btn {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #ab8e2c;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #8f7423;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(171, 142, 44, 0.3);
}

.btn-secondary {
  background-color: #16213e;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: #ab8e2c;
  border: 2px solid #ab8e2c;
}

.btn-outline:hover {
  background-color: #ab8e2c;
  color: #ffffff;
  transform: translateY(-2px);
}

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

.header {
  background-color: #1a1a2e;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.15);
}

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

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ab8e2c;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.nav {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav li a {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.nav li a:hover {
  color: #ab8e2c;
  border-bottom: 2px solid #ab8e2c;
  padding-bottom: 2px;
}

.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  color: #ffffff;
  padding: 100px 20px;
  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: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  color: #ab8e2c;
  margin-bottom: 16px;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.hero .tagline {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ab8e2c;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 32px;
  text-transform: none;
}

.hero p {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #ab8e2c, transparent);
  margin: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 16px;
}

.section-title p {
  color: #666;
  font-size: 1.05rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.card {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #ab8e2c;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.15);
}

.card-icon {
  width: 56px;
  height: 56px;
  color: #ab8e2c;
  display: block;
  margin-bottom: 16px;
}

.card-content {
  padding: 32px;
}

.card h3 {
  margin-bottom: 12px;
  color: #1a1a2e;
}

.card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.card a {
  color: #ab8e2c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.card a:hover {
  color: #16213e;
  transform: translateX(4px);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.article {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #ab8e2c;
  display: flex;
  flex-direction: column;
}

.article:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.15);
}

.article-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.article-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-date {
  font-size: 0.85rem;
  color: #ab8e2c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.article h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.article p {
  color: #666;
  font-size: 0.95rem;
  line
