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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0f3460;
  color: #e8e8e8;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: #e8e8e8;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.25rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1em;
  color: #e8e8e8;
}

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

a:hover {
  color: #7c7c87;
}

/* Header & Navigation */
.header {
  background-color: #16213e;
  border-bottom: 2px solid #7c7c87;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d4ff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tagline {
  display: none;
  font-size: 0.75rem;
  color: #7c7c87;
  font-style: italic;
}

.nav {
  display: flex;
  list-style: none;
  gap: 0;
  flex-direction: column;
  width: 100%;
  margin-top: 1rem;
}

.nav li {
  border-bottom: 1px solid rgba(124, 124, 135, 0.2);
}

.nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: #e8e8e8;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.nav a:hover {
  background-color: rgba(0, 212, 255, 0.1);
  border-bottom-color: #00d4ff;
  color: #00d4ff;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #16213e 100%);
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: drift 20s linear infinite;
  pointer-events: none;
}

@keyframes drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.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: 1rem;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
}

.hero h1 {
  color: #00d4ff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero .tagline {
  display: block;
  font-size: 1.125rem;
  color: #7c7c87;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #e8e8e8;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: #00d4ff;
  color: #16213e;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  border: 2px solid #00d4ff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 1rem;
}

.button:hover {
  background-color: transparent;
  color: #00d4ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.button.secondary {
  background-color: transparent;
  color: #00d4ff;
}

.button.secondary:hover {
  background-color: #00d4ff;
  color: #16213e;
}

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

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

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.section:nth-child(odd) {
  background-color: rgba(22, 33, 62, 0.5);
}

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

.card {
  background-color: #16213e;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 4px solid #00d4ff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
  border-top-color: #00d4ff;
}

.card-header {
  padding: 1.5rem;
  background-color: rgba(0, 212, 255, 0.05);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.2));
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-body {
  padding: 1.5rem;
}

.card-footer {
  padding: 1rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
}

/* Blog List */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article {
  background-color: #16213e;
  border-radius: 4px;
  overflow: hidden;
  border-left: 4px solid #00d4ff;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.article-header {
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #7c7c87;
  margin-bottom: 0.5rem;
}

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

.article-title {
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.article-excerpt {
  color: #e8e8e8;
  margin-bottom: 1rem;
}

.article-read-more {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid #00d4ff;
  color: #00d4ff;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.article-read-more:hover {
  background-color: #00d4ff;
  color: #16213e;
}

/* Features Grid
