/* Tacty Studio - Style simplifié et robuste */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@400;500;700&display=swap');

:root {
  --primary: #ff1f8e;         /* Rose néon */
  --secondary: #00c8ff;       /* Bleu néon */
  --dark: #121212;            /* Gris très foncé */
  --darker: #0a0a0a;          /* Noir */
  --light: #f8f8f8;           /* Blanc cassé */
  --purple: #9000ff;          /* Violet */
  --green: #00ff66;           /* Vert néon */
  --red: #ff0000;             /* Rouge */
}

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

body {
  background-color: var(--darker);
  color: var(--light);
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.6;
}

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

/* HEADER */
header {
  background-color: rgba(10, 10, 10, 0.9);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 0.8rem 0;
}

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

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px; /* Hauteur fixe pour le nav */
  position: relative; /* Permet un positionnement plus précis */
}

.logo {
  display: flex;
  align-items: center;
  z-index: 10; /* S'assure que le logo reste visible */
}

/* Styles pour les logos */
.logo img, .footer-logo img {
  height: 35px;
  width: auto;
}

.footer-logo img {
  margin-bottom: 1rem;
}

.logo .logo-dark, .footer-logo .logo-dark {
  display: inline-block;
}

.logo .logo-light, .footer-logo .logo-light {
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links li {
  margin: 0 1.25rem;
  display: flex;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--light);
  margin-left: 1rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  z-index: 10; /* S'assure que le bouton reste visible */
}

/* HERO SECTION */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, rgba(60,0,60,0.5) 0%, rgba(0,0,60,0.5) 100%);
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
  z-index: 2;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h1 span {
  display: block;
  color: var(--primary);
  font-size: 3.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
  box-shadow: 0 0 10px rgba(255, 31, 142, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--light);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(255, 31, 142, 0.7);
}

.btn-secondary:hover {
  background-color: var(--secondary);
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
}

/* GAMES SECTION */
.games {
  padding: 6rem 0;
  text-align: center;
}

.section-title {
  margin-bottom: 3rem;
}

.section-title h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-title p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.game-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.game-card {
  background-color: rgba(20, 20, 20, 0.5);
  border-radius: 10px;
  overflow: hidden;
  width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  text-align: left;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 31, 142, 0.2);
}

.game-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.game-title {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-title h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0;
}

.game-title.dbh h3 {
  color: var(--primary);
}

.game-title.po h3 {
  color: var(--red);
}

.game-title.soon h3 {
  color: var(--secondary);
}

.game-info {
  padding: 1rem;
}

.game-info p {
  margin-bottom: 1.5rem;
  line-height: 1.4;
  font-size: 1rem;
}

.game-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.game-links a {
  flex: 1;
  min-width: 100px;
  padding: 0.7rem 1rem;
  background-color: var(--dark);
  border-radius: 5px;
  text-align: center;
  font-weight: 700;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.game-links .steam {
  background-color: var(--secondary);
  color: var(--dark);
}

.game-links .website {
  border: 1px solid var(--primary);
}

.game-links .trailer {
  background-color: rgba(144, 0, 255, 0.2);
  border: 1px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.game-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.carousel-nav {
  display: none; /* Caché car problématique */
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #555;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* ABOUT SECTION */
.about {
  padding: 6rem 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-icon {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-icon-wrapper {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 31, 142, 0.2) 0%, rgba(0, 200, 255, 0.2) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(255, 31, 142, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 31, 142, 0.3);
}

.about-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 31, 142, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-icon-wrapper i {
  font-size: 8rem;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(255, 31, 142, 0.7);
  animation: pulse 3s infinite ease-in-out;
}

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

body.light-theme .about-icon-wrapper {
  background: linear-gradient(135deg, rgba(255, 31, 142, 0.1) 0%, rgba(0, 200, 255, 0.1) 100%);
  box-shadow: 0 10px 30px rgba(255, 31, 142, 0.15);
  border: 2px solid rgba(255, 31, 142, 0.15);
}

body.light-theme .about-icon-wrapper i {
  color: var(--primary);
  text-shadow: 0 0 15px rgba(255, 31, 142, 0.4);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

/* CONTACT SECTION */
.contact {
  padding: 6rem 0;
  background-color: var(--dark);
}

.contact-content {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.contact-info p {
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-link i {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 31, 142, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light);
  font-family: 'Rajdhani', sans-serif;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Team Section */
.team-section {
  background-color: var(--darker);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 31, 142, 0.3);
  border-bottom: 1px solid rgba(255, 31, 142, 0.3);
  background-attachment: fixed;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 31, 142, 0.15) 0%, transparent 70%);
  pointer-events: none;
  background-attachment: fixed;
}

.team-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  background-attachment: fixed;
}

.section-title.text-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
}

.section-title p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.team-member {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgba(10, 10, 15, 0.7);
  padding: 30px 20px 20px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 31, 142, 0.2);
  border-color: rgba(255, 31, 142, 0.2);
}

.member-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  border: 3px solid var(--primary);
  box-shadow: 0 5px 15px rgba(255, 31, 142, 0.5);
  transition: all 0.3s ease;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.member-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 31, 142, 0.7);
}

.member-avatar:hover img {
  transform: scale(1.05);
}

.team-member h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--secondary);
  letter-spacing: 1px;
}

.team-member p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Mode clair pour la section équipe */
body.light-theme .team-section {
  background-color: rgba(240, 242, 245, 0.9);
  border-top: 1px solid rgba(255, 31, 142, 0.1);
  border-bottom: 1px solid rgba(255, 31, 142, 0.1);
}

body.light-theme .team-section::before {
  background: radial-gradient(circle at center, rgba(255, 31, 142, 0.08) 0%, transparent 70%);
}

body.light-theme .team-section::after {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

body.light-theme .team-member {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .team-member:hover {
  box-shadow: 0 15px 30px rgba(255, 31, 142, 0.15);
  border-color: rgba(255, 31, 142, 0.1);
}

body.light-theme .member-avatar {
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(255, 31, 142, 0.2);
}

body.light-theme .team-member h3 {
  color: var(--primary);
}

body.light-theme .team-member p {
  color: #444;
}

body.light-theme .section-title p {
  color: #444;
}

@media (max-width: 992px) {
  .team-members {
    gap: 20px;
  }
  
  .team-member {
    width: 170px;
  }
}

@media (max-width: 768px) {
  .team-members {
    gap: 20px;
  }
  
  .team-member {
    width: 160px;
    padding: 20px 15px 15px;
  }
  
  .member-avatar {
    width: 100px;
    height: 100px;
  }
  
  .team-section {
    padding: 4rem 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .team-members {
    gap: 30px 10px;
  }
  
  .team-member {
    width: 140px;
  }
  
  .member-avatar {
    width: 90px;
    height: 90px;
  }
  
  .team-member h3 {
    font-size: 1.1rem;
  }
}

/* FOOTER */
footer {
  background-color: var(--darker);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

/* Supprimé les styles redondants pour les images de logo du footer */

.mascot {
  margin: 1rem 0;
  text-align: center;
}

.mascot img {
  height: 80px;
}

.footer-links {
  flex: 1;
  min-width: 150px;
}

.footer-links h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

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

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

.footer-social {
  flex: 1;
  min-width: 150px;
}

.footer-social h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

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

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-legal-links {
  margin: 1rem 0;
  font-size: 0.85rem;
}

.footer-legal-links a {
  color: var(--light);
  transition: color 0.3s ease;
  padding: 0 0.5rem;
}

.footer-legal-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-legal-links .separator {
  color: rgba(255, 255, 255, 0.4);
}

.footer-credit {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: bold;
}

body.light-theme .footer-legal-links a {
  color: #333;
}

body.light-theme .footer-legal-links .separator {
  color: rgba(0, 0, 0, 0.2);
}

/* Video modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-container {
  width: 90%;
  max-width: 800px;
  position: relative;
}

.video-container video {
  width: 100%;
  border-radius: 5px;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--light);
  font-size: 30px;
  cursor: pointer;
}

/* Light theme - Palettes plus élégantes et harmonieuses */
body.light-theme {
  background-color: #f8f9fa;
  color: #343a40;
}

body.light-theme .logo .logo-dark,
body.light-theme .footer-logo .logo-dark {
  display: none;
}

body.light-theme .logo .logo-light,
body.light-theme .footer-logo .logo-light {
  display: inline-block;
}

body.light-theme header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

body.light-theme .nav-links a {
  color: #495057;
  font-weight: 600;
}

body.light-theme .nav-links a:hover {
  color: var(--primary);
}

body.light-theme .theme-toggle {
  color: #495057;
}

body.light-theme .hero {
  background: linear-gradient(135deg, rgba(255, 245, 255, 0.8) 0%, rgba(245, 245, 255, 0.8) 100%);
}

body.light-theme .game-card {
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

body.light-theme .game-card:hover {
  box-shadow: 0 15px 30px rgba(255, 31, 142, 0.15);
  border-color: rgba(255, 31, 142, 0.1);
}

body.light-theme .game-info p {
  color: #495057;
}

body.light-theme .game-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-theme .contact {
  background-color: #f0f4f8;
}

body.light-theme .contact-link i {
  background-color: rgba(255, 31, 142, 0.07);
}

body.light-theme .form-group input,
body.light-theme .form-group textarea {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #343a40;
}

body.light-theme footer {
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .social-icon {
  background-color: rgba(0, 0, 0, 0.03);
}

/* Style des boutons en mode clair */
body.light-theme .btn-primary {
  box-shadow: 0 4px 15px rgba(255, 31, 142, 0.25);
}

body.light-theme .btn-secondary {
  border: 2px solid var(--secondary);
  color: #343a40;
}

body.light-theme .btn-secondary:hover {
  color: #fff;
}

body.light-theme .game-links .steam {
  background-color: var(--secondary);
  color: #ffffff;
}

body.light-theme .game-links .website {
  color: #343a40;
  border: 1px solid var(--primary);
}

body.light-theme .game-links .trailer {
  background-color: rgba(144, 0, 255, 0.1);
  color: #343a40;
  border: 1px solid var(--purple);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.95);
  color: var(--light);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-content p {
  flex: 1;
  min-width: 280px;
  font-size: 0.95rem;
  margin: 0;
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

body.light-theme .cookie-consent {
  background-color: rgba(240, 240, 240, 0.95);
  color: #333;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h1 span {
    font-size: 3rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-icon {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: static;
    transform: none;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h1 span {
    font-size: 2.5rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .game-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .game-card {
    width: 100%;
    max-width: 350px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* Language Selector */
.language-selector {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 15px;
  position: relative;
  opacity: 0.8; /* Un peu moins visible */
  transition: opacity 0.3s ease;
}

.language-selector:hover {
  opacity: 1;
}

.language-selector a {
  font-size: 0.8rem;
  padding: 2px 5px;
  border-radius: 3px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.language-selector a.active {
  color: var(--primary);
  background-color: rgba(255, 31, 142, 0.1);
}

.language-selector a:not(.active):hover {
  background-color: rgba(255, 255, 255, 0.1);
}

body.light-theme .language-selector a.active {
  background-color: rgba(255, 31, 142, 0.1);
}

body.light-theme .language-selector a:not(.active):hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
