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

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Mono', monospace;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 3rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  color: #7c7c87;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  color: #e8e8e8;
  margin-bottom: 0.875rem;
}

h5 {
  font-size: 1.25rem;
  color: #e8e8e8;
}

h6 {
  font-size: 1rem;
  color: #7c7c87;
}

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

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

a:hover {
  color: #7c7c87;
  text-decoration: underline;
}

/* ===== HEADER ===== */
.header {
  background-color: #16213e;
  padding: 1.5rem 2rem;
  border-bottom: 2px solid #7c7c87;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

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

.logo h1 {
  font-size: 1.75rem;
  margin: 0;
  color: #00d4ff;
  letter-spacing: 1px;
}

.tagline {
  font-size: 0.85rem;
  color: #7c7c87;
  font-style: italic;
  margin-top: 0.25rem;
}

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

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

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

.nav a:hover {
  color: #00d4ff;
  border-bottom-color: #00d4ff;
  text-decoration: none;
}

.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%, #1a2a4f 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #7c7c87;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(124, 124, 135, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-family: 'Roboto Mono', monospace;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #00d4ff;
  color: #0f3460;
  border: 2px solid #00d4ff;
}

.btn-primary:hover {
  background-color: #16213e;
  color: #00d4ff;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background-color: #00d4ff;
  color: #0f3460;
  text-decoration: none;
}

.btn-dark {
  background-color: #7c7c87;
  color: #0f3460;
  border: 2px solid #7c7c87;
}

.btn-dark:hover {
  background-color: transparent;
  color: #7c7c87;
  text-decoration: none;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  height: 2px;
  background: linear-gradient(to right, #16213e, #00d4ff, #16213e);
  margin: 3rem 0;
  opacity: 0.5;
}

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

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

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

.section-title p {
  font-size: 1.1rem;
  color: #7c7c87;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 212, 255, 0.2);
  transform: translateY(-4px);
  border-left-color: #7c7c87;
}

.card h3 {
  color: #00d4ff;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card .casino-icon {
  width: 32px;
  height: 32px;
  margin-right: 0;
}

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

.card .btn {
  margin-top: auto;
}

/* ===== BLOG LIST ===== */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-item {
  background-color: #16213e;
  border-left: 4px solid #00d4ff;
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-item:hover {
  box-shadow: 0 8px 16px rgba(0, 212, 255, 0.2);
  transform: translateX(4px);
}

.blog-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #7c7c
