* {
  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: #0f0f1e;
  color: #e8e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: #e8e8f0;
  letter-spacing: 0.05em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
}

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

a:hover {
  color: #00f0ff;
}

.casino-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  stroke: #00d4ff;
  fill: none;
  stroke-width: 1.5;
}

/* ===== HEADER & NAVIGATION ===== */

.header {
  background-color: #0f0f1e;
  border-bottom: 1px solid rgba(95, 95, 109, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d4ff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.logo-text {
  margin-left: 0.5rem;
}

.tagline {
  font-size: 0.65rem;
  color: #5f5f6d;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: -0.25rem;
}

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

.nav a {
  color: #e8e8f0;
  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 {
  color: #00d4ff;
  border-bottom-color: #00d4ff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #e8e8f0;
  font-size: 1.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 0.4rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: #e8e8f0;
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */

.hero {
  background: linear-gradient(135deg, #16213e 0%, #5f5f6d 50%, #0f0f1e 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

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

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

.hero-content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
}

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

.hero h1 {
  color: #00d4ff;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

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

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

.btn {
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-family: "Orbitron", monospace;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: #00d4ff;
  color: #0f0f1e;
  border-color: #00d4ff;
}

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

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

.btn-secondary:hover {
  background-color: rgba(0, 212, 255, 0.1);
  border-color: #00f0ff;
  color: #00f0ff;
}

/* ===== SECTIONS ===== */

.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  position: relative;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #5f5f6d, transparent);
  margin: 0 auto;
  max-width: 1400px;
}

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

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

.section-title p {
  color: #5f5f6d;
  font-size: 1.1rem;
}

/* ===== CARD LAYOUTS ===== */

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

.card {
  background-color: rgba(22, 33, 62, 0.5);
  border: 1px solid rgba(95, 95, 109, 0.3);
  border-top: 4px solid #00d4ff;
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  background-color: rgba(22, 33, 62, 0.8);
  border-color: rgba(95, 95, 109, 0.5);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
  transform: translateY(-5px);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  stroke: #00d4ff;
  fill: none;
  stroke-width: 1.5;
}

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

.card p {
  color: #c5c5d0;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.card-link {
  color: #00d4ff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: gap 0.3s ease;
  gap: 0.5rem;
}

.card-link:hover {
  gap: 1rem;
  color: #00f0ff;
}

.card-link::after {
  content: "→";
}

/* ===== BLOG/ARTICLE LISTINGS ===== */

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article {
  background-color: rgba(22, 33, 62, 0.5);
  border-left: 4px solid #00d4ff;
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.article:hover {
  background-color: rgba(22, 33, 62, 0.8);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.1);
  transform: translateX(10px);
}

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

.article h3 {
  flex: 1;
  min-width: 200px;
  margin-bottom: 0;
}

.article-meta {
  color: #5f5f6d;
  font-size: 0.85rem;
