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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.2;
}

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

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #1a1a2e;
  font-weight: 400;
}

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

a:hover {
  color: #0f3460;
}

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #a98b2c;
  letter-spacing: 0.5px;
}

.tagline {
  font-size: 0.75rem;
  color: #f5f5f5;
  font-weight: 400;
  margin-top: 0.25rem;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: #f5f5f5;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

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

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

.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  color: #f5f5f5;
  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(169, 139, 44, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 52, 96, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.hero h1 {
  color: #f5f5f5;
  margin-bottom: 1rem;
}

.hero p {
  color: #f5f5f5;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-right: 12px;
  margin-bottom: 1rem;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
}

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

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

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

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #a98b2c;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
  margin-top: 1rem;
}

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

.card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #a98b2c;
}

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

.card-header {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

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

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

.card-body {
  padding: 0 2rem 2rem 2rem;
}

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

.card-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #eee;
}

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

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

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

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

.article-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-category {
  display: inline-block;
  color: #a98b2c;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.article h3 {
  margin: 0.5rem 0 1rem 0;
  font-size: 1.25rem;
}

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

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

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

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

.btn:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: #0f3460;
  color: #f5f5f5;
}

.btn-secondary:hover {
  background-color: #0a1f33;
  box-shadow: 0 6px 16px rgba(15, 52, 96, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: #a98b2c;
  border: 2px solid #a98b2c;
  padding: calc(0.875rem - 2px) calc(2rem - 2px);
}

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

.footer {
  background-color: #1a1a2e;
