* {
  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: 'Orbitron', monospace;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #e8e8e8;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

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

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

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

/* ===========================
   BUTTONS & INTERACTIVE
   =========================== */

button, .btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #00d4ff;
  background-color: transparent;
  color: #00d4ff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

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

button:active, .btn:active {
  transform: translateY(0);
}

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

.btn-primary:hover {
  background-color: #7c7c87;
  border-color: #7c7c87;
  box-shadow: 0 0 20px rgba(124, 124, 135, 0.5);
}

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

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

/* ===========================
   ICONS
   =========================== */

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

.casino-icon:hover {
  fill: #7c7c87;
  transform: scale(1.1);
}

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

.header {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d4ff;
  letter-spacing: 1px;
  transition: text-shadow 0.3s ease;
}

.logo:hover {
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #7c7c87;
  display: block;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

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

.nav a {
  color: #e8e8e8;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

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

.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%, #1a2f4a 100%);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  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: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(124, 124, 135, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.hero p {
  font-size: 1.25rem;
  color: #7c7c87;
  margin-bottom: 2rem;
}

.hero .casino-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ===========================
   MAIN CONTENT
   =========================== */

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section {
  padding: 4rem 0;
  position: relative;
}

.section:not(:last-child) {
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

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

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

.section-header h2 {
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #7c7c87;
  font-size: 1.1rem;
}

/* ===========================
   CARDS
   =========================== */

.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.8);
  border-left: 4px solid #00d4ff;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff 0%, transparent 100%);
  border-radius: 4px 0 0 0;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 212, 255, 0.15);
  border-left-color: #7c7c87;
  background-color: rgba(22, 33, 62, 0.95);
}

.card h3 {
  color: #00d4ff;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.card p {
  color: #c8c8c8;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.card:hover .card-icon {
  fill: #7c7c87;
  transform: rotate(5deg) scale(1.1);
}

/* ===========================
   BLOG & ARTICLES
   ===========================
