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

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0f3460;
  color: #f5f5f5;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: #f5f5f5;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

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

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

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

p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: #e8e8e8;
  line-height: 1.8;
}

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

a:hover {
  color: #7c7c87;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

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

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-right: 12px;
}

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

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

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d4ff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 0.65rem;
  color: #7c7c87;
  letter-spacing: 1px;
  margin-top: -4px;
}

/* ===== NAVIGATION ===== */
.nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav a {
  color: #f5f5f5;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  font-size: 0.95rem;
}

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

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

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a2e4a 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 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-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #00d4ff;
  font-size: 3.5rem;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hero-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-tagline {
  font-size: 1.5rem;
  color: #7c7c87;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 1.1rem;
  color: #e8e8e8;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  margin: 0.5rem;
  border: 2px solid #00d4ff;
  border-radius: 4px;
  color: #f5f5f5;
  background-color: transparent;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: #00d4ff;
  color: #16213e;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  transform: translateY(-2px);
}

.btn-primary {
  background-color: #00d4ff;
  color: #16213e;
  border-color: #00d4ff;
}

.btn-primary:hover {
  background-color: transparent;
  color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
  border-color: #7c7c87;
  color: #7c7c87;
}

.btn-secondary:hover {
  background-color: #7c7c87;
  color: #f5f5f5;
  border-color: #7c7c87;
  box-shadow: 0 0 15px rgba(124, 124, 135, 0.4);
}

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

.section-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  margin: 3rem 0;
}

.section-dark {
  background-color: #0f3460;
}

.section-alt {
  background: linear-gradient(180deg, #16213e 0%, #0f3460 100%);
}

/* ===== CARDS ===== */
.card {
  background-color: #16213e;
  border-top: 4px solid #00d4ff;
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.15);
  transform: translateY(-5px);
  border-top-color: #7c7c87;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-right: 1rem;
  fill: #00d4ff;
}

.card h3 {
  margin: 0;
  color: #f5f5f5;
}

.card p {
  color: #d4d4d4;
  margin-bottom: 1rem;
}

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

/* ===== BLOG SECTION ===== */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.article {
  background-color: #16213e;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article:hover {
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.15);
  transform: translateY(-5px);
}

.article-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #7c7c87 0%, #00d4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid #00d4ff;
}

.article-image svg {
  width: 64px;
  height: 64px;
  fill: #16213e;
}

.article-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-category {
  color: #00d4ff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight:
