/* Styles communs pour toutes les pages */
.page-container {
    min-height: calc(100vh - 60px - 200px); /* Hauteur de la page moins header et footer */
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  }
  
  /* Styles pour les en-têtes de page */
  .page-header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
  }
  
  .page-title {
    font-family: "Bungee", cursive;
    font-size: 42px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .page-subtitle {
    font-family: "Russo One", sans-serif;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Styles pour la page de téléchargement */
  .download-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .download-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .download-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .download-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .platform-icon {
    width: 50px;
    height: 50px;
  }
  
  .download-title {
    font-family: "Orbitron", sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-blue);
  }
  
  .download-info {
    font-family: "Russo One", sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
  }
  
  .download-button {
    font-family: "Orbitron", sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(to bottom, var(--primary-green), var(--primary-blue));
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .download-button:hover {
    background: linear-gradient(to bottom, var(--primary-blue), var(--primary-green));
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Styles pour la prévisualisation du launcher */
  .launcher-preview {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
  }
  
  .launcher-title {
    font-family: "Orbitron", sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--primary-blue);
  }
  
  .launcher-image-container {
    width: 700px;
    margin: 0 auto 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .launcher-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }
  
  .launcher-description {
    font-family: "Russo One", sans-serif;
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Configuration requise */
  .system-requirements {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .requirements-title {
    font-family: "Orbitron", sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-blue);
  }
  
  .requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .requirement-card {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 20px;
  }
  
  .requirement-title {
    font-family: "Orbitron", sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-green);
    text-align: center;
  }
  
  .requirement-list {
    list-style-type: none;
    padding: 0;
  }
  
  .requirement-list li {
    font-family: "Russo One", sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
  }
  
  .requirement-list li strong {
    color: #333;
  }
  
  /* Styles pour les pages d'authentification */
  .auth-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .auth-card {
    flex: 1;
    padding: 40px;
  }
  
  .register-card {
    max-width: 600px;
  }
  
  .auth-image {
    flex: 1;
    background-color: var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .auth-pets-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
  }
  
  .auth-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .auth-title {
    font-family: "Bungee", cursive;
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary-blue);
  }
  
  .auth-subtitle {
    font-family: "Russo One", sans-serif;
    font-size: 16px;
    color: #666;
  }
  
  .auth-form {
    margin-bottom: 20px;
  }
  
  .form-message {
    background-color: rgba(var(--primary-blue-rgb), 0.1);
    border-left: 4px solid var(--primary-blue);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
  }
  
  .form-message p {
    font-family: "Russo One", sans-serif;
    font-size: 14px;
    color: #555;
    margin: 0;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .form-row .form-group {
    flex: 1;
    margin-bottom: 0;
  }
  
  .form-label {
    display: block;
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
  }
  
  .form-input {
    width: 100%;
    padding: 12px 15px;
    font-family: "Russo One", sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  .form-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(var(--primary-blue-rgb), 0.2);
    outline: none;
  }
  
  .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
  }
  
  .remember-me,
  .terms-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .form-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
  }
  
  .checkbox-label {
    font-family: "Russo One", sans-serif;
    font-size: 14px;
    color: #555;
  }
  
  .forgot-password {
    font-family: "Russo One", sans-serif;
    font-size: 14px;
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .forgot-password:hover {
    color: var(--primary-green);
    text-decoration: underline;
  }
  
  .terms-link {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .terms-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
  }
  
  .auth-submit-button {
    width: 100%;
    font-family: "Orbitron", sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(to bottom, var(--button-orange-light), var(--button-orange));
    border: none;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .auth-submit-button:hover {
    background: linear-gradient(to bottom, var(--button-orange), var(--button-orange-light));
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
  
  .auth-footer p {
    font-family: "Russo One", sans-serif;
    font-size: 14px;
    color: #666;
  }
  
  .auth-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .auth-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
  }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .download-options {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .auth-container {
      flex-direction: column;
    }
  
    .auth-image {
      display: none;
    }
  
    .launcher-image-container {
      width: 100%;
      max-width: 700px;
    }
  }
  
  @media (max-width: 768px) {
    .requirements-grid {
      grid-template-columns: 1fr;
    }
  
    .form-row {
      flex-direction: column;
      gap: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .download-options {
      grid-template-columns: 1fr;
    }
  
    .page-title {
      font-size: 32px;
    }
  
    .auth-title {
      font-size: 28px;
    }
  
    .auth-card {
      padding: 30px 20px;
    }
  }
  
  /* Variables RGB pour les couleurs */
  :root {
    --primary-blue-rgb: 26, 155, 199;
    --primary-green-rgb: 92, 208, 168;
    --primary-yellow-rgb: 249, 230, 140;
  }
  /* Styles pour la page de maintenance/boutique indisponible */
.maintenance-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.maintenance-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.maintenance-image {
  width: 70px;
  height: 70px;
}

.maintenance-title {
  font-family: "Bungee", cursive;
  font-size: 32px;
  color: var(--primary-blue);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.maintenance-message {
  font-family: "Russo One", sans-serif;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.maintenance-message p {
  margin-bottom: 15px;
}

.support-title {
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-green);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.support-card {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.support-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discord-icon {
  background-color: var(--discord-color);
}

.ingame-icon {
  background-color: var(--ingame-color);
}

.support-icon-image {
  width: 40px;
  height: 40px;
}

.support-card-title {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.support-card-text {
  font-family: "Russo One", sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.support-button {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.discord-button {
  background-color: var(--discord-color);
}

.discord-button:hover {
  background-color: #5b6eae;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.ingame-button {
  background-color: var(--ingame-color);
}

.ingame-button:hover {
  background-color: #e64a19;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.return-home {
  margin-top: 20px;
}

.return-button {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(to bottom, var(--button-orange-light), var(--button-orange));
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.return-button:hover {
  background: linear-gradient(to bottom, var(--button-orange), var(--button-orange-light));
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Styles pour la page de profil */
.profile-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.profile-header {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-green);
  margin-right: 20px;
  flex-shrink: 0;
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  flex-grow: 1;
}

.profile-username {
  font-family: "Bungee", cursive;
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.profile-status {
  font-family: "Russo One", sans-serif;
  font-size: 14px;
  color: #666;
}

.profile-currency {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 20px;
}

.ogrines-display {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  padding: 10px 15px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.currency-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.currency-amount {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: #ff9800;
}

.buy-ogrines-button {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  color: white;
  background-color: #ff9800;
  border: none;
  border-radius: 15px;
  padding: 8px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.buy-ogrines-button:hover {
  background-color: #f57c00;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-tabs {
  display: flex;
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-button {
  flex: 1;
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  color: #555;
  background-color: transparent;
  border: none;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-green);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-button:hover {
  color: var(--primary-blue);
}

.tab-button.active {
  color: var(--primary-blue);
  background-color: rgba(var(--primary-green-rgb), 0.1);
}

.tab-button.active:after {
  transform: scaleX(1);
}

.profile-content {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.account-info-card {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

.account-info-card:last-child {
  margin-bottom: 0;
}

.card-title {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(var(--primary-blue-rgb), 0.2);
}

.info-group {
  display: flex;
  margin-bottom: 15px;
}

.info-label {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #555;
  width: 150px;
  flex-shrink: 0;
}

.info-value {
  font-family: "Russo One", sans-serif;
  font-size: 14px;
  color: #333;
}

.info-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.profile-action-button {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  color: white;
  background-color: var(--primary-blue);
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-action-button:hover {
  background-color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.stat-item {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.stat-value {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: var(--primary-green);
  margin-bottom: 5px;
}

.stat-label {
  font-family: "Russo One", sans-serif;
  font-size: 12px;
  color: #666;
}

.preferences-group {
  margin-bottom: 20px;
}

.preference-item {
  margin-bottom: 15px;
}

.preference-label {
  font-family: "Russo One", sans-serif;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.preference-checkbox {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
}

.empty-state-image {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
}

.empty-state-title {
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.empty-state-text {
  font-family: "Russo One", sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.empty-state-button {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(to bottom, var(--primary-green), var(--primary-blue));
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.empty-state-button:hover {
  background: linear-gradient(to bottom, var(--primary-blue), var(--primary-green));
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 992px) {
  .support-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .profile-header {
    flex-direction: column;
    text-align: center;
  }

  .profile-avatar {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .profile-currency {
    margin-left: 0;
    margin-top: 20px;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .profile-tabs {
    flex-direction: column;
  }

  .tab-button {
    padding: 12px;
  }

  .info-group {
    flex-direction: column;
  }

  .info-label {
    width: 100%;
    margin-bottom: 5px;
  }
}

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

  .info-actions {
    flex-direction: column;
    gap: 10px;
  }

  .profile-action-button {
    width: 100%;
  }
}

/* Variables supplémentaires pour les couleurs */
:root {
  --discord-color: #7289da;
  --ingame-color: #ff5722;
}
