* {
  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;
  background-color: #f8f7f5;
  color: #2c2c2c;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  color: #1a3a52;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

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

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

h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

h6 {
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

a:hover {
  color: #aa8c2c;
}

/* Header & Navigation */
.header {
  background-color: #1a3a52;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8f7f5;
  display: flex;
  align-items: center;
}

.logo-accent {
  color: #aa8c2c;
  margin-left: 0.25rem;
}

.tagline {
  display: none;
  font-size: 0.65rem;
  color: #aa8c2c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

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

.nav-link {
  color: #f8f7f5;
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a3a52 0%, #0f2437 50%, #1a3a52 100%);
  color: #f8f7f5;
  padding: 4rem 1rem;
  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 20% 50%, rgba(170, 140, 44, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(170, 140, 44, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  color: #f8f7f5;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #aa8c2c;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-description {
  color: #f8f7f5;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: #aa8c2c;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Source Sans Pro', sans-serif;
}

.button:hover {
  background-color: #8a6f1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(170, 140, 44, 0.3);
}

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

.button-secondary {
  background-color: #1a3a52;
  color: #f8f7f5;
}

.button-secondary:hover {
  background-color: #0f2437;
  box-shadow: 0 4px 12px rgba(15, 36, 55, 0.3);
}

.button-outline {
  background-color: transparent;
  color: #aa8c2c;
  border: 2px solid #aa8c2c;
}

.button-outline:hover {
  background-color: #aa8c2c;
  color: #fff;
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

/* Sections */
.section {
  padding: 4rem 1rem;
  background-color: #f8f7f5;
}

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

.section-heading h2 {
  margin-top: 0;
}

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

.section-light {
  background-color: #fff;
}

.section-dark {
  background-color: #1a3a52;
  color: #f8f7f5;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #f8f7f5;
}

.section-dark p {
  color: #f8f7f5;
}

/* Card Layouts */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  background-color: #fff;
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #aa8c2c;
  transition: all 0.3s ease;
  position: relative;
}

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

.card-dark {
  background-color: #f8f7f5;
}

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

.card-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.card-title {
  flex: 1;
}

.card-title h3 {
  margin: 0;
  color: #1a3a52;
}

.card-content {
  color: #2c2c2c;
  font-size: 0.95rem;
}

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

.card-link {
  color: #aa8c2c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #8a6f1f;
  margin-right: 4px;
}

/* Blog List */
.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.article-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg
