* {
  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: #f8f9fa;
  line-height: 1.6;
  font-size: 16px;
}

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

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

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

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

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

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

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

a:hover {
  color: #0f3460;
}

/* Header & Navigation */
.header {
  background-color: #1a1a2e;
  padding: 1.5rem 2rem;
  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: 'IBM Plex Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #009ebe;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo .casino-icon {
  width: 32px;
  height: 32px;
}

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

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

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

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 158, 190, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 158, 190, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

.hero-tagline {
  font-size: 1.375rem;
  color: #009ebe;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  color: #e8e8e8;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

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

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

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

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.section:not(:last-child) {
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(to right, #1a1a2e, #009ebe, #1a1a2e) 1;
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

.card-header {
  padding: 2rem;
  flex-grow: 1;
}

.card .casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
  color: #009ebe;
}

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

.card p {
  color: #666;
  line-height: 1.7;
}

.card-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #f0f0f0;
  background-color: #fafafa;
}

.card-footer a {
  color: #009ebe;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-footer a:hover {
  color: #0f3460;
}

.card-footer a::after {
  content: '→';
  transition: transform 0.3s ease;
}

.card:hover .card-footer a::after {
  transform: translateX(4px);
}

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

.article {
  background: #fff;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  border-top: 4px solid #009ebe;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.article:hover {
  box-shadow: 0 8px 16px rgba(0, 158, 190, 0.12);
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #999;
  flex-wrap: wrap;
}

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

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

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

.article a {
  color: #009ebe;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.article a::after {
  content: '→';
  transition: transform 0.3s ease;
}

.article:hover a::after {
  transform: translateX(4px);
}

.article-tag {
  display: inline-block;
  background-color: #f0f7
