/* ========================================
   BETBAY.SHOP - CASINO DESIGN & PSYCHOLOGY
   Responsive CSS Stylesheet
   ======================================== */

/* ========================================
   RESET & GLOBAL STYLES
   ======================================== */

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

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

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

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

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

h2 {
  font-size: 2.75rem;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.35rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

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

a:hover {
  color: #ab8e2c;
}

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

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

.section-divider {
  height: 3px;
  background: linear-gradient(90deg, #1a1a2e 0%, #ab8e2c 50%, #1a1a2e 100%);
  margin: 4rem 0;
  width: 100%;
}

.accent-text {
  color: #ab8e2c;
  font-weight: 600;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

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

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

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

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

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

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

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

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ab8e2c;
  letter-spacing: 1px;
}

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

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

.nav li a {
  color: #f8f9fa;
  font-weight: 500;
  font-size: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  display: block;
}

.nav li a:hover {
  color: #ab8e2c;
  border-bottom-color: #ab8e2c;
}

.nav li a.active {
  color: #ab8e2c;
  border-bottom-color: #ab8e2c;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ab8e2c;
  font-size: 1.5rem;
  cursor: pointer;
}

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(171, 142, 44, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(171, 142, 44, 0.02);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #f0f0f0;
}

.hero-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero .casino-icon {
  margin-right: 16px;
}

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

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #ab8e2c;
  background-color: #ab8e2c;
  color: #1a1a2e;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing: 0.5px;
}

.btn:hover {
  background-color: #1a1a2e;
  color: #ab8e2c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(171, 142, 44, 0.3);
}

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

.btn-secondary:hover {
  background-color: #ab8e2c;
  color: #1a1a2e;
}

.btn-large {
  padding: 1.125rem 3rem;
  font-size: 1.125rem;
}

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

/* ========================================
   SECTION STYLES
   ======================================== */

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

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

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

.section-subtitle {
  font-size: 1.125rem;
  color: #0f3460;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-description {
  color: #555;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========================================
   CARD STYLES
   ======================================== */

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

.card {
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.08);
  border-top: 4px solid #ab8e2c;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card-image svg {
  width: 64px;
  height: 64px;
  fill: #ab8e2c;
  opacity: 0.8;
}

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
