/* ===== ROSHAN DESIGN SYSTEM - CSS COMPLET ===== */
/* Version: 2.0 | Toutes classes originales + titres */

/* ===== VARIABLES ===== */
:root {
  /* Light Mode (Défaut) */
  --roshan-primary: #F00028;
  --roshan-primary-light: #F44965;
  --roshan-primary-dark: #CE0022;
  --roshan-secondary: #0046B4;
  --roshan-surface: #FFFFFF;
  --roshan-surface-subtle: #F1F2F2;
  --roshan-surface-shade: #EBEBEC;
  --roshan-text-title: #191728;
  --roshan-text-body: #474653;
  --roshan-border: #D1D3D4;
  --roshan-bg: #F1F2F2;
  --roshan-disabled: #ADADB2;
  --roshan-success: #4FC35D;
  --roshan-warning: #F7C45D;
  --roshan-error: #F00028;
}

/* Dark Mode (Automatique via préférences OS) */
@media (prefers-color-scheme: dark) {
  :root {
    --roshan-primary: #F66D84;
    --roshan-primary-light: #F992A3;
    --roshan-primary-dark: #F22447;
    --roshan-surface: #191728;
    --roshan-surface-subtle: #302E3D;
    --roshan-surface-shade: #474653;
    --roshan-text-title: #EBEBEC;
    --roshan-text-body: #EBEBEC;
    --roshan-border: #5E5D68;
    --roshan-bg: #020012;
    --roshan-disabled: #75747E;
  }
   /* Corrections spécifiques au Dark Mode */
  input:read-only {
    background-color: var(--roshan-surface-shade);
  }
  
  .otp:invalid {
    background-color: #5a3a3a;
    border: 1px solid var(--roshan-error);
  }
   .form-check-input {
    border-color: var(--roshan-border);
  }
  
  .form-check-input:checked {
    background-color: var(--roshan-primary-light);
    border-color: var(--roshan-primary-light);
  }
}

/* ===== BASE ===== */
html {
  position: relative;
  min-height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, sans-serif;
  transition: background-color 0.3s, color 0.2s, border-color 0.3s;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 20px;
  background-color: var(--roshan-bg);
  color: var(--roshan-text-body);
}

/* ===== TYPOGRAPHIE ===== */
h1 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 700;
  color: var(--roshan-text-title);
  margin-bottom: 24px;
}

h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--roshan-text-body);
  margin-bottom: 20px;
}

h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: var(--roshan-text-title);
  margin-bottom: 16px;
}

.body-text {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.subtitle {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--roshan-primary);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.info-section {
    background-color: var(--roshan-surface-subtle);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--roshan-border);
}

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

.info-label {
    color: var(--roshan-text-body);
    font-weight: 500;
    font-size: 15px;
}

.info-value {
    color: var(--roshan-text-title);
    font-weight: 600;
    font-size: 16px;
}

.caption {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

/* ===== COMPOSANTS ORIGINAUX ===== */
/* Subscription Card */
.subscription-card {
  background-color: var(--roshan-surface);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  padding: 24px;
  border: 1px solid var(--roshan-border);
  margin: 0 auto;
}

.subscription-card h2 {
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

/*.subscription-card h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--roshan-primary);
  margin: 12px auto 0;
}*/
.terms-card .app-name::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--roshan-primary);
  margin: 12px auto 0;
}

/* Subscription Card */
.terms-card {
  background-color: var(--roshan-surface);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
  padding: 24px;
  border: 1px solid var(--roshan-border);
  margin: 0 auto;
}

.terms-card h2 {
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

/*.subscription-card h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--roshan-primary);
  margin: 12px auto 0;
}*/
.terms-card .app-name::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--roshan-primary);
  margin: 12px auto 0;
}


/* a {
  color: var(--roshan-text-title);
  background-color: var(--roshan-surface);
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  padding:5px;
  margin: 0 auto;
}*/


/* App Header */
.app-header {
  margin-bottom: 24px;
  text-align: center;
}

.app-title {
  color: var(--roshan-text-body);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-name {
  color: var(--roshan-text-body);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

/* Language Selector */
.language-selector {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

.language-card {
  width: 84px;
  height: 84px;
  border: 1px solid var(--roshan-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: var(--roshan-surface);
}

.language-card.active {
  border-color: var(--roshan-primary);
  background-color: rgba(244, 73, 101, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(244, 73, 101, 0.1);
}

.language-code {
  background-color: rgba(244, 73, 101, 0.1);
  color: var(--roshan-primary);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  border: 1px solid rgba(244, 73, 101, 0.2);
}

.language-name {
  color: var(--roshan-text-title);
  font-size: 14px;
  font-weight: 500;
}

/* Input Fields */
.input-container {
  position: relative;
  margin: 5px 0;
}

.phone-input, 
.pwd-input {
  width: 100%;
  padding: 16px 16px 16px 50px;
  border: 1px solid var(--roshan-border);
  border-radius: 8px;
  font-size: 16px;
  background-color: var(--roshan-surface);
  color: var(--roshan-text-title);
}

.phone-input:focus, 
.pwd-input:focus {
  border-color: var(--roshan-primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(244, 73, 101, 0.2);
}

.input-prefix {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--roshan-text-body);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--roshan-text-body);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 16px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
}

/* Buttons */
.action-button {
  background-color: var(--roshan-primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.action-button:hover {
  background-color: var(--roshan-primary-light);
  transform: translateY(-2px);
}

.action-button:active {
  background-color: var(--roshan-primary-dark);
  transform: translateY(0);
}

.secondary-button {
  background-color: var(--roshan-surface-shade);
  color: var(--roshan-text-title);
  border: 1px solid var(--roshan-border);
  border-radius: 8px;
  padding: 16px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  text-align: center;
  display: inline-block;
}

.secondary-button:hover {
  background-color: var(--roshan-surface-subtle);
  transform: translateY(-2px);
}

.back-button {
  background: none;
  color: var(--roshan-primary);
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.back-button:hover {
  text-decoration: underline;
}

.button-group {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.button-group .action-button,
.button-group .secondary-button {
  margin-top: 0;
  flex: 1;
}

.login-button {
  text-transform: uppercase;
}
/* Ajoutez cette section à votre CSS existant */

.logout-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--roshan-border);
}

.logout-button {
    background: none;
    border: 1px solid var(--roshan-border);
    color: var(--roshan-text-body);
    border-radius: 8px;
    padding: 12px 20px;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logout-button:hover {
    background-color: rgba(240, 0, 40, 0.1);
    border-color: var(--roshan-primary);
    color: var(--roshan-primary);
}

/* Style pour le bouton Unsubscribe */
.action-button.secondary-button {
    background-color: var(--roshan-surface-shade);
    color: var(--roshan-text-title);
    border: 1px solid var(--roshan-border);
}

.action-button.secondary-button:hover {
    background-color: var(--roshan-surface-subtle);
}

/* Package Selection */
.package-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.package-card {
  border: 1px solid var(--roshan-border);
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  background-color: var(--roshan-surface);
}

.package-card.active {
  border-color: var(--roshan-primary);
  background-color: rgba(244, 73, 101, 0.1);
  box-shadow: 0 0 0 1px var(--roshan-primary);
}

.package-name {
  color: var(--roshan-text-title);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.package-price {
  color: var(--roshan-primary);
  font-size: 14px;
  font-weight: 600;
}

/* Theme Toggle */
.theme-toggle {
  position: fixed;
  bottom: 60px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--roshan-primary);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

/* Footer */
.footer {
  width: 100%;
  font-size: 14px;
  text-align: center;
  padding: 15px 0;
  color: var(--roshan-text-body);
  margin-top: auto;
}

/* ===== UTILITAIRES ===== */
.hidden { display: none; }
.text-center { text-align: center; }
.mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }




/* Hidden elements */
.hidden-select {
    display: none;
}
/* ===== STYLE POUR LES CONDITIONS ===== */
.terms {
  margin: 24px 0;
  padding: 12px;
  background-color: var(--roshan-surface-subtle);
  border-radius: 8px;
  border: 1px solid var(--roshan-border);
  font-size: 14px;
  line-height: 1.5;
}

.terms label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--roshan-text-body);
}

.terms a {
  color: var(--roshan-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.terms a:hover {
  color: var(--roshan-primary-dark);
  text-decoration: underline;
}

.terms input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--roshan-border);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.terms input[type="checkbox"]:checked {
  background-color: var(--roshan-primary);
  border-color: var(--roshan-primary);
}

.terms input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.terms input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(240, 0, 40, 0.2);
}
/* ===== STYLE POUR "REMEMBER ME" ===== */
/* Conteneur parent */
.form-check {
  display: flex;
  align-items: center; /* Alignement vertical */
  gap: 10px; /* Espace entre checkbox et texte */
  margin-bottom: 16px;
}

/* Checkbox personnalisée */
.form-check-input {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--roshan-border);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  margin: 0; /* Reset des marges */
  flex-shrink: 0; /* Empêche le rétrécissement */
  transform: translateY(1px); /* Ajustement pixel-perfect */
}

/* Label */
.form-label {
  color: var(--roshan-text-body);
  font-size: 14px;
  line-height: 1.4; /* Hauteur de ligne optimale */
  padding-top: 1px; /* Compensation parfaite */
  margin: 0; /* Reset des marges */
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--roshan-primary);
  border-color: var(--roshan-primary);
}

.form-check-input:checked::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(240, 0, 40, 0.2);
}

.form-check:hover .form-label {
  color: var(--roshan-text-title);
}

/* ===== STYLE DES MESSAGES D'ERREUR ===== */
.error-message {
  display: block;
  color: var(--roshan-error); /* Utilise la variable erreur de Roshan (#F00028) */
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin: 12px 0;
  padding: 8px;
  border-radius: 4px;
  background-color: rgba(240, 0, 40, 0.08); /* Fond semi-transparent */
  animation: fadeIn 0.3s ease-out;
}

.success-message {
  display: block;
  color: var(--roshan-success); /* Utilise la variable erreur de Roshan (#F00028) */
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin: 12px 0;
  padding: 8px;
  border-radius: 4px;
  background-color: rgba(40, 167, 69, 0.08); /* Fond semi-transparent */
  animation: fadeIn 0.3s ease-out;
}

.warning-message {
  display: block;
  color: var(--roshan-text-title); /* Utilise la variable erreur de Roshan (#F00028) */
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin: 12px 0;
  padding: 8px;
  border-radius: 4px;
  background-color: rgba(255, 193, 7, 0.08); /* Fond semi-transparent */
  animation: fadeIn 0.3s ease-out;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
.error-icon {
  vertical-align: middle;
  margin-right: 8px;
}

/* Style pour les états de validation */
.phone-input:valid {
  border-color: var(--roshan-success);
}

.phone-input:invalid:not(:placeholder-shown) {
  border-color: var(--roshan-error);
  background-color: rgba(240, 0, 40, 0.05);
}

.input-hint {
  font-size: 12px;
  color: var(--roshan-text-body);
  margin-top: 4px;
  opacity: 0.8;
}
.is-valid {
    border-color: var(--roshan-success);
    background-color: rgba(79, 195, 93, 0.05);
}
.is-invalid {
    border-color: var(--roshan-error);
    background-color: rgba(240, 0, 40, 0.05);
}

/* OTP CSS*/
/* ===== CHAMP OTP ===== */
/* ===== CHAMP OTP ===== */
/* Styles pour le champ OTP unique */
.otp-single-container {
  margin: 20px 0;
}

.single-otp-input {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--roshan-border);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  background-color: var(--roshan-surface);
  color: var(--roshan-text-title);
  letter-spacing: 8px;
}

.single-otp-input:focus {
  border-color: var(--roshan-primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(244, 73, 101, 0.2);
}

.single-otp-input::placeholder {
  letter-spacing: normal;
  font-weight: normal;
  color: var(--roshan-disabled);
}


/* old code otp */
.otp-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 0;
  max-width: 100%;
}

.otp-input {
  width: 50px;
  height: 50px;
  border: 1px solid var(--roshan-border);
  border-radius: 8px;
  background-color: var(--roshan-surface);
  color: var(--roshan-text-title);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  flex: 1;
  min-width: 0;
}

.otp-input:focus {
  border-color: var(--roshan-primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(244, 73, 101, 0.2);
  transform: scale(1.05);
}

.otp-input.filled {
  border-color: var(--roshan-primary);
  background-color: rgba(244, 73, 101, 0.1);
}

.otp-input.error {
  border-color: var(--roshan-error);
  background-color: rgba(240, 0, 40, 0.05);
}

.otp-input.success {
  border-color: var(--roshan-success);
  background-color: rgba(79, 195, 93, 0.05);
}

.otp-input:disabled {
  background-color: var(--roshan-surface-subtle);
  color: var(--roshan-disabled);
  cursor: not-allowed;
}

.otp-hint {
  text-align: center;
  font-size: 14px;
  color: var(--roshan-text-body);
  margin-top: 8px;
}

.otp-timer {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
  color: var(--roshan-primary);
}

.otp-resend {
  text-align: center;
  margin-top: 16px;
}

.otp-resend button {
  background: none;
  border: none;
  color: var(--roshan-primary);
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
}

.otp-resend button:disabled {
  color: var(--roshan-disabled);
  cursor: not-allowed;
  text-decoration: none;
}

/* Responsive adjustments for OTP */
@media (max-width: 480px) {
  .otp-container {
    gap: 8px;
  }
  
  .otp-input {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .subscription-card {
    padding: 20px 15px;
  }
}

@media (max-width: 350px) {
  .otp-container {
    gap: 5px;
  }
  
  .otp-input {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

.action-button:disabled,
.secondary-button:disabled,
.logout-button:disabled {
  background-color: var(--roshan-surface-shade);
  color: var(--roshan-disabled);
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

/* ===== MODAL STYLES ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.3s ease;
}

.modal-box {
  background: var(--roshan-surface);
  padding: 24px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease-out;
}

.modal-title {
  color: var(--roshan-text-title);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-message {
  color: var(--roshan-text-body);
  font-size: 16px;
  margin-bottom: 20px;
}

.modal-overlay.hidden {
  display: none;
}
/* ===== Terms STYLES ===== */
 /* Styles optimisés selon le Style Guide */
    .terms-page {
            max-width: 800px;
            margin: 0 auto;
            padding: 24px;
        }

        .terms-header {
            text-align: center;
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--roshan-border);
        }

        .terms-content {
            background-color: var(--roshan-surface);
            border-radius: 12px;
            padding: 32px;
            border: 1px solid var(--roshan-border);
            max-height: 70vh;
            overflow-y: auto;
            margin-bottom: 24px;
        }

        .terms-section {
            margin-bottom: 32px;
        }

        .terms-section:last-child {
            margin-bottom: 0;
        }

        .terms-section h2 {
            color: var(--roshan-primary);
            margin-bottom: 20px;
            font-size: 24px;
            line-height: 32px;
            font-weight: 700;
            border-bottom: 2px solid var(--roshan-primary);
            padding-bottom: 8px;
        }

        .terms-section h3 {
            color: var(--roshan-primary);
            margin-bottom: 16px;
            font-size: 18px;
            line-height: 24px;
            font-weight: 700;
        }

        .terms-section p {
            margin-bottom: 16px;
            line-height: 1.6;
            text-align: justify;
            font-size: 16px;
            line-height: 22px;
            font-weight: 400;
            color: var(--roshan-text-body);
        }

        .terms-section ul {
            margin-left: 24px;
            margin-bottom: 16px;
        }

        .terms-section li {
            margin-bottom: 12px;
            line-height: 1.5;
            font-size: 16px;
            line-height: 22px;
            color: var(--roshan-text-body);
            padding-left: 8px;
        }

        .terms-section li::marker {
            color: var(--roshan-primary);
            font-weight: bold;
        }

        .highlight-box {
            background-color: rgba(244, 73, 101, 0.08);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--roshan-primary);
            margin: 24px 0;
        }

        .highlight-box p {
            margin-bottom: 0;
            font-weight: 500;
            color: var(--roshan-text-title);
        }

        .back-container {
            margin-bottom: 24px;
        }

        .terms-note {
            background-color: var(--roshan-surface-subtle);
            padding: 16px;
            border-radius: 8px;
            border: 1px solid var(--roshan-border);
            margin: 20px 0;
            font-size: 14px;
            line-height: 18px;
            color: var(--roshan-text-body);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .terms-content {
                padding: 24px;
                max-height: 65vh;
            }
            
            .terms-page {
                padding: 20px;
            }
            
            .terms-section {
                margin-bottom: 24px;
            }
        }

        @media (max-width: 480px) {
            .terms-content {
                padding: 20px;
                max-height: 60vh;
            }
            
            .terms-page {
                padding: 16px;
            }
            
            .terms-section h2 {
                font-size: 20px;
                line-height: 28px;
            }
            
            .terms-section h3 {
                font-size: 17px;
            }
        }

        /* Style pour la scrollbar */
        .terms-content::-webkit-scrollbar {
            width: 6px;
        }

        .terms-content::-webkit-scrollbar-track {
            background: var(--roshan-surface-subtle);
            border-radius: 3px;
        }

        .terms-content::-webkit-scrollbar-thumb {
            background: var(--roshan-primary);
            border-radius: 3px;
        }

        .terms-content::-webkit-scrollbar-thumb:hover {
            background: var(--roshan-primary-dark);
        }