/* Base Styles */
@font-face {
  font-family: "KrosmFont";
  src: url("../fonts/krosm-font.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-background: #050a1f;
  --color-background-light: #0c1631;
  --color-background-dark: #081025;
  --color-text: #ffffff;
  --color-text-muted: #f8f8f8;
  --color-pink: #ff5baa;
  --color-orange: #ff5f3f;
  --color-green: #5aff8f;
  --color-yellow: #ffcf3f;
  --color-purple: #9933ff;
  --color-border: #333333;
}

body {
  font-family: "KrosmFont", system-ui, sans-serif;
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

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

.hidden {
  display: none;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-menu-left,
.header-menu-right {
  display: none;
}

.header-logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 32px;
  width: auto;
}

.menu-link {
  color: var(--color-text);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.menu-link:hover,
.menu-link.active {
  color: var(--color-pink);
}

.mobile-menu-toggle {
  display: block;
}

.mobile-menu-toggle button {
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
}

.mobile-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease-in-out;
}

.mobile-menu.open {
  max-height: 384px;
  opacity: 1;
}

.mobile-menu-content {
  padding: 0.5rem 0;
}

.mobile-menu-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: var(--color-pink);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cosmic-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 10, 31, 0.3), transparent, rgba(5, 10, 31, 1));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-subtitle {
  color: var(--color-pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.hero-logo-container {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.hero-logo {
  max-width: 500px;
  margin: 0 auto;
}

.hero-tagline {
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 2rem auto 3rem;
  border: 2px solid var(--color-border);
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 91, 170, 0.3);
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 91, 170, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.play-button:hover {
  background-color: var(--color-pink);
}

.play-button svg {
  color: white;
  margin-left: 4px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.social-link:hover {
  opacity: 0.8;
}

.social-link.facebook {
  background-color: #3b5998;
}

.social-link.twitter {
  background-color: #1da1f2;
}

.social-link.youtube {
  background-color: #ff0000;
}

.social-link.twitch {
  background-color: #6441a5;
}

.hero-title-container {
  margin-top: 3rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-yellow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-subtitle-large {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Separator */
.section-separator {
  height: 4px;
  position: relative;
  overflow: hidden;
}

.separator-blur {
  position: absolute;
  inset: 0;
  filter: blur(2px);
}

.section-separator:nth-of-type(1) .separator-blur {
  background: linear-gradient(to bottom, var(--color-background), var(--color-background-light));
}

.section-separator:nth-of-type(2) .separator-blur {
  background: linear-gradient(to bottom, var(--color-background-light), var(--color-background-dark));
}

.section-separator:nth-of-type(3) .separator-blur {
  background: linear-gradient(to bottom, var(--color-background-dark), var(--color-background-dark));
}

.section-separator:nth-of-type(4) .separator-blur {
  background: linear-gradient(to bottom, var(--color-background-dark), var(--color-background-dark));
}

.section-separator:nth-of-type(5) .separator-blur {
  background: linear-gradient(to bottom, var(--color-background-dark), var(--color-background));
}

/* Battle Section */
.battle-section {
  position: relative;
  padding: 6rem 0;
  background-color: var(--color-background-light);
  text-align: center;
}

.battle-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/battle-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.battle-characters {
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.battle-image {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  position: relative;
  z-index: 1;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title.green {
  color: var(--color-green);
}

.section-title.yellow {
  color: var(--color-yellow);
}

.section-subtitle {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.section-subtitle.yellow {
  color: var(--color-yellow);
}

.section-divider {
  width: 128px;
  height: 2px;
  background-color: var(--color-orange);
  margin: 1rem auto;
  position: relative;
  z-index: 1;
}

.section-divider.green {
  background-color: var(--color-green);
}

.section-divider.yellow {
  background-color: var(--color-yellow);
}

.section-tagline {
  font-size: 1.3rem;
  color: var(--color-yellow);
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.section-description {
  font-size: 1.875rem;
  color: var(--color-text-muted);
  margin-top: 2rem;
  max-width: 1200pxpx;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* God Section */
.god-section {
  position: relative;
  padding: 6rem 0;
  background-color: var(--color-background-dark);
  text-align: center;
}
/* Cards Section */
.cards-section {
  position: relative;
  padding: 6rem 0;
  background-color: var(--color-background-dark);
  text-align: center;
}

.cards-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cards-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: 0;
}
/* CTA Section */
.cta-section {
  position: relative;
  padding: 6rem 0;
  background-color: var(--color-background);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cta-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: 0;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 10, 31, 0.7), rgba(5, 10, 31, 0.4), rgba(5, 10, 31, 0.7));
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  color: var(--color-orange);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  text-shadow: 0 0 15px rgba(255, 95, 63, 0.6);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.cta-button {
  padding: 1.25rem 3rem;
  border-radius: 0.5rem;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 51, 102, 0.4);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 51, 102, 0.5);
}

.cta-button.red-gradient {
  background: linear-gradient(to right, #ff3366, #ff6633);
}

.cta-button.purple-gradient {
  background: linear-gradient(to right, #9933ff, #ff3366);
  box-shadow: 0 0 20px rgba(153, 51, 255, 0.4);
}

.cta-button.purple-gradient:hover {
  box-shadow: 0 10px 25px rgba(153, 51, 255, 0.5);
}

.cta-info {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

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

.info-icon {
  color: var(--color-yellow);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-item p {
  font-size: 1rem;
  color: var(--color-text);
  text-align: left;
}

@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .cta-title {
    font-size: 3rem;
  }
}
.cards-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 16, 37, 0.7), rgba(8, 16, 37, 0.4), rgba(8, 16, 37, 0.7));
  z-index: 1;
}

.cards-hand {
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.cards-image {
  max-width: 500px;
  margin: 0 auto;
}

/* Ajout d'une variable de couleur pour le vert de la forêt */
:root {
  --color-background: #050a1f;
  --color-background-light: #0c1631;
  --color-background-dark: #081025;
  --color-text: #ffffff;
  --color-text-muted: #f8f8f8;
  --color-pink: #ff5baa;
  --color-orange: #ff5f3f;
  --color-green: #5aff8f;
  --color-forest-green: #2a5d3a; /* Nouvelle couleur ajoutée */
  --color-yellow: #ffcf3f;
  --color-purple: #9933ff;
  --color-border: #333333;
}

/* Modification du titre de la section pour mieux s'harmoniser avec le fond vert */
.section-subtitle.yellow {
  color: var(--color-yellow);
  text-shadow: 0 0 10px rgba(255, 207, 63, 0.5);
}
.god-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/god-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: 0;
}

.god-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 16, 37, 0.6), rgba(8, 16, 37, 0.3), rgba(8, 16, 37, 0.6));
  z-index: 1;
}
/* Running Section */
.running-section {
  position: relative;
  padding: 4rem 0;
  background-color: var(--color-background-light);
}

.running-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-background-light), var(--color-background-light), var(--color-background-dark));
  z-index: 0;
}

.running-image {
  max-width: 3000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* God Section */
.god-section {
  position: relative;
  padding: 6rem 0;
  background-color: var(--color-background-dark);
  text-align: center;
}

.god-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/god-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

.god-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 16, 37, 0.8), transparent, rgba(8, 16, 37, 0.8));
  z-index: 1;
}

.god-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.god-card {
  width: 128px;
  height: 192px;
  overflow: hidden;
  border-radius: 0.375rem;
  position: relative;
}

.god-card.green-glow {
  border: 2px solid var(--color-green);
  box-shadow: 0 0 20px rgba(90, 255, 143, 0.3);
}

.god-card.orange-glow {
  border: 2px solid var(--color-orange);
  box-shadow: 0 0 20px rgba(255, 95, 63, 0.3);
}

.god-card.yellow-glow {
  border: 2px solid var(--color-yellow);
  box-shadow: 0 0 20px rgba(255, 207, 63, 0.3);
}

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

/* Cards Section */
.cards-section {
  position: relative;
  padding: 6rem 0;
  background-color: var(--color-background-dark);
  text-align: center;
}

.cards-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cards-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.cards-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 16, 37, 0.8), transparent, rgba(8, 16, 37, 0.8));
  z-index: 1;
}

.cards-hand {
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.cards-image {
  max-width: 500px;
  margin: 0 auto;
}

/* Gameplay Section */
.gameplay-section {
  position: relative;
  padding: 6rem 0;
  background-color: var(--color-background);
  text-align: center;
}

.gameplay-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/gameplay-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.gameplay-main {
  border-radius: 0.375rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.gameplay-image {
  width: 100%;
  display: block;
}

.gameplay-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.gameplay-thumb {
  border: 2px solid var(--color-border);
  border-radius: 0.375rem;
  overflow: hidden;
}

.thumb-image {
  width: 100%;
  display: block;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 4rem 0;
  background-color: var(--color-background);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.cta-button {
  padding: 1rem 3rem;
  border-radius: 0.375rem;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: center;
  transition: opacity 0.2s ease;
  box-shadow: 0 0 20px rgba(255, 51, 102, 0.4);
}

.cta-button:hover {
  opacity: 0.9;
}

.cta-button.red-gradient {
  background: linear-gradient(to right, #ff3366, #ff6633);
}

.cta-button.purple-gradient {
  background: linear-gradient(to right, #9933ff, #ff3366);
  box-shadow: 0 0 20px rgba(153, 51, 255, 0.4);
}

.cta-button.centered {
  margin: 0 auto;
  display: inline-block;
}

.cta-info {
  margin-top: 4rem;
  text-align: center;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.info-icon {
  color: var(--color-yellow);
}

.info-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Media Queries */
@media (min-width: 768px) {
  .header-menu-left,
  .header-menu-right {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle-large {
    font-size: 4rem;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Form Styles */
.form-section {
  padding: 6rem 0;
  position: relative;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.form-container {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.form-header-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #ff3366, #ff5baa, #ff6633);
}

.form-header-line.purple {
  background: linear-gradient(to right, #9933ff, #ff5baa, #ff3366);
}

.auth-form {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--color-background-light);
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  color: white;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-pink);
  box-shadow: 0 0 0 2px rgba(255, 91, 170, 0.2);
}

.form-input.error {
  border-color: #ff3333;
}

.error-message {
  color: #ff3333;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
}

.form-checkbox {
  margin-top: 0.25rem;
  margin-right: 0.5rem;
}

.checkbox-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.form-button {
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
  font-family: inherit;
}

.form-button:hover {
  opacity: 0.9;
}

.form-footer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.form-link {
  color: var(--color-pink);
  transition: all 0.2s ease;
}

.form-link:hover {
  text-decoration: underline;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.general-error-container {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: rgba(255, 51, 51, 0.2);
  border: 1px solid #ff3333;
  border-radius: 0.375rem;
}

.general-error-message {
  color: #ff9999;
  font-size: 0.875rem;
}

.social-login {
  margin-top: 2rem;
}

.social-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.social-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-border);
}

.social-divider span {
  position: relative;
  padding: 0 1rem;
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--color-text-muted);
  font-size: 0.875rem;
  z-index: 1;
}

.social-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  background-color: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.social-button:hover {
  background-color: var(--color-background-light);
}

.form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-box {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-border);
}

.sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 1rem;
}

.sidebar-title.yellow {
  color: var(--color-yellow);
}

.sidebar-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.benefit-icon {
  color: var(--color-green);
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.benefit-item span {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.test-credentials {
  background-color: var(--color-background-light);
  padding: 1rem;
  border-radius: 0.375rem;
  border: 1px solid var(--color-border);
  margin-bottom: 1rem;
}

.test-credentials p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.sidebar-image-container {
  position: relative;
}

.sidebar-image-glow {
  position: absolute;
  inset: -8px;
  background: linear-gradient(to right, rgba(255, 91, 170, 0.2), rgba(90, 255, 143, 0.2));
  border-radius: 0.5rem;
  filter: blur(16px);
  opacity: 0.7;
}

.sidebar-image-glow.purple {
  background: linear-gradient(to right, rgba(153, 51, 255, 0.2), rgba(255, 51, 102, 0.2));
}

.sidebar-image-frame {
  position: relative;
  border: 2px solid var(--color-border);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 91, 170, 0.2);
}

.sidebar-image {
  width: 100%;
  display: block;
}

/* Page Hero */
.page-hero {
  position: relative;
  padding: 8rem 0 5rem;
  text-align: center;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-pink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Download Section */
.download-section {
  position: relative;
  padding: 4rem 0;
  background-color: var(--color-background-dark);
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.download-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.download-option {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-border);
  transition: border-color 0.2s ease;
}

.download-option:hover {
  border-color: var(--color-pink);
}

.option-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.option-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  transition: background-color 0.2s ease;
}

.option-icon.pink {
  background-color: rgba(255, 91, 170, 0.2);
}

.download-option:hover .option-icon.pink {
  background-color: rgba(255, 91, 170, 0.4);
}

.option-icon.green {
  background-color: rgba(90, 255, 143, 0.2);
}

.download-option:hover .option-icon.green {
  background-color: rgba(90, 255, 143, 0.4);
}

.option-icon.yellow {
  background-color: rgba(255, 207, 63, 0.2);
}

.download-option:hover .option-icon.yellow {
  background-color: rgba(255, 207, 63, 0.4);
}

.option-icon svg {
  color: var(--color-pink);
}

.option-icon.green svg {
  color: var(--color-green);
}

.option-icon.yellow svg {
  color: var(--color-yellow);
}

.option-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.option-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.option-button {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  transition: opacity 0.2s ease;
  box-shadow: 0 0 15px rgba(255, 51, 102, 0.3);
}

.option-button:hover {
  opacity: 0.9;
}

.option-button.red-gradient {
  background: linear-gradient(to right, #ff3366, #ff6633);
}

.option-button.green-gradient {
  background: linear-gradient(to right, #33ff99, #33cc66);
  box-shadow: 0 0 15px rgba(51, 255, 153, 0.3);
}

.option-button.yellow-gradient {
  background: linear-gradient(to right, #ffcc33, #ff9933);
  box-shadow: 0 0 15px rgba(255, 204, 51, 0.3);
}

.download-image-container {
  position: relative;
}

.download-image-glow {
  position: absolute;
  inset: -16px;
  border-radius: 0.5rem;
  filter: blur(32px);
  opacity: 0.7;
}

.download-image-frame {
  border-radius: 0.5rem;
}

.download-image {
  width: 100%;
  display: block;
}

/* Config Section */
.config-section {
  padding: 4rem 0;
  background-color: var(--color-background);
}

.config-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.config-box {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-border);
}

.config-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-pink);
  margin-bottom: 1rem;
}

.config-title.green {
  color: var(--color-green);
}

.config-list {
  list-style: none;
}

.config-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.config-icon {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.config-icon.pink {
  color: var(--color-pink);
}

.config-icon.green {
  color: var(--color-green);
}

.config-item span {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.config-item strong {
  color: white;
}

/* Join CTA Section */
.join-cta-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--color-background), var(--color-background-dark));
  text-align: center;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 3fr 2fr;
  }

  .download-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .config-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* Footer Styles */
.site-footer {
  position: relative;
  padding: 4rem 0 2rem;
  background-color: var(--color-background-dark);
  color: var(--color-text-muted);
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cosmic-bg.png');
  background-size: cover;
  background-position: bottom center;
  opacity: 0.2;
  z-index: 0;
}

.footer-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-background), transparent);
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.footer-logo-image {
  height: 40px;
  width: auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

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

.footer-title {
  color: var(--color-pink);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-social-link.facebook:hover {
  color: #3b5998;
}

.footer-social-link.twitter:hover {
  color: #1da1f2;
}

.footer-social-link.youtube:hover {
  color: #ff0000;
}

.footer-social-link.twitch:hover {
  color: #6441a5;
}

.footer-social-link.discord:hover {
  color: #7289da;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
  position: relative;
  z-index: 2;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.copyright {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-bottom-link {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.footer-bottom-link:hover {
  color: var(--color-pink);
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .footer-logo {
    flex-shrink: 0;
    text-align: left;
  }
  
  .footer-columns {
    flex-grow: 1;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Styles pour la page Nous Rejoindre */
.download-simple-section {
  padding: 4rem 0 6rem;
  background-color: var(--color-background-dark);
}

.download-simple-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.launcher-image-container {
  text-align: center;
}
/* Styles pour les boutons de formulaire */
.form-button {
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
/* Styles pour la page de profil */
.profile-section {
  padding: 4rem 0;
  background-color: var(--color-background-dark);
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.profile-info {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
}

.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.profile-avatar {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 3px solid var(--color-pink);
}

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

.avatar-change-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-pink);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
}

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

.profile-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.profile-status {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.profile-level {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.level-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 0.5rem;
}

.level-bar {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.level-progress {
  height: 100%;
  background: linear-gradient(to right, var(--color-green), var(--color-yellow));
  border-radius: 4px;
}

.level-info {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-item {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.375rem;
  padding: 1rem;
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-pink);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-action-btn {
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  text-align: center;
  transition: all 0.3s ease;
}

.profile-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.profile-settings {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
}

.settings-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 1.5rem;
  text-align: center;
}

.settings-section {
  margin-bottom: 2rem;
}

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

.settings-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.settings-form {
  margin-bottom: 1rem;
}

.form-note {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.yellow-gradient {
  background: linear-gradient(to right, var(--color-yellow), #ff9933);
  box-shadow: 0 0 15px rgba(255, 207, 63, 0.3);
}

.yellow-gradient:hover {
  box-shadow: 0 5px 15px rgba(255, 207, 63, 0.4);
}

/* Styles pour la page de maintenance */
.maintenance-section {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  background-color: var(--color-background-dark);
  position: relative;
}

.maintenance-content {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  padding: 3rem 1.5rem;
  border: 1px solid var(--color-border);
  text-align: center;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.maintenance-icon {
  margin-bottom: 1.5rem;
  color: var(--color-orange);
}

.maintenance-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.maintenance-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--color-orange), var(--color-pink));
  margin: 0 auto 1.5rem;
}

.maintenance-message {
  font-size: 1.125rem;
  color: var(--color-text);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.maintenance-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.375rem;
  padding: 1rem;
}

.info-icon {
  margin-right: 1rem;
  color: var(--color-pink);
  flex-shrink: 0;
}

.info-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.info-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.maintenance-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.maintenance-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.maintenance-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.button-icon {
  margin-right: 0.5rem;
}

.maintenance-character {
  display: none;
}

/* Styles pour la page de mot de passe oublié */
.reset-password-section {
  padding: 4rem 0;
  background-color: var(--color-background-dark);
}

.reset-password-container {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  padding: 2rem;
  border: 1px solid var(--color-border);
  max-width: 600px;
  margin: 0 auto;
}

.reset-password-icon {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-purple);
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-pink);
  margin-bottom: 1rem;
}

.step-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.reset-form {
  margin-bottom: 1.5rem;
}

.email-sent-icon {
  text-align: center;
  margin: 2rem 0;
  color: var(--color-green);
}

.email-info {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.375rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.email-info p {
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.email-info ul {
  padding-left: 1.5rem;
}

.email-info li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.step-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.reset-password-help {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.help-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-yellow);
  margin-bottom: 0.5rem;
}

.help-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.help-link {
  color: var(--color-pink);
  font-size: 0.875rem;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.help-link:hover {
  color: var(--color-orange);
}

/* Media Queries */
@media (min-width: 768px) {
  .profile-grid {
    grid-template-columns: 1fr 2fr;
  }
  
  .profile-header {
    flex-direction: row;
    text-align: left;
  }
  
  .profile-avatar {
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
  
  .profile-details {
    text-align: left;
  }
  
  .profile-level {
    align-items: flex-start;
  }
  
  .profile-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .profile-actions {
    flex-direction: row;
  }
  
  .maintenance-info {
    flex-direction: row;
  }
  
  .maintenance-actions {
    flex-direction: row;
    justify-content: center;
  }
  
  .maintenance-character {
    display: block;
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: auto;
    opacity: 0.8;
  }
  
  .step-actions {
    flex-direction: row;
    justify-content: center;
  }
}
.form-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-button.red-gradient {
  background: linear-gradient(to right, #ff3366, #ff6633);
  box-shadow: 0 0 15px rgba(255, 51, 102, 0.3);
}

.form-button.purple-gradient {
  background: linear-gradient(to right, #9933ff, #ff3366);
  box-shadow: 0 0 15px rgba(153, 51, 255, 0.3);
}

.form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-pink);
  margin-bottom: 1.5rem;
  text-align: center;
}
.launcher-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.download-simple-options {
  display: flex;
  flex-direction: column;
}

.download-simple-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.download-simple-description {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.download-simple-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.download-simple-button {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.download-simple-button:hover {
  border-color: var(--color-orange);
  transform: translateY(-2px);
}

.download-simple-button.windows:hover {
  border-color: #0078d7;
}

.download-simple-button.mac:hover {
  border-color: #a2aaad;
}

.download-button-icon {
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.download-simple-button.windows .download-button-icon {
  color: #0078d7;
}

.download-simple-button.mac .download-button-icon {
  color: #a2aaad;
}

.download-button-text {
  display: flex;
  flex-direction: column;
}

.download-os {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.download-size {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.download-simple-info {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.download-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.download-info-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.download-info-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 1rem;
}

.download-info-list {
  list-style: none;
}

.download-info-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.download-info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-orange);
}

.download-simple-help {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.download-help-link {
  color: var(--color-pink);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.download-help-link:hover {
  color: var(--color-orange);
}

/* Footer Styles */
.site-footer {
  position: relative;
  background-color: var(--color-background);
  padding: 4rem 0 2rem;
  color: var(--color-text-muted);
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cosmic-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.footer-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-background), rgba(5, 10, 31, 0.9));
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  margin-bottom: 2rem;
  text-align: center;
}

.footer-logo-image {
  height: 40px;
  width: auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  text-align: center;
}

.footer-title {
  color: var(--color-orange);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-divider {
  position: relative;
  z-index: 2;
  height: 1px;
  background-color: var(--color-border);
  margin: 3rem 0 2rem;
  width: 100%;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.copyright {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-bottom-link {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.footer-bottom-link:hover {
  color: var(--color-pink);
}

@media (min-width: 768px) {
  .download-simple-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .download-simple-buttons {
    flex-direction: row;
    gap: 2rem;
  }
  
  .download-simple-button {
    flex: 1;
  }
  
  .download-info-columns {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
  
  .footer-social-links {
    justify-content: flex-start;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .footer-columns {
    grid-template-columns: repeat(4, 1fr);
  }
}