/* ================================================================
   BETGLINT.SHOP CASINO EDUCATION WEBSITE
   Slot Machine Technology
   ================================================================ */

/* ================================================================
   RESET & BASE STYLES
   ================================================================ */

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1a2e;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.75rem;
  letter-spacing: -0.25px;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4a6a;
}

a {
  color: #aa8f00;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #8a7000;
  text-decoration: none;
}

/* ================================================================
   UTILITY CLASSES
   ================================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #aa8f00, transparent);
  margin: 4rem 0;
  opacity: 0.5;
}

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.py-2 { padding: 2rem 0; }
.py-4 { padding: 4rem 0; }
.py-6 { padding: 6rem 0; }

/* ================================================================
   ICON STYLES
   ================================================================ */

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

.casino-icon:hover {
  fill: #8a7000;
}

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

.header {
  background-color: #1a1a2e;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.header-tagline {
  color: #aa8f00;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: none;
}

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

.nav li {
  position: relative;
}

.nav a {
  color: #ffffff;
  font-weight: 500;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #aa8f00;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: #aa8f00;
}

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

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

.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #ffffff;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(22, 33, 62, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

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

.hero h1 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #aa8f00;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #aa8f00;
  color: #1a1a2e;
  border-color: #aa8f00;
}

.btn-primary:hover {
  background-color: #8a7000;
  border-color: #8a7000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(170, 143, 0, 0.3);
}

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

.btn-secondary:hover {
  background-color: #aa8f00;
  color: #1a1a2e;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #1a1a2e;
}

.btn-small {
  padding: 0.625rem 1.5rem;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

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

.section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.section.dark {
  background-color: #1a1a2e;
  color: #ffffff;
}

.section.dark p {
  color: #d0d0e0;
}

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

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

.section-header p {
  font-size: 1.1rem;
  color: #4a4a6a;
  max-width: 600px;
  margin: 0 auto;
}

.section.dark .section-header p {
  color: #d0d0e0;
}

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

.card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-top: 4px solid #aa8f00;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.15);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  fill: #aa8f00;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.card-description {
  color: #4a4a6a;
  margin-bottom: 1.5rem;
