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

:root {
  --primary: #5f5f6d;
  --secondary: #0f3460;
  --accent: #00d4ff;
  --background: #0a0e27;
  --text: #e8e8f0;
  --text-dark: #a0a0b0;
  --card-bg: #1a1f3a;
  --border-subtle: #2a2f4a;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 12px 32px rgba(0, 212, 255, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 0.75em;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
  margin-bottom: 0.5em;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}

p {
  font-size: 1rem;
  margin-bottom: 1em;
  color: var(--text);
  line-height: 1.8;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
  color: #00e6ff;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

/* Header & Navigation */

.header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--background) 100%);
  border-bottom: 2px solid var(--border-subtle);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  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;
  background: linear-gradient(135deg, var(--accent), #5f9fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 0.75rem;
  color: var(--accent);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

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

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

.nav a {
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.3s ease, color 0.3s ease;
}

.nav a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
  text-shadow: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */

.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 50%, var(--background) 100%);
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.4));
}

.hero h1 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 2px solid var(--accent);
  border-radius: 4px;
  background: transparent;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.btn:hover {
  background: var(--accent);
  color: var(--background);
  text-shadow: none;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

.btn-primary {
  background: var(--accent);
  color: var(--background);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #00e6ff;
  border-color: #00e6ff;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background: var(--primary);
  color: var(--text);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--secondary);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
}

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

/* Sections */

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

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

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

.section-title p {
  color: var(--text-dark);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 4rem 0;
  border: none;
}

/* Card Grid */

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

.card {
  background: var(--card-bg);
  border-radius: 6px;
  padding: 2rem;
  border-top: 4px solid var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-top-color: #00e6ff;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
}

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

.card p {
  color: var(--text-dark);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.card a {
  align-self: flex-start;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

/* Blog List */

.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.article {
  background: var(--card-bg);
  border-radius: 6px;
  padding: 2rem;
  border-left: 4px solid var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 1fr;
}

.article:hover {
  box-shadow: var(--shadow-hover);
  border-left-color: #00e6ff;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  flex-wrap: wrap;
}

.article-meta-item {
  display: flex;
  align
