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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0a0e14;
  color: #e8eef5;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: 1px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: 0.8px;
}

h3 {
  font-size: 1.75rem;
  letter-spacing: 0.6px;
}

h4 {
  font-size: 1.25rem;
  letter-spacing: 0.4px;
}

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

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

a:hover {
  color: #00f0ff;
}

/* Header & Navigation */
.header {
  background-color: #0a0e14;
  border-bottom: 1px solid rgba(91, 95, 98, 0.2);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.brand {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8eef5;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #00d9ff, #5b5f62);
  border-radius: 2px;
  display: inline-block;
}

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

.nav a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.95rem;
  color: #e8eef5;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(91, 95, 98, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00d9ff, #5b5f62);
  border-radius: 4px;
}

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

.hero-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.25rem;
  color: #00d9ff;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.1rem;
  color: #d1d9e6;
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #00d9ff;
  color: #0a0e14;
  border-color: #00d9ff;
}

.btn-primary:hover {
  background-color: #00f0ff;
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #00d9ff;
  border-color: #00d9ff;
}

.btn-secondary:hover {
  background-color: #00d9ff;
  color: #0a0e14;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
  transform: translateY(-2px);
}

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

/* Section Divider */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, #0a0e14, #00d9ff, #5b5f62, #0a0e14);
  margin: 4rem 0;
}

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

.section-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

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

.section-header p {
  font-size: 1.05rem;
  color: #d1d9e6;
}

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

.card {
  background-color: #0f1419;
  border-top: 3px solid #00d9ff;
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00d9ff, #5b5f62);
  border-radius: 4px;
}

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

.card p {
  color: #d1d9e6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.card-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(91, 95, 98, 0.2);
}

.card a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}

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

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

.article:hover {
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.15);
  transform: translateX(8px);
}

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

.article-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #a0a8b8;
  margin-bottom: 0.75rem;
}

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

.article h3 {
  color: #e8eef5;
  margin-bottom: 0.75rem;
}

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

.article-date {
  background-color: rgba(0, 217, 255, 0.1);
  color: #00d9ff;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(
