/* ==========================================================================
   E-GENTALHAS ESPORTS - OFFICIAL GREEN & BLACK PALETTE
   Designed to perfectly match the E-GENTALHAS Crest
   ========================================================================== */

/* --- ROOT VARIABLES (BLACK, GREEN & WHITE PALETTE) --- */
:root {
  --bg-dark: #070907;
  --bg-card: rgba(14, 20, 16, 0.85);
  --bg-card-hover: rgba(22, 32, 25, 0.95);
  
  --primary-green: #00ff66;
  --primary-green-glow: rgba(0, 255, 102, 0.4);
  --green-dark: #047857;
  --green-deep: #022c22;
  
  --color-white: #ffffff;
  --color-black: #000000;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-tech: 'Rajdhani', sans-serif;
  
  --glass-border: rgba(0, 255, 102, 0.2);
  --glass-border-hover: rgba(0, 255, 102, 0.6);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* --- BACKGROUND CYBER EFFECTS --- */
.bg-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.22;
  animation: pulseOrb 8s infinite alternate ease-in-out;
}

.orb-green-main, .orb-cyan, .orb-gold {
  background: var(--primary-green);
}

.orb-green-main {
  top: -10%;
  left: 20%;
  width: 550px;
  height: 550px;
  background: #00ff66;
}

.orb-cyan {
  top: 40%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: #047857;
}

.orb-gold {
  bottom: -10%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: #00e676;
}

.cyber-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 255, 102, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 102, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
}

@keyframes pulseOrb {
  0% { transform: scale(1) translate(0, 0); opacity: 0.18; }
  100% { transform: scale(1.15) translate(20px, 30px); opacity: 0.3; }
}

/* --- GLASSMORPHISM UTILITY --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--glass-border-hover);
  box-shadow: 0 15px 40px rgba(0, 255, 102, 0.25);
}

/* --- REUSABLE COMPONENTS --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

.cyber-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid var(--primary-green);
  border-radius: 50px;
  color: var(--primary-green);
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(0, 255, 102, 0.3);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.15rem;
}

.btn-glow-gold, .btn-cyber {
  background: linear-gradient(135deg, #00ff66, #059669);
  color: #000;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
}

.btn-glow-gold:hover, .btn-cyber:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #10b981, #00ff66);
  box-shadow: 0 0 35px rgba(0, 255, 102, 0.7);
  color: #000;
}

.btn-cyber-outline {
  background: transparent;
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
}

.btn-cyber-outline:hover {
  background: rgba(0, 255, 102, 0.15);
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 9, 7, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 0;
  transition: var(--transition);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-shield-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 255, 102, 0.5));
  transition: var(--transition);
}

.brand-logo:hover .nav-shield-img {
  transform: scale(1.1) rotate(-5deg);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-tech);
  font-size: 0.65rem;
  color: var(--primary-green);
  letter-spacing: 2px;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-tech);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-green);
  text-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
}

/* --- HERO SECTION --- */
.hero-section {
  padding-top: 150px;
  padding-bottom: 90px;
  text-align: center;
  position: relative;
}

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid var(--primary-green);
  border-radius: 50px;
  color: var(--primary-green);
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--primary-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-green);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-shield-main {
  margin: 0 auto 20px auto;
  width: 190px;
  height: 190px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(0, 255, 102, 0.6));
  animation: floatHeroLogo 4s ease-in-out infinite alternate;
}

@keyframes floatHeroLogo {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-12px) scale(1.05); }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  letter-spacing: 4px;
  background: linear-gradient(180deg, #ffffff 35%, var(--primary-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(0, 255, 102, 0.3);
}

/* Hero Stats Counter Grid */
.stats-counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 40px auto;
}

.counter-card {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.counter-icon {
  font-size: 2rem;
  color: var(--primary-green);
  width: 50px;
  height: 50px;
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid rgba(0, 255, 102, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-data {
  display: flex;
  flex-direction: column;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
}

.counter-label {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.counter-label i {
  color: var(--primary-green);
  font-size: 0.8rem;
}

.crosshair-inline-icon {
  color: var(--primary-green);
  font-size: 1.3rem;
  margin-right: 4px;
  vertical-align: middle;
}

.hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- TIMELINE SECTION --- */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-green), #047857, var(--primary-green));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }

.timeline-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  right: -22px;
  background: var(--bg-dark);
  border: 2px solid var(--primary-green);
  top: 20px;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
}

.timeline-item.right .timeline-icon {
  left: -22px;
}

.timeline-content {
  padding: 28px;
}

.timeline-date {
  font-family: var(--font-tech);
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.timeline-content p:last-child {
  margin-bottom: 0;
}

.fifa-quote {
  font-size: 1.1rem !important;
  color: var(--primary-green) !important;
  font-weight: 700;
  padding: 8px 14px;
  background: rgba(0, 255, 102, 0.08);
  border-left: 3px solid var(--primary-green);
  border-radius: 4px;
  margin: 12px 0 !important;
}

/* History Motto Box */
.history-motto-box {
  margin-top: 50px;
  padding: 40px 30px;
  border: 1px solid var(--glass-border-hover);
  background: rgba(14, 20, 16, 0.9);
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.15);
}

.history-motto-box h3 {
  font-family: var(--font-tech);
  color: var(--text-muted);
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.victory-gold-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--primary-green);
  letter-spacing: 3px;
  text-shadow: 0 0 25px rgba(0, 255, 102, 0.5);
  margin-bottom: 24px;
}

.motto-summary {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 24px;
}

.motto-highlight {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(0, 255, 102, 0.1);
  border: 1px dashed var(--primary-green);
  border-radius: var(--radius-sm);
  color: var(--primary-green);
  font-family: var(--font-tech);
  font-size: 1.15rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- ROSTER SECTION --- */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.player-photo-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #020402;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}

.player-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.player-card:hover .player-photo {
  transform: scale(1.05);
}

/* Role Badges (Unified Green & Black Theme) */
.role-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-tech);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  z-index: 5;
  border: 1px solid var(--primary-green);
}

.badge-igl { background: #000; color: var(--primary-green); }
.badge-entry { background: #047857; color: #fff; }
.badge-fragger { background: var(--primary-green); color: #000; }
.badge-scout { background: #064e3b; color: #fff; }
.badge-suporte { background: #00ff66; color: #000; }

.player-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.player-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 1.5px;
  color: #fff;
  line-height: 1;
}

.player-role-title {
  font-family: var(--font-tech);
  color: var(--primary-green);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.player-bio-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.player-stats-mini {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 255, 102, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.mini-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mini-stat .lbl {
  color: var(--text-muted);
  font-family: var(--font-tech);
  font-weight: 700;
  letter-spacing: 0.5px;
  min-width: 110px;
}

.mini-stat .val {
  color: #fff;
  font-weight: 600;
  text-align: right;
}

/* --- TACTICS & MAP SECTION --- */
.tactics-container-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.tactic-detail-box {
  padding: 32px;
}

.box-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-green);
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.drop-spots-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drop-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(0, 255, 102, 0.03);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary-green);
}

.drop-name { font-weight: 600; }
.drop-rate {
  font-family: var(--font-tech);
  color: var(--primary-green);
  font-weight: 700;
}

.code-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.code-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.code-list li i {
  color: var(--primary-green);
  margin-top: 4px;
}

.code-list li strong { color: #fff; }

/* --- SOUNDBOARD SECTION --- */
.soundboard-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.sfx-btn {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: var(--transition);
}

.sfx-btn i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 8px;
  transition: var(--transition);
}

.sfx-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 1px;
  line-height: 1.2;
}

.sfx-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sfx-btn:hover {
  background: rgba(0, 255, 102, 0.12);
  border-color: var(--primary-green);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 255, 102, 0.25);
}

.sfx-btn:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #fff;
}

/* ==========================================================================
   OFFICIAL UNIFORM & MANTO SAGRADO PRESENTATION SECTION
   ========================================================================== */

.uniform-gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.uniform-tab-btn {
  background: rgba(14, 20, 16, 0.8);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.uniform-tab-btn:hover {
  border-color: var(--primary-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 255, 102, 0.2);
}

.uniform-tab-btn.active {
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.2), rgba(4, 120, 87, 0.4));
  border-color: var(--primary-green);
  color: var(--primary-green);
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
}

.uniform-showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 992px) {
  .uniform-showcase-container {
    grid-template-columns: 1fr;
  }
}

.uniform-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border-hover);
  background: radial-gradient(circle at center, rgba(14, 28, 18, 0.9), rgba(5, 10, 6, 0.95));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 255, 102, 0.15);
}

.uniform-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #040805;
}

.uniform-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
}

.uniform-card:hover .uniform-img {
  transform: scale(1.03);
}

.uniform-overlay-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  z-index: 5;
}

.badge-season {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.badge-edition {
  background: rgba(0, 255, 102, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 102, 0.3);
  color: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* HOTSPOTS LAYER */
.uniform-hotspots-layer {
  position: absolute;
  inset: 0;
  pointer-events: auto;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.hotspot-pin {
  position: absolute;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  background: var(--bg-dark);
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.6);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hotspot-pin:hover {
  transform: translate(-50%, -50%) scale(1.25);
  background: var(--primary-green);
  color: #000;
  box-shadow: 0 0 25px rgba(0, 255, 102, 0.9);
}

.hotspot-pulse {
  position: absolute;
  inset: -6px;
  border: 2px solid var(--primary-green);
  border-radius: 50%;
  opacity: 0;
  animation: hotspotPulse 2s infinite ease-out;
}

@keyframes hotspotPulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hotspot-info-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(7, 12, 8, 0.95);
  border: 1px solid var(--primary-green);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 255, 102, 0.3);
  z-index: 20;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hotspot-info-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hotspot-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.hotspot-info-header h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-green);
  letter-spacing: 1px;
}

.hotspot-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.hotspot-close-btn:hover {
  color: var(--primary-green);
}

.hotspot-info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* UNIFORM INFO & CUSTOMIZER */
.uniform-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.uniform-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-tech);
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.uniform-name {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.1;
  margin: 6px 0 12px 0;
}

.uniform-intro-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* CUSTOMIZER WIDGET */
.uniform-customizer-box {
  padding: 24px;
  border-color: rgba(0, 255, 102, 0.3);
  background: linear-gradient(145deg, rgba(14, 24, 17, 0.9), rgba(7, 12, 8, 0.95));
}

.customizer-header {
  margin-bottom: 18px;
}

.customizer-header h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-green);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.customizer-sub {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.customizer-inputs {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .customizer-inputs {
    grid-template-columns: 1fr;
  }
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.input-group input, .input-group select {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #fff;
  font-family: var(--font-tech);
  font-size: 1rem;
  font-weight: 700;
  outline: none;
  transition: var(--transition);
}

.input-group input:focus, .input-group select:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 12px rgba(0, 255, 102, 0.3);
}

/* JERSEY PREVIEW CARD */
.jersey-preview-card {
  background: radial-gradient(circle at center, #051409, #020502);
  border: 1px dashed var(--primary-green);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0, 255, 102, 0.1);
}

.jersey-preview-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.jersey-preview-tag {
  font-family: var(--font-tech);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.jersey-preview-name {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  letter-spacing: 4px;
  color: var(--primary-green);
  text-shadow: 0 0 15px rgba(0, 255, 102, 0.6);
  line-height: 1;
  text-transform: uppercase;
}

.jersey-preview-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 0.9;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
}

.jersey-preview-footer {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-top: 6px;
}

/* UNIFORM SPECS GRID */
.uniform-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 576px) {
  .uniform-specs-grid {
    grid-template-columns: 1fr;
  }
}

.spec-card {
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.spec-icon {
  width: 42px;
  height: 42px;
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid rgba(0, 255, 102, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.spec-content h4 {
  font-family: var(--font-tech);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.spec-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.uniform-quote-banner {
  padding: 16px 20px;
  font-style: italic;
  color: var(--primary-green);
  font-size: 0.95rem;
  border-color: rgba(0, 255, 102, 0.2);
}

/* --- FOOTER --- */
.footer {
  background: #040504;
  border-top: 1px solid var(--glass-border);
  padding: 50px 0;
  margin-top: 60px;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 15px rgba(0, 255, 102, 0.5));
}

.footer-squad-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 2px;
  color: #fff;
}

.footer-text {
  color: var(--text-muted);
  margin: 10px 0;
  font-size: 0.95rem;
}

.footer-copy {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 992px) {
  .timeline-container::after { left: 31px; }
  .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
  .timeline-item.right { left: 0%; }
  .timeline-icon { left: 10px !important; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hero-section { padding-top: 120px; }
  .hero-cta-buttons { flex-direction: column; }
  .btn-large { width: 100%; justify-content: center; }
}

/* Screen Shake Effect for Victory Royale */
.screen-shake {
  animation: shake 0.5s cubic-bezier(.36,.07,.19,-0.97) both;
}

@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* --- INLINE CROSSHAIR ICON FOR 5,800+ ELIMINAÇÕES --- */
.crosshair-inline-icon {
  color: var(--primary-green);
  margin-right: 6px;
  font-size: 1.5rem;
  vertical-align: middle;
  filter: drop-shadow(0 0 8px rgba(0, 255, 102, 0.8));
  animation: crosshairPulse 2.5s infinite ease-in-out;
}

@keyframes crosshairPulse {
  0% { transform: scale(1) rotate(0deg); opacity: 0.9; }
  50% { transform: scale(1.18) rotate(45deg); opacity: 1; filter: drop-shadow(0 0 14px rgba(0, 255, 102, 1)); }
  100% { transform: scale(1) rotate(90deg); opacity: 0.9; }
}

/* ==========================================================================
   OFFICIAL NEWS / NOTÍCIAS DO CLUBE SECTION
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 255, 102, 0.25);
}

.news-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #040805;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img {
  transform: scale(1.08);
}

.news-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 9, 7, 0.9);
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  padding: 5px 12px;
  border-radius: 50px;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.news-category-badge.badge-health {
  border-color: #10b981;
  color: #34d399;
}

.news-category-badge.badge-manto {
  border-color: #f59e0b;
  color: #fbbf24;
}

.news-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-read-time {
  color: var(--primary-green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.news-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.25;
  margin-bottom: 12px;
  transition: var(--transition);
}

.news-card:hover .news-title {
  color: var(--primary-green);
}

.news-excerpt {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.news-footer {
  margin-top: auto;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.88rem;
  width: 100%;
  justify-content: center;
}

/* --- NEWS MODAL STYLES --- */
.news-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.news-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.news-modal-container {
  position: relative;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  border-color: var(--glass-border-hover);
  background: rgba(10, 16, 12, 0.96);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 255, 102, 0.3);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-modal-overlay.active .news-modal-container {
  transform: scale(1);
}

.news-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--glass-border);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.news-modal-close:hover {
  background: var(--primary-green);
  color: #000;
  transform: rotate(90deg);
}

.modal-news-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  margin-bottom: 24px;
}

.modal-news-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid var(--primary-green);
  border-radius: 50px;
  color: var(--primary-green);
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.modal-news-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.modal-news-text {
  color: #e5e7eb;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ==========================================================================
   NEW STATS & TACTICAL PERFORMANCE SECTION STYLES
   ========================================================================== */

.stats-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.stat-highlight-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.stat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.stat-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

.stat-icon-box.icon-emerald {
  background: rgba(16, 185, 129, 0.15);
  border-color: #34d399;
  color: #34d399;
}

.stat-icon-box.icon-gold {
  background: rgba(245, 158, 11, 0.15);
  border-color: #fbbf24;
  color: #fbbf24;
}

.stat-badge {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  letter-spacing: 1px;
}

.stat-badge.badge-cyan {
  border-color: #34d399;
  color: #34d399;
}

.stat-badge.badge-gold {
  border-color: #fbbf24;
  color: #fbbf24;
}

.stat-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.stat-big-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--primary-green);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat-big-number .unit {
  font-family: var(--font-tech);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 1px;
}

.stat-card-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.stat-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #047857, var(--primary-green));
  border-radius: 10px;
  box-shadow: 0 0 10px var(--primary-green);
  transition: width 1s ease-in-out;
}

.progress-fill.fill-cyan {
  background: linear-gradient(90deg, #059669, #34d399);
  box-shadow: 0 0 10px #34d399;
}

.progress-fill.fill-gold {
  background: linear-gradient(90deg, #d97706, #fbbf24);
  box-shadow: 0 0 10px #fbbf24;
}

/* CHART CONTAINER */
.chart-container-box {
  padding: 36px;
  text-align: left;
}

.chart-header-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 35px;
}

.chart-box-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chart-box-title i {
  color: var(--primary-green);
}

.chart-subtitle {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.chart-tab-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chart-tab-btn {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.chart-tab-btn:hover, .chart-tab-btn.active {
  background: rgba(0, 255, 102, 0.15);
  border-color: var(--primary-green);
  color: var(--primary-green);
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

/* BAR CHART VISUAL */
.chart-visual-area {
  background: rgba(4, 7, 5, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 35px 20px 20px 20px;
  margin-bottom: 24px;
}

.chart-bars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  height: 260px;
  align-items: end;
}

@media (max-width: 576px) {
  .chart-bars-grid {
    height: 220px;
    gap: 10px;
  }
}

.chart-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.bar-fill-wrap {
  width: 100%;
  max-width: 70px;
  height: 80%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-sm);
  position: relative;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bar-fill {
  width: 100%;
  background: linear-gradient(180deg, var(--primary-green), #047857);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
  transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-bar .bar-fill {
  background: linear-gradient(180deg, #00ff66, #10b981);
  box-shadow: 0 0 25px rgba(0, 255, 102, 0.8);
}

.bar-value-tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 255, 102, 0.2);
  border: 1px solid var(--primary-green);
  color: #fff;
  font-family: var(--font-tech);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.bar-label {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 12px;
  text-align: center;
}

.chart-footer-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  background: rgba(0, 255, 102, 0.05);
  border: 1px solid var(--glass-border);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
}

.chart-footer-note i {
  color: var(--primary-green);
  margin-right: 6px;
}

/* ORDER ACTION & DESTINATION NOTE */
.customizer-order-action {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.order-destination-note {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.order-destination-note strong {
  color: var(--primary-green);
}

/* ORDER CONFIRMATION MODAL */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 5, 0.88);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.order-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.order-modal-container {
  max-width: 520px;
  width: 100%;
  padding: 32px;
  position: relative;
  border-color: var(--primary-green);
  box-shadow: 0 0 40px rgba(0, 255, 102, 0.25);
  animation: modalSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.order-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.order-modal-close:hover {
  color: var(--primary-green);
}

.order-success-icon {
  font-size: 3.5rem;
  color: var(--primary-green);
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(0, 255, 102, 0.6);
}

.order-modal-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.order-modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.order-summary-box {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: left;
  margin-bottom: 16px;
}

.order-summary-box h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary-green);
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.order-summary-item:last-child {
  border-bottom: none;
}

.order-summary-item span {
  color: var(--text-muted);
}

.order-summary-item strong {
  color: #fff;
  font-weight: 700;
}

.order-email-info {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

.order-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


