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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a2e;
  background-color: #f8f9fa;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a2e;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

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

a:hover {
  color: #0f3460;
}

/* Icons */
.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  fill: #009ebe;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
}

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

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #009ebe;
  text-decoration: none;
}

.tagline {
  font-size: 0.75rem;
  color: #009ebe;
  margin-top: 0.25rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

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

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  color: #f8f9fa;
  padding: 4rem 1rem;
  text-align: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-icon-container {
  flex-shrink: 0;
}

.hero-text {
  flex: 1;
  min-width: 250px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.btn-primary {
  background-color: #009ebe;
  color: #f8f9fa;
}

.btn-primary:hover {
  background-color: #007a94;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 158, 190, 0.3);
}

.btn-secondary {
  background-color: #0f3460;
  color: #f8f9fa;
  border: 2px solid #009ebe;
}

.btn-secondary:hover {
  background-color: #009ebe;
  color: #f8f9fa;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: #f8f9fa;
  color: #1a1a2e;
}

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

/* Sections */
.section {
  margin-bottom: 4rem;
  padding: 3rem 1rem;
  background-color: #fff;
  border-radius: 8px;
}

.section:first-of-type {
  margin-top: -2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-divider {
  height: 4px;
  background: linear-gradient(90deg, #1a1a2e 0%, #009ebe 50%, #0f3460 100%);
  margin: 3rem 0;
}

.section h2 {
  color: #1a1a2e;
  margin-bottom: 2rem;
  text-align: center;
}

/* Cards */
.card {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-top: 4px solid #009ebe;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

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

.card p {
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  fill: #009ebe;
  margin-bottom: 1rem;
}

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

.card-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.card-content .casino-icon {
  flex-shrink: 0;
  margin-right: 0;
  margin-top: 0.25rem;
}

.card-text h4 {
  color: #1a1a2e;
}

/* Blog List */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

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

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

.article-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #0f3460 0%, #009ebe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-image svg {
  width: 64px;
  height: 64px;
  fill: #f8f9fa;
}

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

.article-date {
  color: #009ebe;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.article h3 {
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

.article p {
  color: #1a1a2e;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.article-link {
  color: #009ebe;
  font-weight: 600;
  transition: color 0.3s ease;
}

.article-link:hover {
  color: #0f3460;
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  fill: #009ebe;
  margin: 0 auto 1
