/* ==============================
   Login Module - Twisted Metal Theme
   Based on themes/themeBuilder/css/twisted-metal.css
   ============================== */
@import url("https://fonts.googleapis.com/css2?family=Quantico:wght@400;700&family=Electrolize:wght@400;700&family=Bangers&display=swap");

/* Professional Color Variables - Modern Industrial Theme */
:root {
  /* Base Colors - Sophisticated Dark Theme */
  --industrial-dark: #1a1a1a;
  --industrial-darker: #0f0f0f;
  --industrial-medium: #2c2c2c;
  --industrial-light: #3b4a5c;

  /* Text Colors - Improved Readability */
  --text-primary: #e0e0e0;
  --text-secondary: #b8c5d1;
  --text-muted: #8a9ab0;
  --text-accent: var(--accent-orange-dark);

  /* Professional Accent Colors */
  --accent-orange-dark: #4a90e2;
  --accent-secondary: #5a5a7a;
  --accent-tertiary: #4a6a5a;
  --accent-warning: #aa7a26;
  --accent-danger: #aa5550;
  --accent-dark: #2a2a2a;
  --accent-dark-2: #1a1a1a;

  /* Legacy aliases for backward compatibility */
  --accent-orange: var(--accent-warning);
  --accent-orange-dark: #6b1f09;
  --accent-yellow: var(--accent-orange-dark);
  --accent-gold: var(--accent-secondary);
  --accent-green: var(--accent-tertiary);
  --accent-red-dark: var(--accent-danger);

  /* Border & Shadow Variables */
  --border-silver: 1px solid rgba(102, 112, 121, 0.15);
  --border-steel: #5a6c7d;
  --border-dark: #1a1a1a;
  --shadow: rgba(15, 20, 25, 0.8);
  --shadow-glow: rgba(74, 114, 226, 0.15);

  /* Status Colors */
  --success-color: #50c878;
  --warning-color: #ffa726;
  --danger-color: #ef5350;
  --info-color: #64b5f6;
}

/* General Body */
body {
  background-color: var(--industrial-dark);
  color: var(--text-primary);
  font-family: "Quantico", sans-serif;
  line-height: 1.5;
}

.game-container {
  padding: 0 !important;
  margin: 0 !important;
}

.game-area { 
  padding: 0 !important;
  margin: 0 !important;
}

.panel {
  padding: 0 !important;
  margin: 0 !important;
}

.panel-default {
  padding: 0 !important;
  margin: 0 !important;
}

.panel-body {
  padding: 0 !important;
  margin: 0 !important;
}

/* Sticky Header */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--industrial-dark) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95) !important;
  backdrop-filter: blur(10px);
}

/* Hero Section - Refined */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%),
    url('/themes/themeBuilder/images/hero-bg.svg') no-repeat center center/cover;
  color: var(--text-primary);
  text-align: center;
  padding: 200px 0 150px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle vignette effect for depth */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Screenshots Section */
.screenshots-section {
  padding: 20px 0;
  background-color: var(--industrial-darker);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  color: var(--accent-orange-dark);
  font-family: 'Bangers', cursive;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent-orange-dark);
}

.carousel {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
}

.carousel-item img {
  height: 500px;
  object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
  background: rgba(0, 0, 0, 0.5);
}

.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators .active {
  background-color: var(--accent-orange-dark);
}

/* Discord Section */
.discord-section {
  padding: 20px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.discord-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.discord-text h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-family: 'Bangers', cursive;
  letter-spacing: 1px;
}

.discord-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.btn-discord {
  background: var(--accent-orange-dark);
  color: white !important;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-orange-dark);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.btn-discord:hover {
  background: #ff8555;
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
}

/* LANDING PAGE SECTIONS */
/* Base Styles for Landing Page */
:root {
  --brand-dark-orange: #6b1f09;
  --section-spacing: 150px;
  --container-max-width: 1400px;
  --section-bg-1: #0f0f0f;
  --section-bg-2: #1a1a1a;
  --header-font-size: 3rem;
}

/* Section Spacing */
.hero-section,
.features-grid-section,
.why-different-section,
.settlement-section,
.how-to-join-section,
.sas-section,
.arena-section,
.roadmap-section,
.founding-benefits-section,
.commitment-section,
.faq-section,
.community-section,
.footer-links-section {
  padding: var(--section-spacing) 0;
}

/* Container Max Width */
.hero-section .container,
.features-grid-section .container,
.why-different-section .container,
.settlement-section .container,
.how-to-join-section .container,
.sas-section .container,
.arena-section .container,
.roadmap-section .container,
.founding-benefits-section .container,
.commitment-section .container,
.faq-section .container,
.community-section .container,
.footer-links-section .container {
  max-width: var(--container-max-width);
}

/* Typography */
.section-title {
  font-size: var(--header-font-size);
  font-weight: 900;
  color: var(--brand-dark-orange);
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 60px;
}

/* HERO SECTION */
/* Status Badge - More refined positioning and styling */
.status-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  background: linear-gradient(135deg, var(--brand-dark-orange) 0%, #8b2a0a 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(107, 31, 9, 0.5);
  z-index: 3;
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* Headline - Improved typography and spacing */
.hero-section h1 {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--brand-dark-orange);
  margin-bottom: 2rem;
  text-shadow: 
    0 0 30px rgba(107, 31, 9, 0.6),
    3px 3px 6px rgba(0, 0, 0, 0.8);
  font-family: 'Bangers', cursive;
  letter-spacing: 4px;
  line-height: 1.1;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Lead text - Better readability */
.hero-section .lead {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3.5rem;
  line-height: 1.6;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* CTA Button Container */
.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Primary Button - Featured CTA */
.hero-cta .btn-primary {
  background: linear-gradient(135deg, var(--brand-dark-orange) 0%, #c44820 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 18px 45px;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 6px;
  box-shadow: 
    0 8px 25px rgba(107, 31, 9, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 220px;
}

.hero-cta .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.hero-cta .btn-primary:hover::before {
  left: 100%;
}

.hero-cta .btn-primary:hover {
  background: linear-gradient(135deg, #c44820 0%, var(--brand-dark-orange) 100%);
  transform: translateY(-3px);
  box-shadow: 
    0 12px 35px rgba(107, 31, 9, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-cta .btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 
    0 6px 20px rgba(107, 31, 9, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Secondary Buttons - Outline style */
.hero-cta .btn-outline-light {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid var(--brand-dark-orange);
  color: white;
  padding: 16px 38px;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 200px;
}

.hero-cta .btn-outline-light:hover {
  background: var(--brand-dark-orange);
  border-color: var(--brand-dark-orange);
  color: white;
  transform: translateY(-3px);
  box-shadow: 
    0 10px 30px rgba(107, 31, 9, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-cta .btn-outline-light:active {
  transform: translateY(-1px);
}

/* HOW TO JOIN CTA - Hero button styles */
.how-to-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 80px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.how-to-cta .btn-primary {
  background: linear-gradient(135deg, var(--brand-dark-orange) 0%, #c44820 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 18px 45px;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 6px;
  box-shadow:
    0 8px 25px rgba(107, 31, 9, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 220px;
}

.how-to-cta .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.how-to-cta .btn-primary:hover::before {
  left: 100%;
}

.how-to-cta .btn-primary:hover {
  background: linear-gradient(135deg, #c44820 0%, var(--brand-dark-orange) 100%);
  transform: translateY(-3px);
  box-shadow:
    0 12px 35px rgba(107, 31, 9, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.how-to-cta .btn-primary:active {
  transform: translateY(-1px);
  box-shadow:
    0 6px 20px rgba(107, 31, 9, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Button Icons - Better alignment */
.hero-cta .btn i {
  margin-right: 10px;
  vertical-align: middle;
  font-size: 1.1em;
}

/* Small text - Better visibility */
.hero-smalltext {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 24px;
  border-radius: 25px;
  display: inline-block;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* FEATURES GRID SECTION - Refined */
.features-grid-section {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.95) 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.features-grid-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(107, 31, 9, 0.03) 2px, rgba(107, 31, 9, 0.03) 4px);
  pointer-events: none;
}

/* how to join GRID SECTION - Refined */
.how-to-join-section {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.95) 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.how-to-join-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(107, 31, 9, 0.03) 2px, rgba(107, 31, 9, 0.03) 4px);
  pointer-events: none;
}

/* Glowing accent at top */
.how-to-join-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-dark-orange), transparent);
  box-shadow: 0 0 30px rgba(107, 31, 9, 0.6);
}


/* Section Headers */
.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-dark-orange);
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 0 25px rgba(107, 31, 9, 0.5);
  letter-spacing: 3px;
  font-family: 'Bangers', cursive;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 70px;
  position: relative;
  z-index: 1;
}

/* Feature Box - Enhanced Card Design */
.feature-box {
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
  border: 2px solid rgba(107, 31, 9, 0.3);
  border-radius: 12px;
  padding: 45px 35px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

/* Subtle glow effect on hover */
.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(107, 31, 9, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-box:hover::before {
  opacity: 1;
}

/* Top accent border that grows on hover */
.feature-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-dark-orange), transparent);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover::after {
  width: 100%;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 15px 40px rgba(107, 31, 9, 0.4),
    0 0 60px rgba(107, 31, 9, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(107, 31, 9, 0.6);
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%);
}

/* Feature Icon - Enhanced styling */
.feature-icon {
  font-size: 3.5rem;
  color: var(--brand-dark-orange);
  margin-bottom: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  position: relative;
}

/* Icon background circle */
.feature-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(107, 31, 9, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
  transform: scale(1.15) rotateY(360deg);
  filter: drop-shadow(0 0 20px rgba(107, 31, 9, 0.8));
}

.feature-box:hover .feature-icon::before {
  background: radial-gradient(circle, rgba(107, 31, 9, 0.4) 0%, transparent 70%);
  transform: scale(1.3);
}

.feature-icon i {
  position: relative;
  z-index: 1;
}

/* Feature Title */
.feature-box h3 {
  color: var(--brand-dark-orange);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.feature-box:hover h3 {
  color: #ff8555;
  text-shadow: 0 0 15px rgba(107, 31, 9, 0.8);
}

/* Feature Description */
.feature-box p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  transition: color 0.3s ease;
  margin: 0;
}

.feature-box:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* Staggered animation on scroll (optional - requires JS) */
.feature-box {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.feature-box:nth-child(1) { animation-delay: 0.1s; }
.feature-box:nth-child(2) { animation-delay: 0.2s; }
.feature-box:nth-child(3) { animation-delay: 0.3s; }
.feature-box:nth-child(4) { animation-delay: 0.4s; }
.feature-box:nth-child(5) { animation-delay: 0.5s; }
.feature-box:nth-child(6) { animation-delay: 0.6s; }
.feature-box:nth-child(7) { animation-delay: 0.7s; }
.feature-box:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* WHY WE'RE DIFFERENT SECTION - Refined */
.why-different-section {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.95) 100%);
  position: relative;
  overflow: hidden;
}

/* Diagonal accent lines background */
.why-different-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(107, 31, 9, 0.03) 2px, rgba(107, 31, 9, 0.03) 4px);
  pointer-events: none;
}

/* Glowing accent at top */
.why-different-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-dark-orange), transparent);
  box-shadow: 0 0 30px rgba(107, 31, 9, 0.6);
}

/* Section Headers */
.why-different-section .section-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-dark-orange);
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(107, 31, 9, 0.6);
  letter-spacing: 3px;
  font-family: 'Bangers', cursive;
  position: relative;
  z-index: 1;
}

.why-different-section .section-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 0;
  font-weight: 300;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* Why Different Grid */
.why-different-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

/* Why Box - Premium Card Design */
.why-box {
  text-align: center;
  padding: 50px 40px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
  border-radius: 16px;
  border: 2px solid rgba(107, 31, 9, 0.2);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Animated corner accents */
.why-box::before,
.why-box::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--brand-dark-orange);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.3;
}

.why-box::before {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.why-box::after {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.why-box:hover::before,
.why-box:hover::after {
  width: 60px;
  height: 60px;
  opacity: 1;
  border-width: 3px;
}

.why-box:hover::before {
  top: 15px;
  left: 15px;
}

.why-box:hover::after {
  bottom: 15px;
  right: 15px;
}

/* Glowing background on hover */
.why-box > *:not(.why-icon)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(107, 31, 9, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.why-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(107, 31, 9, 0.4),
    0 0 80px rgba(107, 31, 9, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(107, 31, 9, 0.5);
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Why Icon - Enhanced with multiple layers */
.why-icon {
  font-size: 4rem;
  color: var(--brand-dark-orange);
  margin-bottom: 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  position: relative;
}

/* Outer glow ring */
.why-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 31, 9, 0.3) 0%, transparent 70%);
  transition: all 0.5s ease;
}

/* Inner pulse ring */
.why-icon::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 2px solid var(--brand-dark-orange);
  opacity: 0.2;
  transition: all 0.5s ease;
}

.why-box:hover .why-icon {
  transform: scale(1.2) rotateY(360deg);
  filter: drop-shadow(0 0 25px rgba(107, 31, 9, 1));
}

.why-box:hover .why-icon::before {
  background: radial-gradient(circle, rgba(107, 31, 9, 0.5) 0%, transparent 70%);
  transform: scale(1.4);
}

.why-box:hover .why-icon::after {
  transform: scale(1.3);
  opacity: 0.5;
  border-width: 3px;
}

.why-icon i {
  position: relative;
  z-index: 1;
}

/* Why Box Title */
.why-box h3 {
  color: var(--brand-dark-orange);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
}

/* Underline accent that appears on hover */
.why-box h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-dark-orange), transparent);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-box:hover h3 {
  color: #ff8555;
  text-shadow: 0 0 20px rgba(107, 31, 9, 0.9);
  transform: translateY(-3px);
}

.why-box:hover h3::after {
  width: 80%;
}

/* Why Box Description */
.why-box p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  line-height: 1.8;
  transition: all 0.4s ease;
  margin: 0;
  position: relative;
}

.why-box:hover p {
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

/* Staggered entrance animations */
.why-box {
  opacity: 0;
  animation: fadeInScale 0.8s ease-out forwards;
}

.why-box:nth-child(1) { animation-delay: 0.1s; }
.why-box:nth-child(2) { animation-delay: 0.2s; }
.why-box:nth-child(3) { animation-delay: 0.3s; }
.why-box:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* SETTLEMENT, SAS, ARENA SECTIONS - Refined */
.settlement-section,
.sas-section,
.arena-section,
.commitment-section,
.faq-section,
.community-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.85) 100%);
  position: relative;
  overflow: hidden;
}

/* Alternating background styles for visual variety */
.settlement-section {
  background: 
    linear-gradient(135deg, rgba(107, 31, 9, 0.08) 0%, rgba(0,0,0,0.9) 50%),
    linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.95) 100%);
}

.sas-section {
  background: 
    linear-gradient(225deg, rgba(107, 31, 9, 0.08) 0%, rgba(0,0,0,0.9) 50%),
    linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.85) 100%);
}

.arena-section {
  background: 
    linear-gradient(135deg, rgba(107, 31, 9, 0.08) 0%, rgba(0,0,0,0.9) 50%),
    linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.95) 100%);
}

/* Subtle animated background pattern */
.settlement-section::before,
.sas-section::before,
.arena-section::before,
.commitment-section::before,
.faq-section::before,
.community-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(107, 31, 9, 0.02) 50px, rgba(107, 31, 9, 0.02) 52px);
  pointer-events: none;
  opacity: 0.5;
}

/* Section Title Styling */
.settlement-section .section-title,
.sas-section .section-title,
.arena-section .section-title,
.commitment-section .section-title,
.faq-section .section-title,
.community-section .section-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-dark-orange);
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 
    0 0 30px rgba(107, 31, 9, 0.6),
    2px 2px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 3px;
  font-family: 'Bangers', cursive;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}

/* Decorative line under title */
.settlement-section .section-title::after,
.sas-section .section-title::after,
.arena-section .section-title::after,
.commitment-section .section-title::after,
.faq-section .section-title::after,
.community-section .section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--brand-dark-orange), transparent);
  margin: 20px auto 0;
  box-shadow: 0 0 10px rgba(107, 31, 9, 0.5);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Content Container */
.settlement-content,
.sas-content,
.arena-content,
.commitment-content,
.faq-content,
.community-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Glowing accent at top */
.settlement-section::after,
.sas-section::after,
.arena-section::after,
.commitment-section::after,
.faq-section::after,
.community-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-dark-orange), transparent);
  box-shadow: 0 0 30px rgba(107, 31, 9, 0.6);
}

/* Description Text */
.settlement-content p,
.sas-content p,
.arena-content p,
.commitment-content p,
.faq-content p,
.community-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 50px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  padding: 0 20px;
  font-weight: 400;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Screenshot Container with enhanced effects */
.screenshot {
  max-width: 100%;
  height: auto;
  border: 3px solid var(--brand-dark-orange);
  border-radius: 12px;
  box-shadow: 
    0 15px 50px rgba(107, 31, 9, 0.4),
    0 0 40px rgba(107, 31, 9, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px;
  animation: fadeInScale 0.8s ease-out 0.4s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Outer glow container for screenshot */
.screenshot::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.3), transparent);
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.screenshot:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 
    0 20px 60px rgba(107, 31, 9, 0.5),
    0 0 60px rgba(107, 31, 9, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: #ff8555;
}

.screenshot:hover::before {
  opacity: 1;
}

/* Optional: Add a subtle reflection effect */
.screenshot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  border-radius: 12px 12px 0 0;
  pointer-events: none;
}

/* HOW TO JOIN SECTION */
.how-to-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-top: 80px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

/* Step Box — Premium Card Design */
.step-box {
  text-align: center;
  padding: 50px 40px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
  border-radius: 16px;
  border: 2px solid rgba(107, 31, 9, 0.2);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Animated corner accents */
.step-box::before,
.step-box::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--brand-dark-orange);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.3;
}

.step-box::before {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.step-box::after {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.step-box:hover::before,
.step-box:hover::after {
  width: 60px;
  height: 60px;
  opacity: 1;
  border-width: 3px;
}

.step-box:hover::before {
  top: 15px;
  left: 15px;
}

.step-box:hover::after {
  bottom: 15px;
  right: 15px;
}

/* Glowing background on hover */
.step-box > *:not(.step-icon)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(107, 31, 9, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.step-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(107, 31, 9, 0.4),
    0 0 80px rgba(107, 31, 9, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(107, 31, 9, 0.5);
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Step Number */
.step-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  background: var(--brand-dark-orange);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  position: absolute;
  top: -0px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(107, 31, 9, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.15);
  z-index: 5;
}

/* Step Icon */
.step-icon {
  font-size: 3.5rem;
  color: var(--brand-dark-orange);
  margin-bottom: 30px;
  position: relative;
  width: 110px;
  height: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Outer glow ring */
.step-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 31, 9, 0.3) 0%, transparent 70%);
  transition: all 0.5s ease;
}

/* Inner pulse ring */
.step-icon::after {
  content: '';
  position: absolute;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  border: 2px solid var(--brand-dark-orange);
  opacity: 0.2;
  transition: all 0.5s ease;
}

.step-box:hover .step-icon {
  transform: scale(1.2) rotateY(360deg);
  filter: drop-shadow(0 0 25px rgba(107, 31, 9, 1));
}

.step-box:hover .step-icon::before {
  background: radial-gradient(circle, rgba(107, 31, 9, 0.5) 0%, transparent 70%);
  transform: scale(1.4);
}

.step-box:hover .step-icon::after {
  transform: scale(1.3);
  opacity: 0.5;
  border-width: 3px;
}

.step-icon i {
  position: relative;
  z-index: 2;
}

/* Step Title */
.step-box h3 {
  color: var(--brand-dark-orange);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: all 0.4s ease;
}

/* Hover underline accent */
.step-box h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-dark-orange), transparent);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-box:hover h3 {
  color: #ff8555;
  text-shadow: 0 0 20px rgba(107, 31, 9, 0.9);
  transform: translateY(-3px);
}

.step-box:hover h3::after {
  width: 80%;
}

/* Description */
.step-box p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  transition: all 0.4s ease;
}

.step-box:hover p {
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

/* ROADMAP SECTION */
.roadmap-section {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.95) 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.roadmap-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(107, 31, 9, 0.03) 2px, rgba(107, 31, 9, 0.03) 4px);
  pointer-events: none;
  opacity: 0.5;
}

/* Glowing accent at top */
.roadmap-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-dark-orange), transparent);
  box-shadow: 0 0 30px rgba(107, 31, 9, 0.6);
}

.roadmap-phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.phase-box {
  text-align: center;
  padding: 50px 40px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
  border-radius: 16px;
  border: 2px solid rgba(107, 31, 9, 0.2);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Animated corner accents for phase boxes */
.phase-box::before,
.phase-box::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--brand-dark-orange);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.3;
}

.phase-box::before {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.phase-box::after {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.phase-box:hover::before,
.phase-box:hover::after {
  width: 60px;
  height: 60px;
  opacity: 1;
  border-width: 3px;
}

.phase-box:hover::before {
  top: 15px;
  left: 15px;
}

.phase-box:hover::after {
  bottom: 15px;
  right: 15px;
}

/* Glowing background on hover */
.phase-box > *:not(.phase-header)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(107, 31, 9, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.phase-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(107, 31, 9, 0.4),
    0 0 80px rgba(107, 31, 9, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(107, 31, 9, 0.5);
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.phase-live {
  border-color: #28a745;
}

.phase-dev {
  border-color: #ffc107;
}

.phase-planned {
  border-color: #6f42c1;
}

.phase-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.phase-icon {
  font-size: 4rem;
  color: var(--brand-dark-orange);
  margin-bottom: 20px;
  position: relative;
  width: 120px;
  height: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Outer glow ring */
.phase-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 31, 9, 0.3) 0%, transparent 70%);
  transition: all 0.5s ease;
}

/* Inner pulse ring */
.phase-icon::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 2px solid var(--brand-dark-orange);
  opacity: 0.2;
  transition: all 0.5s ease;
}

.phase-box:hover .phase-icon {
  transform: scale(1.2) rotateY(360deg);
  filter: drop-shadow(0 0 25px rgba(107, 31, 9, 1));
}

.phase-box:hover .phase-icon::before {
  background: radial-gradient(circle, rgba(107, 31, 9, 0.5) 0%, transparent 70%);
  transform: scale(1.4);
}

.phase-box:hover .phase-icon::after {
  transform: scale(1.3);
  opacity: 0.5;
  border-width: 3px;
}

.phase-icon i {
  position: relative;
  z-index: 1;
}

.phase-live .phase-icon {
  color: #28a745;
}

.phase-dev .phase-icon {
  color: #ffc107;
}

.phase-planned .phase-icon {
  color: #6f42c1;
}

.phase-box h3 {
  color: var(--text-primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  transition: all 0.4s ease;
}

/* Underline accent that appears on hover for phase headers */
.phase-box h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-dark-orange), transparent);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phase-box:hover h3 {
  color: var(--brand-dark-orange);
  transform: translateY(-3px);
}

.phase-box:hover h3::after {
  width: 80%;
}

.phase-box small {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Staggered entrance animations for phase boxes */
.phase-box {
  opacity: 0;
  animation: fadeInScale 0.8s ease-out forwards;
}

.phase-box:nth-child(1) { animation-delay: 0.1s; }
.phase-box:nth-child(2) { animation-delay: 0.3s; }
.phase-box:nth-child(3) { animation-delay: 0.5s; }

.phase-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phase-box li {
  padding: 8px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.phase-box li:last-child {
  border-bottom: none;
}

.roadmap-footer {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(107, 31, 9, 0.2);
}

.roadmap-footer p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin: 0;
}

/* FOUNDING BENEFITS SECTION */
.founding-benefits-section {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.95) 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.founding-benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(107, 31, 9, 0.03) 2px, rgba(107, 31, 9, 0.03) 4px);
  pointer-events: none;
  opacity: 0.5;
}

/* Glowing accent at top */
.founding-benefits-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-dark-orange), transparent);
  box-shadow: 0 0 30px rgba(107, 31, 9, 0.6);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

/* Benefit Box — Premium Card Design */
.benefit-box {
  text-align: center;
  padding: 50px 40px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
  border-radius: 16px;
  border: 2px solid rgba(107, 31, 9, 0.2);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Animated corner accents */
.benefit-box::before,
.benefit-box::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--brand-dark-orange);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.3;
}

.benefit-box::before {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.benefit-box::after {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.benefit-box:hover::before,
.benefit-box:hover::after {
  width: 60px;
  height: 60px;
  opacity: 1;
  border-width: 3px;
}

.benefit-box:hover::before {
  top: 15px;
  left: 15px;
}

.benefit-box:hover::after {
  bottom: 15px;
  right: 15px;
}

/* Glowing background on hover */
.benefit-box > *:not(.benefit-icon)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(107, 31, 9, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.benefit-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(107, 31, 9, 0.4),
    0 0 80px rgba(107, 31, 9, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(107, 31, 9, 0.5);
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Benefit Icon - Enhanced with multiple layers */
.benefit-icon {
  font-size: 4rem;
  color: var(--brand-dark-orange);
  margin-bottom: 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  position: relative;
}

/* Outer glow ring */
.benefit-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 31, 9, 0.3) 0%, transparent 70%);
  transition: all 0.5s ease;
}

/* Inner pulse ring */
.benefit-icon::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 2px solid var(--brand-dark-orange);
  opacity: 0.2;
  transition: all 0.5s ease;
}

.benefit-box:hover .benefit-icon {
  transform: scale(1.2) rotateY(360deg);
  filter: drop-shadow(0 0 25px rgba(107, 31, 9, 1));
}

.benefit-box:hover .benefit-icon::before {
  background: radial-gradient(circle, rgba(107, 31, 9, 0.5) 0%, transparent 70%);
  transform: scale(1.4);
}

.benefit-box:hover .benefit-icon::after {
  transform: scale(1.3);
  opacity: 0.5;
  border-width: 3px;
}

.benefit-icon i {
  position: relative;
  z-index: 1;
}

/* Benefit Box Title */
.benefit-box h3 {
  color: var(--brand-dark-orange);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
}

/* Underline accent that appears on hover */
.benefit-box h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-dark-orange), transparent);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-box:hover h3 {
  color: #ff8555;
  text-shadow: 0 0 20px rgba(107, 31, 9, 0.9);
  transform: translateY(-3px);
}

.benefit-box:hover h3::after {
  width: 80%;
}

/* Benefit Box Description */
.benefit-box p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  line-height: 1.8;
  transition: all 0.4s ease;
  margin: 0;
  position: relative;
}

.benefit-box:hover p {
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

/* Staggered entrance animations */
.benefit-box {
  opacity: 0;
  animation: fadeInScale 0.8s ease-out forwards;
}

.benefit-box:nth-child(1) { animation-delay: 0.1s; }
.benefit-box:nth-child(2) { animation-delay: 0.2s; }
.benefit-box:nth-child(3) { animation-delay: 0.3s; }
.benefit-box:nth-child(4) { animation-delay: 0.4s; }

.benefits-cta {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.benefits-cta small {
  display: block;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Founding Benefits CTA - Premium Button Styling */
.benefits-cta .btn-primary {
  background: linear-gradient(135deg, var(--brand-dark-orange) 0%, #c44820 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 18px 45px;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 6px;
  box-shadow:
    0 8px 25px rgba(107, 31, 9, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 220px;
}

.benefits-cta .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.benefits-cta .btn-primary:hover::before {
  left: 100%;
}

.benefits-cta .btn-primary:hover {
  background: linear-gradient(135deg, #c44820 0%, var(--brand-dark-orange) 100%);
  transform: translateY(-3px);
  box-shadow:
    0 12px 35px rgba(107, 31, 9, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.benefits-cta .btn-primary:active {
  transform: translateY(-1px);
  box-shadow:
    0 6px 20px rgba(107, 31, 9, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* COMMITMENT SECTION */
/* Commitment Section Background Enhancements */
.commitment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(107, 31, 9, 0.03) 2px, rgba(107, 31, 9, 0.03) 4px);
  pointer-events: none;
  opacity: 0.5;
}

.commitment-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-dark-orange), transparent);
  box-shadow: 0 0 30px rgba(107, 31, 9, 0.6);
}

.commitment-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.commitment-content p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.commitment-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Commitment Point — Premium Card Design */
.commitment-point {
  text-align: center;
  padding: 50px 40px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
  border-radius: 16px;
  border: 2px solid rgba(107, 31, 9, 0.2);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Animated corner accents */
.commitment-point::before,
.commitment-point::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--brand-dark-orange);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.3;
}

.commitment-point::before {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.commitment-point::after {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.commitment-point:hover::before,
.commitment-point:hover::after {
  width: 60px;
  height: 60px;
  opacity: 1;
  border-width: 3px;
}

.commitment-point:hover::before {
  top: 15px;
  left: 15px;
}

.commitment-point:hover::after {
  bottom: 15px;
  right: 15px;
}

/* Glowing background on hover */
.commitment-point > *:not(.commitment-icon)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(107, 31, 9, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.commitment-point:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(107, 31, 9, 0.4),
    0 0 80px rgba(107, 31, 9, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(107, 31, 9, 0.5);
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Staggered entrance animations */
.commitment-point {
  opacity: 0;
  animation: fadeInScale 0.8s ease-out forwards;
}

.commitment-point:nth-child(1) { animation-delay: 0.1s; }
.commitment-point:nth-child(2) { animation-delay: 0.2s; }
.commitment-point:nth-child(3) { animation-delay: 0.3s; }

.commitment-icon {
  font-size: 3rem;
  color: var(--brand-dark-orange);
  margin-bottom: 25px;
}

.commitment-point h3 {
  color: var(--brand-dark-orange);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.commitment-point p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.commitment-footer {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(107, 31, 9, 0.2);
}

.commitment-footer p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin: 0;
}

/* FAQ SECTION */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.faq-item {
  text-align: center;
  padding: 50px 40px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
  border-radius: 16px;
  border: 2px solid rgba(107, 31, 9, 0.2);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Animated corner accents */
.faq-item::before,
.faq-item::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--brand-dark-orange);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.3;
}

.faq-item::before {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.faq-item::after {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.faq-item:hover::before,
.faq-item:hover::after {
  width: 60px;
  height: 60px;
  opacity: 1;
  border-width: 3px;
}

.faq-item:hover::before {
  top: 15px;
  left: 15px;
}

.faq-item:hover::after {
  bottom: 15px;
  right: 15px;
}

/* Glowing background on hover */
.faq-item > *:not(.faq-icon)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(107, 31, 9, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.faq-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(107, 31, 9, 0.4),
    0 0 80px rgba(107, 31, 9, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(107, 31, 9, 0.5);
  background: linear-gradient(135deg, rgba(107, 31, 9, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.faq-item h3 {
  color: var(--brand-dark-orange);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.faq-item strong {
  color: var(--text-primary);
}

.faq-cta {
  text-align: center;
  margin-top: 60px;
}

.faq-cta p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* COMMUNITY SECTION */
.community-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.community-icon {
  margin-bottom: 40px;
  color: var(--brand-dark-orange);
}

.community-text p {
  color: var(--text-secondary);
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.community-stats {
  margin-bottom: 40px;
}

.stat-item {
  display: inline-block;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(107, 31, 9, 0.2);
}

/* Since these are inline stat badges, they don't need the full card styling like why-box */
/* The current styling is appropriate for their use case as compact statistic tags */

.btn-discord {
  background: #5865f2 !important;
  border-color: #5865f2 !important;
  color: white !important;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-discord:hover {
  background: #4752c4 !important;
  border-color: #4752c4 !important;
  color: white !important;
}

.cta-small {
  display: block;
  color: var(--text-muted);
  margin-top: 10px;
}

/* STICKY FOOTER - Landing Page Footer Links */
.footer-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-links .footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  padding: 0.25rem 0.5rem;
}

.footer-links .footer-link:hover {
  color: var(--brand-dark-orange);
  text-decoration: underline;
}

/* Responsive footer links */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .footer-links .footer-link {
    font-size: 0.75rem;
    padding: 0.125rem 0.25rem;
  }
}

/* Legacy footer styles (kept for backwards compatibility) */
.footer-links-section {
  border-top: 1px solid rgba(107, 31, 9, 0.3);
}

.footer-links-section .footer-links {
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  :root {
    --section-spacing: 100px;
    --header-font-size: 2.5rem;
  }

  .hero-section h1 {
    font-size: 4rem;
    letter-spacing: 3px;
  }
  
  .hero-section .lead {
    font-size: 1.25rem;
  }
  
  .hero-cta .btn-primary {
    padding: 16px 40px;
    font-size: 1.1rem;
  }
  
  .hero-cta .btn-outline-light {
    padding: 14px 35px;
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .feature-icon {
    font-size: 3.2rem;
    width: 90px;
    height: 90px;
  }
  
  .feature-box h3 {
    font-size: 1.4rem;
  }

  .features-grid,
  .why-different-grid,
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 992px) {
  :root {
    --section-spacing: 80px;
    --header-font-size: 2.2rem;
  }

  .hero-section {
    padding: 160px 0 120px;
  }
  
  .hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.8rem;
  }
  
  .hero-section .lead {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }
  
  .hero-cta {
    gap: 15px;
  }
  
  .status-badge {
    top: 30px;
    right: 30px;
    font-size: 0.8rem;
    padding: 9px 18px;
  }

  .features-grid-section {
    padding: 100px 0;
  }
  
  .section-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  
  .section-subtitle {
    font-size: 1.15rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 60px;
  }
  
  .feature-box {
    padding: 40px 30px;
  }
  
  .feature-icon {
    font-size: 3rem;
    width: 85px;
    height: 85px;
  }

  .how-to-steps,
  .roadmap-phases {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .commitment-points {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 60px;
    --header-font-size: 2rem;
  }

  .hero-section {
    text-align: center;
    padding: 140px 0 100px;
    min-height: 90vh;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-section h1 {
    font-size: 2.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
  }
  
  .hero-section .lead {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-outline-light {
    width: 100%;
    max-width: 320px;
    padding: 16px 35px;
  }
  
  .status-badge {
    position: static;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 0.75rem;
    padding: 8px 16px;
  }
  
  .hero-smalltext {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

   .features-grid-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 50px;
  }
  
  .feature-box {
    padding: 35px 25px;
  }
  
  .feature-icon {
    font-size: 2.8rem;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  
  .feature-box h3 {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }
  
  .feature-box p {
    font-size: 1rem;
  }

  .features-grid,
  .why-different-grid,
  .how-to-steps,
  .benefits-grid,
  .commitment-points,
  .roadmap-phases {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

@media (max-width: 576px) {
  :root {
    --section-spacing: 40px;
    --header-font-size: 1.8rem;
  }

  .hero-section {
    padding: 120px 0 80px;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
    letter-spacing: 1.5px;
  }
  
  .hero-section .lead {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    font-size: 0.95rem;
    padding: 14px 30px;
  }
  
  .hero-cta .btn i {
    margin-right: 8px;
    font-size: 1em;
  }
  
  .hero-smalltext {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .features-grid-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.9rem;
    letter-spacing: 1.5px;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .feature-box {
    padding: 30px 25px;
  }
  
  .feature-icon {
    font-size: 2.5rem;
    width: 75px;
    height: 75px;
  }
  
  .feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  
  .feature-box p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Reduce hover effects on mobile for better performance */
  .feature-box:hover {
    transform: translateY(-4px);
  }
  
  .feature-box:hover .feature-icon {
    transform: scale(1.1);
  }

  .step-box,
  .feature-box,
  .benefit-box,
  .phase-box,
  .faq-item {
    padding: 25px 20px;
  }
}

/* Smooth Scrolling - Removed for jQuery compatibility */
/* html {
  scroll-behavior: smooth;
} */

/* Guest Confirmation Modal */
.guest-warning {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(107, 31, 9, 0.2);
  margin-bottom: 20px;
}

.guest-warning .warning-icon {
  font-size: 3rem;
  color: #ffa726;
  margin-bottom: 15px;
}

.guest-warning h4 {
  color: var(--brand-dark-orange);
  margin-bottom: 15px;
  font-family: 'Bangers', cursive;
  letter-spacing: 1px;
  font-size: 1.5rem;
}

.guest-warning p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 1rem;
}

.guest-features {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.guest-features li {
  padding: 8px 0 8px 35px;
  position: relative;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.guest-features li i {
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--brand-dark-orange);
  width: 25px;
  text-align: center;
  font-size: 0.9rem;
}

.guest-warning .text-muted {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 15px;
}

/* Enhanced Modal Styles for Dark Theme */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

.modal-content {
  background: var(--industrial-darker) !important;
  border: 1px solid var(--industrial-light) !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.modal-header {
  background: var(--industrial-dark) !important;
  border-bottom: 1px solid var(--industrial-light) !important;
  padding: 15px 20px !important;
}

.modal-title {
  color: var(--brand-dark-orange) !important;
  font-weight: 700 !important;
  font-size: 1.3rem !important;
}

.modal-body {
  padding: 25px !important;
  background: var(--industrial-darker) !important;
}

.modal-footer {
  background: var(--industrial-dark) !important;
  border-top: 1px solid var(--industrial-light) !important;
  padding: 20px 25px !important;
}

.modal .btn-outline-secondary {
  border-color: var(--text-secondary);
  color: var(--text-secondary);
}

.modal .btn-outline-secondary:hover {
  background-color: var(--text-secondary);
  color: var(--industrial-dark);
}

/* Ensure modal text is readable */
.modal p, .modal li {
  color: var(--text-secondary) !important;
}

/* Feature Sections */
.features-section {
  padding: 120px 0;
  background: var(--industrial-darker);
}

/* Section Background Alternating */
.screenshots-section {
  background: var(--industrial-dark);
}

.discord-section {
  background: var(--industrial-darker);
}

.features-section .section-title {
  margin-bottom: 60px;
}

/* Learn More - Below Hero Section */
.learn-more-below-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 0;
  position: relative;
  width: 100%;
}

.learn-more-below-hero .learn-more-content {
  text-align: center;
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.learn-more-below-hero .learn-more-display {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 35px;
  background: rgba(6, 13, 20, 0.1);
  border: 2px solid var(--accent-orange-dark);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.learn-more-below-hero .learn-more-display:hover {
  background: rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.learn-more-below-hero .learn-more-text {
  font-family: 'Bangers', cursive;
  font-size: 2.3rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-weight: bold;
}

.learn-more-below-hero .fas {
  color: var(--accent-orange-dark);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.learn-more-below-hero .learn-more-display:hover .fas {
  transform: translateY(4px);
}

.feature-item {
  margin-bottom: 80px;
  position: relative;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.feature-reverse .feature-content {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
  max-width: 500px;
}

.feature-text h3 {
  color: var(--accent-orange-dark);
  font-size: 2.2rem;
  font-family: 'Bangers', cursive;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.feature-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  color: var(--text-secondary);
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  display: flex;
  align-items: center;
}

.feature-list li i {
  color: var(--accent-orange-dark);
  margin-right: 10px;
  width: 18px;
  text-align: center;
  font-size: 1.1em;
}

.feature-image {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: auto;
  margin: 60px 0;
  border: 2px solid var(--accent-orange-dark);
  border-radius: 8px;
  max-width: 90%;
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.3), 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.feature-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(255, 107, 53, 0.5), 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* Modal Styles */
.modal-content {
  background: var(--industrial-darker);
  border: 1px solid var(--industrial-light);
  border-radius: 8px;
  overflow: hidden;
}

.modal-header {
  border-bottom: 1px solid var(--industrial-light);
  background: var(--industrial-dark);
}

.modal-title {
  color: var(--text-primary);
  font-weight: 600;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid var(--industrial-light);
  background: var(--industrial-dark);
  padding: 15px 25px;
}

.close {
  color: var(--text-primary);
  opacity: 0.7;
  text-shadow: none;
  transition: all 0.2s ease;
}

.close:hover {
  color: var(--accent-orange-dark);
  opacity: 1;
}

/* Gallery Modal Styles */
#galleryModal .modal-header {
  padding: 15px 20px;
}

#galleryModal .modal-title {
  font-family: 'Bangers', cursive;
  letter-spacing: 1px;
  color: var(--accent-orange-dark);
}

#galleryModal .modal-body {
  padding: 0;
  max-height: 70vh;
  overflow: hidden;
}

#galleryModal .carousel {
  border-radius: 0;
  box-shadow: none;
}

#galleryModal .carousel-item img {
  height: 60vh;
  object-fit: contain;
  background: var(--industrial-darker);
}

#galleryModal .carousel-control {
  background: rgba(0, 0, 0, 0.5);
  width: 8%;
  opacity: 0.8;
  transition: all 0.3s ease;
}

#galleryModal .carousel-control:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

/* Gallery Thumbnails */
.gallery-thumbnails {
  padding: 15px 0;
}

.gallery-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  margin: 0 5px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.gallery-thumb:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.gallery-thumb.active {
  border-color: var(--accent-orange-dark);
  opacity: 1;
  box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

/* Password Fields */
.password-fields {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid var(--industrial-light);
}

.password-fields .form-group {
  margin-bottom: 15px;
}

.password-fields .form-group:last-child {
  margin-bottom: 0;
}

/* Form Styles */
.form-control {
  background: var(--industrial-dark);
  border: 1px solid var(--industrial-light);
  color: var(--text-primary);
  padding: 12px 15px;
  height: auto;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: var(--industrial-medium);
  border-color: var(--accent-orange-dark);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
  color: var(--text-primary);
}

label {
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

/* Enhanced Mobile Compatibility - Login Page Landing */
@media (max-width: 1200px) {
  /* Navbar improvements for tablets */
  .navbar-brand {
    font-size: 1.6rem;
  }

  .hero-section {
    min-height: 70vh;
    padding: 160px 0 120px 0;
  }

  .hero-section h1 {
    font-size: 3rem;
  }

  .feature-content {
    gap: 50px;
  }

  .feature-text h3 {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  /* Small tablets and large phones */
  .navbar .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  .hero-section h1 {
    font-size: 2.8rem;
  }

  .hero-section .lead {
    font-size: 1.3rem;
  }

  .hero-cta {
    gap: 12px;
  }

  .discord-text h3 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .feature-item {
    margin-bottom: 70px;
  }

  .feature-content {
    gap: 45px;
  }
}

/* Mobile Responsiveness - Phones */
@media (max-width: 768px) {
  /* Navbar mobile improvements */
  .navbar-brand {
    font-size: 1.5rem;
  }

  .navbar-toggler {
    margin-right: 0.5rem;
  }

  .navbar-collapse {
    margin-top: 1rem;
  }

  .navbar-nav .nav-link {
    padding: 0.8rem 0;
    text-align: center;
  }

  /* Hero section mobile layout */
  .hero-section {
    min-height: 60vh;
    padding: 120px 0 80px 0;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .hero-section .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 35px;
  }

  /* Feature sections mobile */
  .features-section {
    padding: 60px 0 40px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 50px;
  }

  .feature-item {
    margin-bottom: 80px;
  }

  .feature-content {
    flex-direction: column !important;
    gap: 40px;
    text-align: center;
  }

  .feature-reverse .feature-content {
    flex-direction: column !important;
  }

  .feature-text {
    max-width: none;
  }

  .feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .feature-text p {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .feature-list {
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
  }

  .feature-image img {
    max-width: 100%;
    margin: 40px auto;
  }

  /* Discord section mobile */
  .discord-section {
    padding: 60px 0;
  }

  .discord-content {
    padding: 35px 20px;
  }

  .discord-text h3 {
    font-size: 1.9rem;
  }

  .discord-text p {
    font-size: 1.05rem;
  }

  .btn-discord {
    padding: 14px 25px;
  }

  /* Screenshots section mobile */
  .screenshots-section {
    padding: 40px 0;
  }

  .carousel-item img {
    height: 350px;
  }

  /* Modal mobile improvements */
  .modal-dialog {
    margin: 0.5rem auto;
  }

  .modal-header {
    padding: 15px;
  }

  .modal-title {
    font-size: 1.2rem;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-footer {
    padding: 15px 20px;
  }
}

@media (max-width: 576px) {
  /* Extra small devices */
  .navbar-brand {
    font-size: 1.4rem;
  }

  .hero-section h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .hero-section .lead {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
  }

  .hero-cta .btn {
    max-width: 260px;
    padding: 13px 30px;
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .discord-text h3 {
    font-size: 1.7rem;
  }

  .feature-text h3 {
    font-size: 1.6rem;
  }

  .carousel-item img {
    height: 280px;
  }

  /* poca Mobile form improvements */
  .modal-content {
    border-radius: 8px;
  }

  .modal-body {
    padding: 25px 20px;
  }

  .form-control {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .guest-features li {
    padding-left: 30px;
    font-size: 0.95rem;
  }

  .text-muted {
    font-size: 0.9rem;
  }
}

/* Landscape mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 50vh;
    padding: 100px 0 80px 0;
  }

  .hero-section h1 {
    font-size: 2.3rem;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

  .hero-cta .btn {
    flex: 0 1 auto;
    width: auto;
    max-width: 200px;
  }

  .feature-content {
    flex-direction: row !important;
    gap: 30px;
    text-align: left;
  }

  .feature-reverse .feature-content {
    flex-direction: row-reverse !important;
  }
}

/* ==============================
   Login Page Header Integration & Bootstrap 3 Compatibility
   ============================== */

/* Bootstrap 3 Compatible Navbar Styles */
.navbar-default {
  background: rgba(26, 26, 26, 0.95) !important;
  border-bottom: 1px solid rgba(90, 108, 125, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.navbar-default .navbar-brand {
  padding: 10px 15px;
  margin: 0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar-default .navbar-brand img {
  height: 40px;
  width: auto;
  max-height: 40px;
  display: block;
  transition: all 0.3s ease;
}

.navbar-default .navbar-brand:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: var(--text-primary) !important;
  text-shadow: 0 0 15px rgba(74, 144, 226, 0.6);
}

.navbar-default .navbar-nav > li > a {
  color: var(--text-primary);
  font-family: 'Electrolize', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 15px 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: var(--text-primary);
  background: rgba(74, 114, 226, 0.1);
  text-decoration: none;
}

.navbar-default .navbar-toggle {
  border: 1px solid rgba(120, 130, 140, 0.3);
  background: transparent;
  border-radius: 0;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background: rgba(74, 114, 226, 0.1);
  border-color: rgba(74, 144, 226, 0.4);
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: var(--text-primary);
}

.navbar-default .navbar-collapse {
  border-top: none;
  box-shadow: none;
  background: rgba(26, 26, 26, 0.98);
}

/* Mobile navbar adjustments */
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: var(--text-secondary);
  }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    background: rgba(74, 144, 226, 0.1);
  }
}

.navbar.scrolled {
  background: rgba(15, 15, 15, 0.98) !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.navbar.scrolled .navbar-brand {
  font-size: 1.5rem;
}

/* Mobile logo adjustments */
@media (max-width: 767px) {
  .navbar-default .navbar-brand img {
    height: 32px;
    max-height: 32px;
  }

  .navbar.scrolled .navbar-brand img {
    height: 28px;
    max-height: 28px;
  }
}

@media (max-width: 480px) {
  .navbar-default .navbar-brand img {
    height: 28px;
    max-height: 28px;
  }

  .navbar.scrolled .navbar-brand img {
    height: 24px;
    max-height: 24px;
  }
}

/* Form Controls */
.form-control {
  background: linear-gradient(
    135deg,
    var(--industrial-darker) 0%,
    var(--industrial-dark) 50%,
    var(--industrial-darker) 100%
  );
  border: 1px solid rgba(120, 130, 140, 0.15);
  border-radius: 2px;
  color: var(--text-primary);
  font-family: "Quantico", sans-serif;
  padding: 8px 12px;
  box-shadow:
    inset 0 2px 4px var(--shadow),
    0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
}

.form-control:focus {
  background: var(--industrial-dark);
  border-color: var(--accent-gold);
  color: var(--text-primary);
  box-shadow:
    inset 0 2px 4px var(--shadow),
    0 0 0 3px var(--accent-gold);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

/* Buttons */

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-steel) 50%,
    transparent
  );
  transition: left 0.5s;
}

.btn:hover {
  background: linear-gradient(var(--border-silver), var(--border-steel));
  color: var(--text-primary);
  border-color: var(--progress-background);
  transform: translateY(-1px);
  box-shadow:
    inset 0 -2px 4px var(--shadow),
    0 4px 8px var(--shadow-glow);
}

.btn:hover::before {
  left: 100%;
}

.btn:hover::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-gold) 50%,
    transparent
  );
}

.btn:active {
  transform: translateY(0);
  box-shadow:
    inset 0 -1px 2px var(--shadow),
    0 2px 2px var(--shadow);
}

.btn:focus {
  outline: none;
  box-shadow:
    inset 0 -2px 4px var(--shadow),
    0 0 0 3px var(--accent-gold);
}


.btn-default:hover {
  background: linear-gradient(var(--border-silver), var(--border-steel));
  border-color: var(--progress-background);
}

/* Panels & Lists */
.panel {
  background: linear-gradient(
    135deg,
    var(--industrial-darker) 0%,
    var(--industrial-dark) 50%,
    var(--industrial-darker) 100%
  );
  border: 1px solid rgba(102, 112, 121, 0.15);
  border-radius: 2px;
  padding: 1rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(74, 144, 226, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  opacity: 0.3;
}

.panel-heading {
  background: linear-gradient(
    135deg,
    var(--industrial-dark) 0%,
    var(--industrial-darker) 30%,
    var(--industrial-dark) 70%,
    var(--industrial-darker) 100%
  );
  color: var(--text-primary) !important;
  font-family: "Electrolize", cursive;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(120, 130, 140, 0.15);
  padding: 0.75rem 1rem;
  margin: -1rem -1rem 1rem -1rem;
  border-radius: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  position: relative;
  overflow: hidden;
}

.panel-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-steel) 30%,
    transparent 60%,
    var(--border-steel) 90%,
    transparent 100%
  );
  animation: panelScan 5s ease-in-out infinite;
  opacity: 0.15;
}

@keyframes panelScan {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Links */
a {
  color: var(--text-primary);
}

a:hover {
  color: var(--accent-orange-dark);
  text-decoration: underline;
}

/* Alert Overrides */
.alert {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(120, 130, 140, 0.15);
  border-radius: 2px;
  font-family: "Electrolize", cursive;
  color: var(--text-primary);
  background: linear-gradient(
    135deg,
    var(--industrial-darker) 0%,
    var(--industrial-dark) 50%,
    var(--industrial-darker) 100%
  );
  box-shadow:
    0 4px 12px rgba(74, 144, 226, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.alert::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 60%,
    rgba(74, 144, 226, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  opacity: 0.2;
}

.alert::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--border-steel) 0%,
    var(--accent-gold) 50%,
    var(--border-steel) 100%
  );
  opacity: 0.7;
}

/* Alert Variants */
.alert-info {
  background: var(--industrial-medium);
  border-color: var(--accent-gold);
  color: var(--text-primary);
  text-shadow: 1px 1px 2px var(--shadow);
  box-shadow:
    0 2px 8px var(--shadow),
    0 0 0 1px var(--accent-gold);
}

.alert-success {
  background: var(--industrial-darker);
  border-color: #4caf50;
  color: #81c784;
  text-shadow: 1px 1px 2px var(--shadow);
  box-shadow:
    0 2px 8px var(--shadow),
    0 0 0 1px #4caf50;
}

.alert-warning {
  background: var(--industrial-medium);
  border-color: #ffc107;
  color: var(--text-primary);
  font-weight: bold;
  text-shadow: 1px 1px 2px var(--shadow);
  box-shadow:
    0 2px 8px var(--shadow),
    0 0 0 1px #ffc107;
}

.alert-danger {
  background: var(--industrial-darker);
  border-color: var(--accent-orange);
  color: #ef5350;
  font-weight: bold;
  text-shadow: 1px 1px 2px var(--shadow);
  box-shadow:
    0 2px 8px var(--shadow),
    0 0 0 1px var(--accent-orange);
}

/* Footer Tag */
.footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #f0f0f0;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.footer-tag:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
}
.footer-tag--gold {
  border-color: rgba(255, 215, 0, 0.35);
  color: #ffe9a3;
}
.footer-tag--ocean {
  border-color: rgba(64, 160, 255, 0.35);
  color: #cfe8ff;
}
.tag-emoji {
  font-size: 14px;
  line-height: 1;
}

.container-fluid {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* ==============================
   Enhanced Logo Styling - Industrial Theme
   ============================== */

/* Logo Container */
.text-center {
  position: relative;
  margin: 1.5rem auto 1rem auto;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--industrial-darker) 0%,
    var(--industrial-dark) 50%,
    var(--industrial-darker) 100%
  );
  border: 1px solid rgba(102, 112, 121, 0.15);
  border-radius: 8px;
  box-shadow:
    0 12px 32px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.text-center::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(74, 144, 226, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  opacity: 0.6;
}

.text-center::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent-gold) 30%,
    var(--accent-orange-dark) 50%,
    var(--accent-gold) 70%,
    transparent 100%
  );
  animation: logoGlow 4s ease-in-out infinite;
}

/* Logo Image */
.text-center img {
  max-width: 400px;
  max-height: 200px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4))
   drop-shadow(0 0 20px rgba(216, 67, 21, 0.4))
   contrast(1.1)
   brightness(1.05);
  transition: all 0.4s ease;
  border-radius: 4px;
}

.text-center img:hover {
  transform: scale(1.02) translateY(-2px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4))
  drop-shadow(0 0 20px rgba(216, 67, 21, 0.4))
  contrast(1.1) brightness(1.05);
}

/* Logo Glow Animation */
@keyframes logoGlow {
  0%, 100% {
    opacity: 0.7;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.05);
  }
}

/* Logo Text/Title Enhancement */
.text-center + .login-form-container {
  margin-top: 1rem;
}

/* Industrial Logo Frame Effect */
.text-center {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
}

.text-center::before {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(170, 122, 38, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(74, 106, 90, 0.1) 0%, transparent 50%);
}

/* Responsive Logo */
@media (max-width: 768px) {
  .text-center {
    margin: 2rem auto 1.5rem auto;
    padding: 1.5rem;
  }

  .text-center img {
    max-width: 300px;
    max-height: 150px;
  }
}

@media (max-width: 480px) {
  .text-center {
    margin: 1.5rem auto 1rem auto;
    padding: 1rem;
  }

  .text-center img {
    max-width: 250px;
    max-height: 125px;
  }
}

/* High contrast logo support */
@media (prefers-contrast: more) {
  .text-center img {
    filter:
      drop-shadow(0 4px 8px rgba(255, 255, 255, 0.8))
      contrast(1.5)
      brightness(1.2);
  }

  .text-center::after {
    background: linear-gradient(
      90deg,
      transparent 0%,
      #ffffff 30%,
      #ffffff 50%,
      #ffffff 70%,
      transparent 100%
    );
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .text-center img {
    transition: none;
  }

  .text-center img:hover {
    transform: none;
  }

  .text-center::after {
    animation: none;
  }
}

/* Login Form Specific Styles */
.login-form-container {
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    var(--industrial-darker) 0%,
    var(--industrial-dark) 50%,
    var(--industrial-darker) 100%
  );
  border: 1px solid rgba(102, 112, 121, 0.15);
  border-radius: 4px;
  box-shadow:
    0 8px 24px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.login-form-container h2 {
  color: var(--text-primary);
  font-family: "Electrolize", cursive;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.login-form-container .form-group {
  margin-bottom: 1.5rem;
}

.login-form-container label {
  color: var(--text-secondary);
  font-family: "Quantico", sans-serif;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9em;
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .login-form-container {
    margin: 1rem;
    padding: 1.5rem;
  }

  .login-form-container h2 {
    font-size: 1.5em;
  }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .alert {
    animation: none !important;
  }

  .btn:hover::before {
    transition: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
  :root {
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --border-silver: #ffffff;
    --border-steel: #ffffff;
  }
}

/* ==============================
   Form Validation & Loading States
   ============================== */

/* Form validation styles */
.form-control.is-invalid {
  border-color: var(--accent-danger);
  box-shadow:
    inset 0 2px 4px var(--shadow),
    0 0 0 3px rgba(239, 83, 80, 0.1);
  background: linear-gradient(
    135deg,
    rgba(239, 83, 80, 0.05) 0%,
    var(--industrial-dark) 50%,
    rgba(239, 83, 80, 0.05) 100%
  );
}

.field-error {
  color: var(--accent-danger);
  font-size: 0.875em;
  font-family: "Quantico", sans-serif;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: rgba(239, 83, 80, 0.1);
  border-left: 3px solid var(--accent-danger);
  border-radius: 2px;
  animation: slideInError 0.3s ease-out;
}

@keyframes slideInError {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Loading overlay */
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-radius: 4px;
  backdrop-filter: blur(2px);
}

.loading-spinner {
  text-align: center;
  color: var(--text-primary);
}

.spinner-ring {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(116, 181, 246, 0.3);
  border-radius: 50%;
  border-top-color: var(--accent-orange-dark);
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-text {
  font-family: "Electrolize", cursive;
  font-size: 0.9em;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mini spinner for buttons */
.spinner-mini {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 0.5rem;
}

/* Focus states */
.form-group.focused label {
  color: var(--accent-orange-dark);
  text-shadow: 0 0 5px var(--accent-orange-dark);
}

/* Button hover states */
.btn-hover {
  transform: translateY(-1px) !important;
  box-shadow:
    inset 0 -2px 4px var(--shadow),
    0 6px 12px var(--shadow-glow) !important;
}

/* Alert animations */
.alert {
  animation: fadeInSlide 0.3s ease-out;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Disabled form elements */
.login-form-container input:disabled,
.login-form-container button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Success animations */
.login-form-container.fade-out {
  animation: fadeOutScale 0.5s ease-in-out forwards;
}

@keyframes fadeOutScale {
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

/* Enhanced button states */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow:
    inset 0 -1px 2px var(--shadow) !important;
}

.btn:disabled:hover {
  transform: none !important;
  box-shadow:
    inset 0 -1px 2px var(--shadow) !important;
}

/* Feature Section Responsive */
@media (max-width: 992px) {
  .feature-item {
    margin-bottom: 60px;
  }

  .feature-content {
    gap: 40px;
  }

  .feature-text h3 {
    font-size: 1.8rem;
  }

  .feature-text p {
    font-size: 1rem;
  }

  .feature-list li {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 60px 0;
  }

  .features-section .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .feature-content {
    flex-direction: column !important;
    gap: 30px;
    text-align: center;
  }

  .feature-reverse .feature-content {
    flex-direction: column !important;
  }

  .feature-text {
    max-width: none;
  }

  .feature-text h3 {
    font-size: 1.6rem;
  }

  .feature-list {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
  }

  .feature-image {
    max-width: 350px;
    margin: 0 auto;
  }

  .loading-overlay {
    padding: 1rem;
  }

  .spinner-ring {
    width: 32px;
    height: 32px;
    border-width: 2px;
  }

  .loading-text {
    font-size: 0.8em;
  }
}

/* Responsive loading states */
@media (max-width: 768px) {
  .loading-overlay {
    padding: 1rem;
  }

  .spinner-ring {
    width: 32px;
    height: 32px;
    border-width: 2px;
  }

  .loading-text {
    font-size: 0.8em;
  }
}
