/* ===== STYLES GLOBAUX GAINTRACKERGO ===== */

:root {
  --bg: #1E1E1E;            /* AppTheme.darkGrey */
  --card: #2A2A2A;          /* AppTheme.grey */
  --text: #FFFFFF;          /* AppTheme.white */
  --muted: #CCCCCC;         /* AppTheme.textGrey */
  --accent: #FF6B35;        /* AppTheme.orange */
  --accent-2: #FFD700;      /* AppTheme.yellow */
  --primary-green: #4ECDC4; /* AppTheme.primaryGreen */
  --light-grey: #ECF0F1;    /* AppTheme.lightGrey */
}

/* ===== RÉINITIALISATION ET BASE ===== */
html, body { 
  background: var(--bg); 
  color: var(--text); 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* ===== NAVIGATION ===== */
.navbar { 
  background: rgba(30,30,30,.8); 
  backdrop-filter: blur(6px); 
}

.navbar .nav-link, .navbar-brand { 
  color: var(--text) !important; 
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

/* ===== BOUTONS ===== */
.btn-accent { 
  background: var(--accent); 
  color: #fff; 
  border: none; 
}

.btn-accent:hover { 
  background: #e45f2f; 
  color: #fff; 
}

.btn-ghost { 
  color: var(--text); 
  border: 1px solid #ffffff22; 
}

.btn-primary {
  background: var(--accent);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-green);
  transform: translateY(-2px);
}

/* ===== TYPOGRAPHIE ===== */
.text-muted { 
  color: var(--muted) !important; 
}

.hero h1 { 
  font-weight: 800; 
  letter-spacing: .3px; 
}

.section-title { 
  font-weight: 800; 
  color: var(--accent);
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--primary-green);
  padding-bottom: 10px;
}

/* ===== SECTIONS ===== */
.hero {
  background: radial-gradient(80% 120% at 80% 10%, #ff6b351a 0%, transparent 60%),
              radial-gradient(60% 100% at 0% 0%, #ffd70014 0%, transparent 70%);
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.hero-section {
  background: linear-gradient(135deg, var(--accent), var(--primary-green));
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.content-section {
  background: var(--card);
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* ===== CARTES ===== */
.card {
  background: var(--card);
  border: 1px solid #ffffff12;
  color: var(--text);
}

.feature-card {
  background: var(--card);
  border-radius: 15px;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border-left: 5px solid var(--accent);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* ===== ICÔNES ET BADGES ===== */
.feature-icon {
  width: 48px; 
  height: 48px; 
  border-radius: 12px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  background: #ffffff10; 
  color: var(--accent);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.badge-soft {
  background: #ffffff12; 
  color: var(--text); 
  border: 1px solid #ffffff18;
}

/* ===== SECTIONS LÉGALES ===== */
.legal-section {
  background: #ffffff08;
  padding: 40px;
  border-radius: 10px;
  margin: 20px 0;
  border: 1px solid #ffffff12;
}

.legal-section h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.legal-section ul {
  padding-left: 20px;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.highlight-box {
  background: linear-gradient(135deg, var(--accent), var(--primary-green));
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.contact-info {
  background: var(--light-grey);
  color: var(--bg);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin: 20px 0;
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  color: var(--primary-green);
}

/* ===== CAPTURES D'ÉCRAN ===== */
.screenshot {
  border-radius: 12px; 
  border: 1px solid #ffffff12; 
  background: #000;
  width: 85%; 
  height: auto; 
  object-fit: cover;
  display: block; 
  margin-left: auto; 
  margin-right: auto;
}

.screenshot.half { 
  width: 42.5% !important; 
}

/* ===== STORE BADGES ===== */
.store-badge img { 
  height: 44px; 
}

/* ===== PRICING ===== */
.pricing .card { 
  transition: transform .2s ease; 
}

.pricing .card:hover { 
  transform: translateY(-4px); 
}

/* ===== FOOTER ===== */
footer { 
  border-top: 1px solid #ffffff12; 
}

.footer {
  background: var(--bg);
  color: white;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #ffffff12;
}

/* ===== LIENS ===== */
a { 
  color: var(--accent); 
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1200px) {
  .col-5th { 
    flex: 0 0 20%; 
    max-width: 20%; 
  }
}

/* ===== UTILITAIRES ===== */
.text-center {
  text-align: center;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.me-2 {
  margin-right: 0.5rem;
}

.ms-auto {
  margin-left: auto;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.px-4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.rounded-pill {
  border-radius: 50rem;
}

.fw-bold {
  font-weight: bold;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-5 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== STYLES SPÉCIFIQUES PAGES LÉGALES ===== */
.language-section { 
  margin-bottom: 3rem; 
}

.language-section h2 { 
  color: var(--accent); 
  margin-bottom: 1.5rem; 
}

/* ===== STYLES SPÉCIFIQUES TERMS OF USE ===== */
.legal-section h4 {
  color: var(--primary-green);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section strong {
  color: var(--accent);
}

.legal-section .highlight-box h5 {
  margin-bottom: 1rem;
}

.legal-section .highlight-box i {
  margin-right: 0.5rem;
}
