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

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

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background-color: #f8f9fa;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2c3e50;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

h4 {
  font-size: 1.35rem;
  margin-bottom: 0.875rem;
}

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

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

a:hover {
  color: #2c3e50;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ab8e2c, #d4a574);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.2rem;
}

.brand-text h1 {
  font-size: 1.5rem;
  margin: 0;
  color: white;
  font-weight: 700;
}

.brand-text p {
  font-size: 0.75rem;
  color: #ab8e2c;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  color: white;
  padding: 6rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(171, 142, 44, 0.1);
  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;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  color: #e0e0e0;
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ab8e2c, #d4a574);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(171, 142, 44, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(171, 142, 44, 0.4);
  color: white;
}

.cta-button:active {
  transform: translateY(0);
}

/* Section Divider */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, #2c3e50, #ab8e2c, #2c3e50);
  margin: 4rem 0;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

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

.section-title h2 {
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #ab8e2c;
  font-size: 1.1rem;
  font-weight: 500;
}

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

.card {
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 4px solid #ab8e2c;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #2c3e50, #1a252f);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-image svg,
.card-image .casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
}

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  margin-top: 0;
  color: #2c3e50;
}

.card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  color: #555;
}

.card-link {
  display: inline-block;
  color: #ab8e2c;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.card-link:hover {
  border-bottom-color: #ab8e2c;
  padding-left: 0.25rem;
}

/* Blog List */
.blog-list {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article h3 {
  margin: 0 0 0.5rem 0;
}

.article-date {
  background: #2c3e50;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  white-space: nowrap;
  font-weight: 600;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #888;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Buttons */
.button {
  display: inline-block;
  background: white;
  color: #2c3e50;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: 2px solid #2c3e50;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.button:hover {
  background: #2c3e50;
  color: white;
}

.button-secondary {
  background: #f0f0f0;
  color: #2c3e50;
  border-color: #d0d0d0;
}

.button-secondary:hover {
  background: #2c3e50;
  color: white;
  border-color: #2c3e50;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 1rem 1rem;
  margin-top: 4rem;
  position: relative;
  border-top: 3px
