<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Importation des polices Google */
@import url("https://fonts.googleapis.com/css2?family=Bungee&amp;family=Orbitron:wght@400;700&amp;family=Russo+One&amp;display=swap");

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Colors */
:root {
  --primary-green: #5cd0a8;
  --primary-blue: #1a9bc7;
  --light-blue: #7ecfe6;
  --primary-yellow: #f9e68c;
  --dark-yellow: #f8d87d;
  --primary-red: #ff6b6b;
  --bright-yellow: #ffeb3b;
  --turquoise: #00c8c8;
  --separator-gold: #f8d87d;
  --launcher-purple: #8a7aa8;
  --ankama-turquoise: #00bcd4;
  --ankama-yellow: #f9ed69;
  --nav-turquoise: #6ad9b7; /* Couleur exacte de la barre de navigation */
  --button-orange: #ff9d6c;
  --button-orange-light: #ffb38a;
  --button-shadow: #e67e22;
  --discord-color: #7289da;
  --support-color: #4caf50;
  --ingame-color: #ff5722;
  --footer-bg: #222;
}

/* Mise Ã&nbsp; jour des styles de base */
body {
  font-family: "Russo One", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Mise Ã&nbsp; jour de la navigation */
.main-nav {
  background-color: var(--nav-turquoise);
  padding: 0;
  color: white;
  position: relative;
  height: 60px; /* Augmentation de la hauteur */
  z-index: 100; /* S'assurer que la navigation est au-dessus des autres Ã©lÃ©ments */
}

/* Mise Ã&nbsp; jour de la navigation pour pousser les boutons complÃ¨tement Ã&nbsp; droite */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-links {
  display: flex;
  justify-content: flex-start; /* Aligner Ã&nbsp; gauche */
  align-items: center;
  height: 100%;
  gap: 40px; /* Espacement entre les liens */
}

.nav-link {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 16px; /* Texte plus grand */
  text-transform: uppercase;
  height: 100%;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
  color: white;
  padding: 0 10px;
}

/* Boutons d'authentification */
.auth-buttons {
  display: flex;
  gap: 15px;
  margin-left: auto; /* Pousse les boutons complÃ¨tement Ã&nbsp; droite */
}

.auth-button {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 14px; /* Texte plus grand */
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  background: linear-gradient(to bottom, var(--button-orange-light), var(--button-orange));
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 8px 20px; /* Boutons plus grands */
  position: relative;
  box-shadow: 0 3px 0 var(--button-shadow), 0 4px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.1s ease;
  letter-spacing: 1px;
  overflow: hidden;
}

.auth-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px 20px 0 0;
}

.auth-button:hover {
  background: linear-gradient(to bottom, #ffceb1, var(--button-orange-light));
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--button-shadow), 0 6px 6px rgba(0, 0, 0, 0.3);
}

.auth-button:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--button-shadow), 0 2px 2px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(to bottom, var(--primary-green), var(--light-blue));
  height: 400px; /* Hauteur rÃ©duite pour Ã©viter que le logo ne se cache sous le header */
  overflow: hidden;
  padding-top: 20px; /* Ajouter un peu d'espace en haut */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-bg.png");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
  text-align: center;
}

.hero-box {
  background-color: var(--primary-blue);
  padding: 16px;
  border-radius: 8px;
  border: 4px solid white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Styles pour le conteneur du logo */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.your-logo {
  width: 250px;
  height: 250px;
  border-radius: 10px;
  display: block;
  animation: float 6s ease-in-out infinite;
  object-fit: contain;
}

/* Floating pets */
.floating-pet {
  position: absolute;
  z-index: 5;
}

/* Animations pour les images flottantes */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes swing {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

/* Appliquer diffÃ©rentes animations aux images flottantes */
.black-pet {
  left: 20%;
  top: 30%;
  width: 150px;
  animation: float 6s ease-in-out infinite;
}

.yellow-pet {
  right: 20%;
  top: 40%;
  width: 120px;
  animation: bounce 7s ease-in-out infinite;
}

.egg {
  left: 30%;
  bottom: 10%;
  width: 100px;
  animation: pulse 8s ease-in-out infinite;
}

.small-yellow-pet {
  right: 15%;
  bottom: 20%;
  width: 50px;
  animation: swing 5s ease-in-out infinite;
}

.small-brown-pet {
  left: 10%;
  top: 20%;
  width: 60px;
  animation: float 9s ease-in-out infinite;
}

/* Section Separators */
.section-with-separator {
  position: relative;
}

/* Effet de flou noir en haut de chaque section */
.black-blur-effect {
  position: absolute;
  width: 100%;
  height: 30px; /* Hauteur de l'effet de flou */
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  z-index: 5;
}

/* S'assurer que les titres de sections sont en gras et centrÃ©s */
.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
}

/* Boutique Section */
.boutique-section {
  background-color: var(--primary-yellow);
  padding: 32px 0 60px;
  position: relative;
}

.boutique-section .section-title {
  color: #e67e22;
}

.boutique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.boutique-item {
  background-color: var(--dark-yellow);
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.boutique-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.boutique-image-container {
  position: relative;
  margin-bottom: 12px;
}

.boutique-tag {
  position: absolute;
  top: -16px;
  left: -16px;
  background-color: var(--primary-green);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  font-family: "Orbitron", sans-serif;
  z-index: 2;
}

.boutique-tag.promo {
  background-color: var(--primary-red);
}

.boutique-image {
  width: 100%;
  border-radius: 4px;
  height: 180px;
  object-fit: cover;
}

/* Petits titres - Orbitron */
.boutique-item h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #333;
}

.boutique-description {
  font-family: "Russo One", sans-serif;
  font-weight: normal;
  font-size: 13px;
  line-height: 1.4;
  color: #555;
  margin-bottom: 12px;
  flex-grow: 1;
}

.boutique-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

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

.price-old {
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  color: #888;
  text-decoration: line-through;
  margin-right: 8px;
}

.buy-button {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  color: white;
  background-color: var(--primary-green);
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background-color 0.3s;
}

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

/* Ajustement pour les boutons */
.more-boutique-button {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  background: linear-gradient(to bottom, var(--button-orange-light), var(--button-orange));
  border: 3px solid #fff;
  border-radius: 30px;
  padding: 15px 40px;
  position: relative;
  box-shadow: 0 6px 0 var(--button-shadow), 0 7px 7px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.1s ease;
  letter-spacing: 1px;
  overflow: hidden;
  margin: 10px 0;
}

.more-boutique-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px 30px 0 0;
}

.more-boutique-button:hover {
  background: linear-gradient(to bottom, #ffceb1, var(--button-orange-light));
  transform: translateY(-3px);
  box-shadow: 0 9px 0 var(--button-shadow), 0 10px 10px rgba(0, 0, 0, 0.3);
}

.more-boutique-button:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 var(--button-shadow), 0 4px 4px rgba(0, 0, 0, 0.2);
}

/* Ajuster le conteneur du bouton pour mieux l'espacer */
.more-boutique {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 10px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .boutique-grid,
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .evolution-content,
  .community-content {
    flex-direction: column;
  }

  .evolution-text,
  .evolution-image,
  .community-text,
  .community-image {
    width: 100%;
    padding: 0;
  }

  .evolution-image,
  .community-image {
    margin-top: 24px;
    text-align: center;
  }

  .community-image {
    order: 2;
  }

  .community-text {
    order: 1;
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    padding: 10px 0;
    height: auto;
  }

  .main-nav {
    height: auto;
  }

  .nav-links {
    justify-content: space-around;
    gap: 10px;
    margin-bottom: 10px;
  }

  .auth-buttons {
    margin-bottom: 10px;
  }

  .nav-link {
    font-size: 12px;
  }

  .hero-section {
    height: 350px;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-logo,
  .footer-links {
    width: 100%;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 24px;
  }

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

@media (max-width: 576px) {
  .hero-box {
    padding: 12px;
  }

  .hero-section {
    height: 300px;
  }

  .evolution-text h2 {
    font-size: 28px;
  }

  .evolution-text h3,
  .community-text h2,
  .community-text h3 {
    font-size: 24px;
  }

  .launcher-title {
    font-size: 24px;
  }

  .launcher-subtitle {
    font-size: 20px;
  }

  .crossmedia-title {
    font-size: 24px;
  }

  .community-button {
    font-size: 16px;
    padding: 12px 30px;
  }
}

.evolution-section {
  background-color: var(--primary-green);
  padding: 32px 0 60px;
  position: relative;
}

.evolution-section .section-title {
  color: white;
}

.evolution-content {
  display: flex;
  padding-top: 16px;
  margin-top: 20px;
}

.evolution-text {
  width: 50%;
  padding-right: 32px;
}

.evolution-image {
  width: 50%;
}

/* Grands titres - Bungee */
.evolution-text h2 {
  font-family: "Bungee", cursive;
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Petits titres - Orbitron */
.evolution-text h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.white-text {
  color: white;
}

.red-text {
  color: var(--primary-red);
}

.yellow-text {
  color: var(--bright-yellow);
}

/* Textes et descriptions - Russo One */
.evolution-text p {
  font-family: "Russo One", sans-serif;
  font-weight: normal;
  font-size: 13px;
  line-height: 1.5;
  color: white;
  margin-bottom: 16px;
}

/* Styles pour la description du serveur */
.server-description {
  font-family: "Russo One", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.6;
  color: white;
  margin-bottom: 16px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-red);
}

/* Styles pour la section Ã©vÃ©nements du serveur */
.server-events {
  margin-top: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid var(--bright-yellow);
}

.events-title {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: var(--bright-yellow);
  margin-bottom: 10px;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.events-description {
  font-family: "Russo One", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: white;
}

.highlight-text {
  color: var(--primary-yellow);
  font-weight: bold;
  font-size: 16px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Community Section */
.community-section {
  background-color: var(--turquoise);
  padding: 32px 0 60px;
  position: relative;
}

.community-section .section-title {
  color: white;
}

.community-content {
  display: flex;
  padding-top: 16px;
  margin-top: 20px;
}

.community-image {
  width: 50%;
}

.community-text {
  width: 50%;
  padding-left: 32px;
}

/* Grands titres - Bungee */
.community-text h2 {
  font-family: "Bungee", cursive;
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Petits titres - Orbitron */
.community-text h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* Textes et descriptions - Russo One */
.community-text p {
  font-family: "Russo One", sans-serif;
  font-weight: normal;
  font-size: 13px;
  line-height: 1.5;
  color: white;
}

/* Crossmedia Section */
.crossmedia-section {
  background-color: var(--ankama-turquoise);
  padding: 40px 0 60px;
  position: relative;
  text-align: center;
}

/* Grands titres - Bungee */
.crossmedia-title {
  font-family: "Bungee", cursive;
  font-size: 36px;
  font-weight: normal;
  color: var(--ankama-yellow);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.launcher-image {
  max-width: 700px;
  width: 100%;
  height: auto;
  margin: 30px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer simplifiÃ© */
.footer {
  background-color: var(--footer-bg);
  color: white;
  padding: 40px 0 24px;
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.footer-logo {
  width: 20%;
}

.footer-ankama-logo {
  width: 120px;
}

.footer-nav {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-link {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--primary-yellow);
}

.footer-auth-buttons {
  display: flex;
  gap: 15px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #444;
  font-size: 12px;
  color: #999;
}

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

  .footer-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-nav {
    width: 100%;
    flex-direction: column;
  }

  .footer-links {
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer-auth-buttons {
    justify-content: center;
  }
}
</pre></body></html>