/* CSS DESIGN SYSTEM FOR REDLEAF JACKPOTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary-deep-blue: #132E6B;
  --primary-deep-blue-hover: #0D2354;
  --accent-orange: #F68026;
  --accent-orange-hover: #E06E16;
  --background-peach: #FFF5E6;
  --background-light-gray: #F0F4F8;
  --white: #FFFFFF;
  --text-dark: #0B132B;
  --text-body: #4A5568;
  --text-light-gray: #A0AEC0;
  --border-light: #E2E8F0;
  --border-dark: #334E8A;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;

  /* Shadows */
  --shadow-light: 0 2px 8px rgba(19, 46, 107, 0.04);
  --shadow-medium: 0 8px 24px rgba(19, 46, 107, 0.08);
  --shadow-large: 0 16px 48px rgba(19, 46, 107, 0.12);
  --shadow-inset-primary: inset 0 0 0 2px #132E6B;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'Poppins', system-ui, sans-serif;
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-dark);
}

h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-dark);
}

h3 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--text-dark);
}

h4 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--text-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

p {
  margin-bottom: var(--space-md);
}

/* Common Layout Components */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-lg);
  padding-left: var(--space-lg);
}

/* Navbar */
.navbar-header {
  background-color: var(--primary-deep-blue);
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-light);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-scrolled {
  background-color: rgba(19, 46, 107, 0.95);
  box-shadow: var(--shadow-medium);
}

.navbar-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white);
  font-weight: 800;
  font-size: 22px;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.5px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-orange);
  border-bottom-color: var(--accent-orange);
}

/* Buttons */
.btn-primary {
  background-color: var(--accent-orange);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary-pill {
  border-radius: var(--radius-full);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-deep-blue);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--primary-deep-blue);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background-color: var(--primary-deep-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary-deep-blue);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: var(--space-xs);
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.mobile-nav-panel {
  display: none;
  background-color: var(--primary-deep-blue);
  border-top: 1px solid var(--border-dark);
  padding: var(--space-md) var(--space-lg);
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: var(--shadow-medium);
}

.mobile-nav-panel.open {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  padding: var(--space-sm) 0;
  display: block;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--accent-orange);
}

/* Hero Section */
.hero-section {
  background-color: var(--primary-deep-blue);
  background-image: linear-gradient(135deg, var(--primary-deep-blue) 0%, #0d204d 100%);
  padding: var(--space-4xl) 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(246, 128, 38, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero-title {
  color: var(--white);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.hero-cta-group {
  display: flex;
  gap: var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  background-color: rgba(246, 128, 38, 0.2);
  color: var(--accent-orange);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-collage-col {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-large);
  aspect-ratio: 4/3;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Feature Badges Container */
.feature-badges-bar {
  background-color: var(--background-peach);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  margin-top: var(--space-3xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  box-shadow: var(--shadow-medium);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--primary-deep-blue);
  font-weight: 600;
  font-size: 15px;
}

.badge-item svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-orange);
  flex-shrink: 0;
}

/* Info Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl) auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.section-subtitle {
  color: var(--accent-orange);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-body);
}

/* Stats Section */
.stats-section {
  padding: var(--space-4xl) 0;
  background-color: var(--background-light-gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stat-card {
  background-color: var(--background-peach);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
  background-color: var(--white);
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-deep-blue);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-body);
  font-weight: 500;
}

/* Services Grid & Cards */
.services-section {
  padding: var(--space-4xl) 0;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  box-shadow: var(--shadow-light);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border-light);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.service-icon-container {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(19, 46, 107, 0.05);
}

.service-icon-container svg {
  width: 28px;
  height: 28px;
  fill: var(--primary-deep-blue);
}

.service-title {
  font-size: 20px;
  font-weight: 600;
}

.service-description {
  font-size: 15px;
  color: var(--text-body);
  flex-grow: 1;
}

.service-cta-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-deep-blue);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  align-self: flex-start;
}

.service-cta-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.service-card:hover .service-cta-link svg {
  transform: translateX(4px);
}

/* Service Card States */
.service-card.state-default-white {
  background-color: var(--white);
}

.service-card.state-variant-blue {
  background-color: var(--primary-deep-blue);
  color: var(--white);
  border-color: var(--border-dark);
}

.service-card.state-variant-blue .service-title {
  color: var(--white);
}

.service-card.state-variant-blue .service-description {
  color: rgba(255, 255, 255, 0.8);
}

.service-card.state-variant-blue .service-icon-container {
  background-color: rgba(255, 255, 255, 0.1);
}

.service-card.state-variant-blue .service-icon-container svg {
  fill: var(--white);
}

.service-card.state-variant-blue .service-cta-link {
  color: var(--accent-orange);
}

.service-card.state-variant-orange {
  background-color: var(--accent-orange);
  color: var(--white);
  border-color: var(--accent-orange);
}

.service-card.state-variant-orange .service-title {
  color: var(--white);
}

.service-card.state-variant-orange .service-description {
  color: rgba(255, 255, 255, 0.85);
}

.service-card.state-variant-orange .service-icon-container {
  background-color: rgba(255, 255, 255, 0.15);
}

.service-card.state-variant-orange .service-icon-container svg {
  fill: var(--white);
}

.service-card.state-variant-orange .service-cta-link {
  color: var(--white);
}

/* Process Steps (How it Works) */
.process-section {
  padding: var(--space-4xl) 0;
  background-color: var(--background-light-gray);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.process-card {
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.process-step-badge {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.process-card-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  margin-top: var(--space-xs);
}

.process-card.state-active {
  background-color: var(--white);
  box-shadow: var(--shadow-medium);
}

.process-card.state-active .process-step-badge {
  background-color: var(--primary-deep-blue);
  color: var(--white);
}

.process-card.state-active .process-card-icon svg {
  fill: var(--primary-deep-blue);
}

.process-card.state-highlighted {
  background-color: var(--accent-orange);
  color: var(--white);
  border-color: var(--accent-orange);
}

.process-card.state-highlighted h4 {
  color: var(--white);
}

.process-card.state-highlighted .process-step-badge {
  background-color: var(--white);
  color: var(--accent-orange);
}

.process-card.state-highlighted .process-card-icon svg {
  fill: var(--white);
}

.process-card.state-highlighted .process-description {
  color: var(--white);
}

.process-card.state-default {
  background-color: var(--primary-deep-blue);
  color: var(--white);
  border-color: var(--primary-deep-blue);
}

.process-card.state-default h4 {
  color: var(--white);
}

.process-card.state-default .process-step-badge {
  background-color: var(--white);
  color: var(--primary-deep-blue);
}

.process-card.state-default .process-card-icon svg {
  fill: var(--white);
}

.process-card.state-default .process-description {
  color: rgba(255, 255, 255, 0.7);
}

/* Reviews Styling (Game Reviews page) */
.reviews-section {
  padding: var(--space-4xl) 0;
}

.reviews-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.review-card-item {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: pointer;
}

.review-card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-deep-blue);
}

.review-card-media {
  height: 220px;
  background-color: var(--background-peach);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.review-card-media-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #132E6B 0%, #F68026 100%);
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 0;
}

.review-card-media svg {
  width: 64px;
  height: 64px;
  fill: var(--primary-deep-blue);
  z-index: 1;
}

.review-card-body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-grow: 1;
}

.review-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-card-genre {
  background-color: rgba(19, 46, 107, 0.08);
  color: var(--primary-deep-blue);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
}

.review-card-platform {
  font-size: 13px;
  color: var(--text-light-gray);
  font-weight: 600;
}

.review-card-title {
  margin-top: var(--space-xs);
}

.review-card-excerpt {
  color: var(--text-body);
  font-size: 15px;
  flex-grow: 1;
}

.review-card-score {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.review-card-score svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-orange);
}

.review-card-score span {
  font-weight: 700;
  color: var(--primary-deep-blue);
  font-size: 16px;
}

.review-card-cta {
  color: var(--accent-orange);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

/* Modal Popup window */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.modal-overlay.open {
  display: flex;
}

.modal-window {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-large);
  position: relative;
}

.modal-header-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--accent-orange) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header-image svg {
  width: 60px;
  height: 60px;
  fill: var(--white);
}

.modal-close-btn {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.2s;
}

.modal-close-btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.modal-close-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.modal-content-body {
  padding: var(--space-xl);
}

.modal-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.modal-genre-tag {
  background-color: rgba(246, 128, 38, 0.1);
  color: var(--accent-orange);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
}

.modal-platform-tag {
  font-size: 14px;
  color: var(--text-light-gray);
  font-weight: 600;
}

.modal-title {
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}

.modal-score-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.modal-score-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-orange);
}

.modal-score-badge span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-deep-blue);
}

.modal-full-text {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
}

.modal-full-text p {
  margin-bottom: var(--space-md);
}

/* Contact Page Form & Layout */
.contact-section {
  padding: var(--space-4xl) 0;
  background-color: var(--white);
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
}

.contact-form-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-light);
}

.contact-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px var(--space-md);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  background-color: var(--background-light-gray);
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-deep-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(19, 46, 107, 0.10);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.info-item-card {
  display: flex;
  gap: var(--space-md);
}

.info-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: rgba(246, 128, 38, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon-box svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-orange);
}

.info-card-content h3 {
  font-size: 18px;
  margin-bottom: var(--space-xs);
}

.info-card-content p {
  font-size: 15px;
  color: var(--text-body);
  margin: 0;
}

.map-mockup-box {
  background-color: var(--background-light-gray);
  border: 1px dashed var(--text-light-gray);
  border-radius: var(--radius-lg);
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}

.map-mockup-box svg {
  width: 48px;
  height: 48px;
  fill: var(--primary-deep-blue);
  margin-bottom: var(--space-sm);
}

.map-mockup-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-deep-blue);
}

/* Play Now & Session Picks Page styling */
.play-section {
  padding: var(--space-4xl) 0;
}

.play-picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.play-pick-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.play-pick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-orange);
}

.play-pick-visual {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-deep-blue-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-pick-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 80%);
}

.play-pick-visual svg {
  width: 56px;
  height: 56px;
  fill: var(--accent-orange);
}

.play-pick-body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-grow: 1;
}

.play-pick-duration-badge {
  display: inline-flex;
  align-self: flex-start;
  background-color: rgba(246, 128, 38, 0.12);
  color: var(--accent-orange);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13px;
}

.play-pick-title {
  margin: 0;
}

.play-pick-description {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 0;
}

.play-picks-cta-box {
  margin-top: var(--space-3xl);
  text-align: center;
  background-color: var(--background-peach);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
}

.play-picks-cta-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
}

/* Privacy & General Text Page Layout */
.text-page-section {
  padding: var(--space-4xl) 0;
}

.text-page-layout {
  max-width: 800px;
  margin: 0 auto;
}

.text-page-title {
  margin-bottom: var(--space-xl);
}

.text-page-content h2 {
  font-size: 24px;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.text-page-content p {
  margin-bottom: var(--space-md);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
}

.text-page-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.text-page-content li {
  margin-bottom: var(--space-xs);
  color: var(--text-body);
}

/* Footer styling */
.site-footer {
  background-color: var(--primary-deep-blue);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-lg) 0;
  border-top: 4px solid var(--accent-orange);
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-logo-title {
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.5px;
}

.footer-col-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-orange);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link-item a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding: 2px 0;
}

.footer-link-item a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  color: var(--accent-orange);
  background-color: var(--white);
  transform: scale(1.1);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.footer-copy-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-identity-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* Page Intro Block */
.page-intro-section {
  padding: var(--space-3xl) 0 var(--space-xl) 0;
  background-color: var(--background-light-gray);
  border-bottom: 1px solid var(--border-light);
}

.page-intro-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.page-intro-badge {
  display: inline-flex;
  align-self: flex-start;
  background-color: rgba(19, 46, 107, 0.08);
  color: var(--primary-deep-blue);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-intro-title {
  margin: 0;
}

.page-intro-desc {
  font-size: 18px;
  color: var(--text-body);
  max-width: 800px;
  margin-bottom: 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }
  .hero-grid {
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }

  /* Grid Layouts */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .hero-collage-col {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .feature-badges-bar {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .reviews-row {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .play-picks-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .footer-columns-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 28px;
  }
  .feature-badges-bar {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .contact-form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-columns-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .hero-cta-group {
    flex-direction: column;
  }
}
