#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: transparent !important;
}
body > *:not(#bg-canvas) {
  position: relative;
  z-index: 1;
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: radial-gradient(ellipse at 50% 30%, #23243a 60%, #18192b 100%);
  color: #e6e6f0;
  min-height: 100vh;
  background: transparent !important;
}
#bg-canvas {
  background: transparent !important;
}
.header, .footer {
  position: relative;
  z-index: 10;
  background: rgba(24, 25, 43, 0.45);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 2px 32px 0 #23243a33;
}

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

/* NAVBAR MODERNE */
.header {
  background: rgba(20, 22, 40, 0.55);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 2px 16px 0 #0002;
  position: sticky;
  top: 0;
  z-index: 10;
  border-radius: 0 0 18px 18px;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-size: 2rem;
  font-weight: 900;
  color: #b3c6ff;
  letter-spacing: 1px;
}
.logo span {
  color: #7faaff;
}
.nav {
  display: flex;
  gap: 32px;
  align-items: center;
  position: relative;
}
.nav a {
  color: #e6e6f0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
  padding: 8px 0;
  border-radius: 8px;
}
.nav a:hover, .client-btn {
  color: #7faaff;
  background: rgba(127,170,255,0.08);
}
.client-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: linear-gradient(90deg, #7faaff 0%, #4f8cff 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 24px;
  padding: 4px 32px;
  margin-left: 12px;
  box-shadow: 0 2px 12px 0 #7faaff33;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
  outline: none;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.85rem;
  gap: 4px;
}
.client-btn:hover, .client-btn:focus {
  background: linear-gradient(90deg, #4f8cff 0%, #7faaff 100%);
  color: #18192b;
  box-shadow: 0 4px 24px 0 #7faaff55;
  transform: translateY(-2px) scale(1.04);
}
.client-btn .client-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-btn .client-icon svg {
  display: block;
  color: #fff;
  width: 16px;
  height: 16px;
  width: 14px;
  height: 14px;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  z-index: 20;
}
.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #7faaff;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* Responsive Navbar */
@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    background: rgba(20,22,40,0.98);
    position: absolute;
    top: 72px;
    right: 0;
    width: 220px;
    padding: 24px 18px 18px 18px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 32px 0 #0004;
    gap: 18px;
    display: none;
  }
  .nav.open {
    display: flex;
  }
  .burger {
    display: flex;
  }
  .header-content {
    position: relative;
  }
}

.hero {
  text-align: center;
  padding: 100px 16px 60px 16px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #e6e6f0;
  margin-bottom: 16px;
}
.hero h1 span {
  color: #7faaff;
}
.hero .highlight {
  color: #7faaff;
}
.hero p {
  font-size: 1.2rem;
  color: #b3b8d0;
  margin-bottom: 32px;
}

.hero-discord-note {
  font-size: 1rem;
  color: #b3b8d0;
  margin-bottom: 24px;
  background: rgba(127, 170, 255, 0.1);
  border: 1px solid rgba(127, 170, 255, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  display: inline-block;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(127, 170, 255, 0.1);
}

.discord-link {
  color: #7faaff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.discord-link:hover {
  color: #b3c6ff;
  text-decoration: underline;
}

/* Styles pour la page Datacenter */
.datacenter-hero {
  text-align: center;
  padding: 120px 16px 80px 16px;
}

.datacenter-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #e6e6f0;
  margin-bottom: 16px;
}

.datacenter-hero h1 span {
  color: #7faaff;
}

.datacenter-subtitle {
  font-size: 1.3rem;
  color: #b3b8d0;
  margin-bottom: 0;
}

.datacenter-content {
  padding: 60px 0;
}

.datacenter-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px auto;
}

.datacenter-intro h2 {
  color: #7faaff;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.datacenter-intro p {
  font-size: 1.2rem;
  color: #b3b8d0;
  line-height: 1.7;
}

.timeline {
  max-width: 1000px;
  margin: 0 auto 80px auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #7faaff, #4f8cff, #7faaff);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(127, 170, 255, 0.3);
}

.timeline h2 {
  color: #7faaff;
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.timeline h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #7faaff, transparent);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 80px;
  width: 45%;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.timeline-year {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: linear-gradient(135deg, #7faaff, #4f8cff);
  color: #18192b;
  font-size: 1.3rem;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 15px;
  box-shadow: 0 4px 16px rgba(127, 170, 255, 0.3);
  overflow: hidden;
}

.timeline-year::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.timeline-item:hover .timeline-year::before {
  left: 100%;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #7faaff, #4f8cff);
  border-radius: 50%;
  border: 4px solid #18192b;
  box-shadow: 0 0 20px rgba(127, 170, 255, 0.5);
  z-index: 2;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 40px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #7faaff, transparent);
}

.timeline-item:nth-child(odd)::after {
  right: -40px;
}

.timeline-item:nth-child(even)::after {
  left: -40px;
  background: linear-gradient(90deg, transparent, #7faaff);
}

.timeline-content {
  background: rgba(30, 32, 60, 0.8);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(127, 170, 255, 0.2);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7faaff, #4f8cff, #7faaff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  border-color: #7faaff;
  box-shadow: 0 12px 40px rgba(127, 170, 255, 0.2);
}

.timeline-item:hover .timeline-content::before {
  opacity: 1;
}

.timeline-year {
  background: linear-gradient(135deg, #7faaff, #4f8cff);
  color: #18192b;
  font-size: 1.3rem;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 15px;
  box-shadow: 0 4px 16px rgba(127, 170, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.timeline-year::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.timeline-item:hover .timeline-year::before {
  left: 100%;
}

.timeline-content h3 {
  color: #e6e6f0;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.timeline-content p {
  color: #b3b8d0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation décalée pour chaque élément */
.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }

.datacenter-features {
  max-width: 1200px;
  margin: 0 auto;
}

.datacenter-features h2 {
  color: #7faaff;
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-item {
  background: rgba(30, 32, 60, 0.8);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(127, 170, 255, 0.2);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: #7faaff;
  box-shadow: 0 8px 32px rgba(127, 170, 255, 0.2);
}

.feature-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.feature-item h3 {
  color: #e6e6f0;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-item p {
  color: #b3b8d0;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Style pour le lien actif dans la navigation */
.nav a.active {
  color: #7faaff;
  background: rgba(127, 170, 255, 0.1);
}

/* Responsive pour la page datacenter */
@media (max-width: 900px) {
  .datacenter-hero h1 {
    font-size: 2.5rem;
  }
  
  .datacenter-intro h2,
  .timeline h2,
  .datacenter-features h2 {
    font-size: 2rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    margin-right: 0 !important;
    padding-left: 40px !important;
    padding-right: 20px !important;
  }
  
  .timeline-item::before {
    left: -25px !important;
  }
  
  .timeline-item::after {
    left: -40px !important;
    right: auto !important;
    background: linear-gradient(90deg, transparent, #7faaff) !important;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .datacenter-hero {
    padding: 100px 16px 60px 16px;
  }
  
  .datacenter-hero h1 {
    font-size: 2rem;
  }
  
  .datacenter-subtitle {
    font-size: 1.1rem;
  }
  
  .datacenter-content {
    padding: 40px 0;
  }
  
  .timeline-item {
    padding: 20px;
  }
  
  .feature-item {
    padding: 24px;
  }
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.btn-primary, .btn-secondary {
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-primary {
  background: #7faaff;
  color: #18192b;
}
.btn-primary:hover {
  background: #b3c6ff;
}
.btn-secondary {
  background: transparent;
  color: #7faaff;
  border: 1px solid #7faaff;
}
.btn-secondary:hover {
  background: #7faaff;
  color: #18192b;
}

.features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 48px 0 32px 0;
  flex-wrap: wrap;
}
.feature-card {
  background: rgba(30, 32, 60, 0.95);
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 #0003;
  padding: 32px 28px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  text-align: center;
  margin: 8px 0;
}
.feature-card .icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #7faaff;
}
.feature-card h3 {
  color: #e6e6f0;
  margin-bottom: 10px;
}
.feature-card p {
  color: #b3b8d0;
  font-size: 1rem;
}

.datacenter-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin: 64px 0 32px 0;
  flex-wrap: wrap;
}
.datacenter-img {
  width: 400px;
  height: 260px;
  background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=600&q=80') center/cover no-repeat;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 #0004;
  min-width: 320px;
}
.datacenter-info {
  max-width: 420px;
}
.datacenter-info h2 {
  color: #7faaff;
  font-size: 2rem;
  margin-bottom: 8px;
}
.datacenter-info p {
  color: #b3b8d0;
  margin-bottom: 18px;
}
.datacenter-info ul {
  list-style: none;
  padding: 0;
  color: #e6e6f0;
}
.datacenter-info li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.faq-section, .faq-list, .faq-item, .faq-question, .faq-answer {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.paiement-section {
  text-align: center;
  margin: 64px 0 32px 0;
}
.paiement-section h2 {
  color: #7faaff;
  margin-bottom: 24px;
}
.paiement-list {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 16px;
}
.paiement-item {
  background: #23243a;
  color: #e6e6f0;
  border-radius: 12px;
  padding: 18px 32px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 12px 0 #0002;
}
.paiement-icon {
  font-size: 2rem;
}
.paiement-section p {
  color: #b3b8d0;
  margin-top: 12px;
}

/* --- FOOTER COMPACT ET ALIGNÉ --- */
.footer {
  background: rgba(24, 25, 43, 0.3);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(127, 170, 255, 0.2);
  padding: 16px 0 8px 0;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-main-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 8px;
}
.logo-col {
  min-width: 220px;
  flex: 1 1 220px;
}
.footer-cols-wrap {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-col {
  min-width: 140px;
  flex: 1 1 140px;
  margin-bottom: 0;
}
.footer-col h4 {
  color: #7faaff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li a {
  color: #b3b8d0;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.18s, background 0.18s, transform 0.18s;
  display: inline-block;
}
.footer-col ul li a:hover, .footer-col ul li a:focus {
  color: #7faaff;
  background: rgba(127,170,255,0.08);
  transform: scale(1.06);
}
.footer-col li {
  margin-bottom: 2px;
  font-size: 0.8rem;
}
.footer-col p {
  color: #b3b8d0;
  font-size: 0.8rem;
  line-height: 1.3;
  margin: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(127, 170, 255, 0.15);
  padding-top: 8px;
  text-align: center;
}
.footer-socials {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-socials a {
  color: #7faaff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-socials a:hover {
  color: #b3c6ff;
}
.footer-badges {
  display: flex;
  gap: 12px;
}
.footer-badges .badge {
  background: #23243a;
  color: #7faaff;
  border-radius: 8px;
  padding: 6px 16px;
  font-weight: 700;
  font-size: 1rem;
}

.feature-card .icon svg,
.paiement-icon svg,
.footer-socials svg {
  display: inline-block;
  vertical-align: middle;
  color: #7faaff;
}
.paiement-icon {
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.footer-socials span {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .features, .footer-content, .datacenter-section, .paiement-list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer-main-row, .footer-cols-wrap {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 18px 0 0 0;
  }
  .footer-socials {
    justify-content: center;
  }
  .datacenter-img {
    width: 90vw;
    min-width: 0;
    height: 180px;
  }
  .client-btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 8px;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .feature-card, .faq-item {
    min-width: 0;
    max-width: 100vw;
    padding: 18px 8px;
  }
  .footer-content {
    padding: 0 8px;
  }
} 
.uptime-badge {
  display: inline-block;
  background: linear-gradient(90deg, #7faaff 0%, #4f8cff 100%);
  color: #18192b;
  font-weight: 700;
  border-radius: 16px;
  padding: 6px 18px;
  margin-bottom: 18px;
  font-size: 1rem;
  box-shadow: 0 2px 12px #7faaff33;
}
.infra-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  color: #e6e6f0;
}
.infra-list li {
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.5;
}
.infra-list li strong {
  color: #7faaff;
} 
.infra-cards, .infra-list {
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
  max-width: 100vw !important;
  margin: 0 0 16px 0 !important;
}
.infra-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 18px 0;
}
.infra-badge {
  display: inline-block;
  background: rgba(127,170,255,0.13);
  color: #e6e6f0;
  border-radius: 16px;
  padding: 7px 18px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 1px 6px 0 #7faaff22;
  white-space: nowrap;
}
.infra-badge strong {
  color: #7faaff;
}
@media (max-width: 900px) {
  .infra-horizontal {
    flex-direction: column;
    gap: 8px;
  }
  .infra-badge {
    width: 100%;
    text-align: left;
  }
} 
.infra-horizontal-strict {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 18px 0;
  max-width: 100%;
}
.infra-horizontal-strict .infra-badge {
  flex: 0 1 220px;
  white-space: nowrap;
} 
.infra-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.infra-card {
  background: rgba(30,32,60,0.92);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 #0002;
  padding: 22px 24px 16px 24px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.infra-card-title {
  color: #7faaff;
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .infra-cards {
    flex-direction: column;
    gap: 16px;
  }
  .infra-card {
    min-width: 0;
    max-width: 100vw;
    padding: 16px 10px;
  }
} 
.infra-hero-section {
  margin: 64px auto 32px auto;
  max-width: 1200px;
  padding: 0 24px;
}
.infra-hero-title {
  text-align: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.infra-hero-subtitle {
  text-align: center;
  color: #b3b8d0;
  font-size: 1.2rem;
  margin-bottom: 38px;
}
.infra-hero-grid {
  display: flex;
  gap: 38px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.infra-hero-img {
  position: relative;
  min-width: 380px;
  max-width: 480px;
  flex: 1 1 380px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 32px 0 #0004;
  background: #18192b;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.infra-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}
.infra-hero-img-caption {
  background: rgba(20, 24, 40, 0.85);
  color: #fff;
  padding: 1.2rem 1.5rem 1.2rem 1.5rem;
  border-radius: 0 0 18px 18px;
}
.infra-hero-img-caption h3 {
  margin: 0 0 0.3em 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.infra-hero-img-caption p {
  margin: 0;
  color: #b3b8d0;
}
.infra-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 1 340px;
  min-width: 320px;
  max-width: 520px;
}
.infra-hero-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: rgba(30,32,60,0.95);
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 #0003;
  padding: 32px 28px;
}
.infra-hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  color: #7faaff;
}
.infra-hero-card h4 {
  color: #fff;
  margin: 0 0 8px 0;
  font-size: 1.25rem;
  font-weight: 700;
}
.infra-hero-card p {
  color: #b3b8d0;
  margin: 0;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .infra-hero-grid {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .infra-hero-img, .infra-hero-cards {
    min-width: 0;
    max-width: 100vw;
  }
  .infra-hero-card {
    padding: 22px 12px;
  }
} 
.hoverable {
  transition: transform 0.18s cubic-bezier(.4,1.3,.6,1), box-shadow 0.18s;
  cursor: pointer;
}
.hoverable:hover, .hoverable:focus {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 4px 18px 0 #7faaff33;
  z-index: 2;
}

.btn-primary, .btn-secondary, .client-btn {
  transition: transform 0.18s cubic-bezier(.4,1.3,.6,1), box-shadow 0.18s, background 0.18s, color 0.18s;
}
.btn-primary:hover, .btn-secondary:hover, .client-btn:hover, .btn-primary:focus, .btn-secondary:focus, .client-btn:focus {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 4px 18px 0 #7faaff44;
}

.nav a {
  transition: color 0.18s, background 0.18s, transform 0.18s;
}
.nav a:hover, .nav a:focus {
  color: #7faaff;
  background: rgba(127,170,255,0.08);
  transform: scale(1.06);
}

.footer-col ul li a {
  transition: color 0.18s, background 0.18s, transform 0.18s;
}
.footer-col ul li a:hover, .footer-col ul li a:focus {
  color: #7faaff;
  background: rgba(127,170,255,0.08);
  transform: scale(1.06);
}

.feature-card, .infra-hero-card, .paiement-item {
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-card:hover, .infra-hero-card:hover, .paiement-item:hover {
  box-shadow: 0 4px 24px 0 #7faaff22;
  transform: scale(1.03) translateY(-2px);
  z-index: 2;
} 
.offres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.offre-card {
  background: rgba(24, 25, 43, 0.85);
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 #23243a33;
  padding: 32px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1.5px solid #23243a;
  position: relative;
}
.offre-card:hover {
  box-shadow: 0 8px 32px 0 #7faaff33;
  transform: scale(1.04) translateY(-4px);
  z-index: 2;
  border-color: #7faaff;
}
.offre-card h2 {
  color: #7faaff;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.offre-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  color: #b3b8d0;
  font-size: 1.05rem;
}
.offre-card ul li {
  margin-bottom: 4px;
}
.offre-prix {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.offre-prix span {
  color: #b3b8d0;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 4px;
}
.offre-detail {
  color: #7faaff;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0;
}
.offre-baremetal {
  background: linear-gradient(120deg, #23243a 60%, #7faaff22 100%);
  border: 2px solid #7faaff;
}
.offres-options {
  background: rgba(24, 25, 43, 0.7);
  border-radius: 16px;
  padding: 28px 18px 18px 18px;
  margin-top: 32px;
  box-shadow: 0 2px 16px 0 #23243a22;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.offres-options h3 {
  color: #7faaff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-align: center;
}
.offres-options table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}
.offres-options th, .offres-options td {
  padding: 8px 6px;
  text-align: left;
  color: #e6e6f0;
  font-size: 1rem;
}
.offres-options th {
  color: #7faaff;
  font-weight: 700;
  border-bottom: 2px solid #23243a;
}
.offres-options tr:not(:last-child) td {
  border-bottom: 1px solid #23243a;
}
.offres-remises {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  justify-content: center;
  text-align: center;
}
.offres-remises li {
  color: #b3b8d0;
  font-size: 1.05rem;
}
.offres-remises strong {
  color: #7faaff;
  font-weight: 900;
}
@media (max-width: 700px) {
  .offres-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .offres-options {
    padding: 18px 6px 12px 6px;
  }
} 
.equipe-section {
  padding: 80px 24px;
  text-align: center;
}
.equipe-section h2 {
  color: #7faaff;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.equipe-section > p {
  color: #b3b8d0;
  font-size: 1.2rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.equipe-card {
  background: rgba(24, 25, 43, 0.85);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 4px 24px 0 #23243a33;
  border: 1.5px solid #23243a;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.equipe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px 0 #7faaff33;
  border-color: #7faaff;
}
.equipe-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7faaff22, #23243a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 2px solid #7faaff;
  overflow: hidden;
}
.equipe-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.equipe-card h3 {
  color: #7faaff;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.equipe-role {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  opacity: 0.9;
}
.equipe-description {
  color: #b3b8d0;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}
.equipe-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}
.skill-tag {
  background: linear-gradient(135deg, #7faaff22, #23243a);
  color: #7faaff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #7faaff44;
  transition: all 0.3s ease;
}
.skill-tag:hover {
  background: linear-gradient(135deg, #7faaff44, #23243a);
  border-color: #7faaff;
  transform: scale(1.05);
}
@media (max-width: 700px) {
  .equipe-section {
    padding: 60px 16px;
  }
  .equipe-section h2 {
    font-size: 2rem;
  }
  .equipe-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .equipe-card {
    padding: 30px 20px;
  }
} 
.contact-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.contact-section h1 {
  color: #7faaff;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.contact-section > p {
  color: #b3b8d0;
  font-size: 1.2rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info h2 {
  color: #7faaff;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-align: center;
}
.contact-item {
  background: rgba(24, 25, 43, 0.85);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 24px 0 #23243a33;
  border: 1.5px solid #23243a;
  transition: all 0.3s ease;
}
.contact-item:hover {
  border-color: #7faaff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px 0 #7faaff33;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #7faaff22, #23243a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #7faaff44;
  flex-shrink: 0;
}
.contact-item h3 {
  color: #7faaff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-item p {
  color: #b3b8d0;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-section {
    padding: 60px 16px;
  }
  .contact-section h1 {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
  }
} 
/* Timeline moderne */
.timeline-modern {
  position: relative;
  max-width: 900px;
  margin: 0 auto 80px auto;
  padding: 40px 0;
}
.timeline-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #7faaff, #4f8cff, #7faaff);
  border-radius: 2px;
  z-index: 0;
}
.timeline-modern-item {
  position: relative;
  width: 50%;
  padding: 32px 40px;
  box-sizing: border-box;
}
.timeline-modern-item.left {
  left: 0;
  text-align: right;
}
.timeline-modern-item.right {
  left: 50%;
  text-align: left;
}
.timeline-modern-content {
  display: inline-block;
  background: rgba(30, 32, 60, 0.92);
  border-radius: 18px;
  padding: 28px 32px;
  border: 1.5px solid rgba(127, 170, 255, 0.18);
  box-shadow: 0 4px 24px 0 #7faaff22;
  color: #e6e6f0;
  min-width: 260px;
  max-width: 380px;
  position: relative;
  z-index: 2;
}
.timeline-modern-year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #7faaff, #4f8cff);
  color: #18192b;
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px 0 #7faaff44;
  border: 4px solid #18192b;
  z-index: 3;
}
.timeline-modern-item.left .timeline-modern-year {
  right: -27px;
}
.timeline-modern-item.right .timeline-modern-year {
  left: -27px;
}
.timeline-modern-item.left .timeline-modern-content {
  margin-right: 40px;
}
.timeline-modern-item.right .timeline-modern-content {
  margin-left: 40px;
}
@media (max-width: 900px) {
  .timeline-modern {
  padding: 0;
  }
  .timeline-modern::before {
    left: 24px;
    width: 3px;
  }
  .timeline-modern-item,
  .timeline-modern-item.left,
  .timeline-modern-item.right {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 40px 0 40px 60px;
  }
  .timeline-modern-content {
    margin: 0 0 0 32px !important;
    min-width: 0;
    max-width: 100%;
}
  .timeline-modern-year {
    left: 0;
    right: auto;
    transform: translateY(-50%);
}
}
@media (max-width: 600px) {
  .timeline-modern-item,
  .timeline-modern-item.left,
  .timeline-modern-item.right {
    padding: 32px 0 32px 36px;
  }
  .timeline-modern-content {
    padding: 18px 14px;
    font-size: 0.98rem;
  }
  .timeline-modern-year {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border-width: 3px;
  }
}
.datacenter-chronologie {
  max-width: 700px;
  margin: 0 auto 60px auto;
  padding: 0 10px;
}
.chronologie-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.chronologie-list li {
  background: rgba(30,32,60,0.85);
  border-radius: 10px;
  margin-bottom: 22px;
  padding: 22px 24px;
  color: #e6e6f0;
  box-shadow: 0 2px 12px 0 #23243a33;
  border-left: 4px solid #7faaff;
  font-size: 1.08rem;
}
.chronologie-list li strong {
  color: #7faaff;
  font-weight: 700;
  font-size: 1.12rem;
}
.chronologie-desc {
  color: #b3b8d0;
  font-size: 0.98rem;
  display: block;
  margin-top: 6px;
} 
.coming-soon-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon-content {
  text-align: center;
  background: rgba(30,32,60,0.92);
  border-radius: 18px;
  padding: 48px 32px;
  box-shadow: 0 4px 24px 0 #7faaff22;
  border: 1.5px solid rgba(127, 170, 255, 0.18);
}
.coming-soon-illustration {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  animation: floaty 2.5s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.coming-soon-content h1 {
  color: #7faaff;
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}
.coming-soon-sub {
  color: #b3b8d0;
  font-size: 1.08rem;
  margin: 18px 0 28px 0;
}
.coming-soon-btn {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.08rem;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 700;
  background: linear-gradient(90deg, #7faaff 0%, #4f8cff 100%);
  color: #fff;
  box-shadow: 0 2px 12px 0 #7faaff33;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
}
.coming-soon-btn:hover {
  background: linear-gradient(90deg, #4f8cff 0%, #7faaff 100%);
  color: #18192b;
  box-shadow: 0 4px 24px 0 #7faaff55;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 600px) {
  .coming-soon-content {
    padding: 28px 8px;
  }
  .coming-soon-content h1 {
    font-size: 1.3rem;
  }
  .coming-soon-illustration svg {
    width: 70px;
    height: 70px;
  }
} 
.games-carousel-section {
  margin: 64px 0 32px 0;
  text-align: center;
}
.games-carousel-title {
  color: #7faaff;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.games-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 18px 0;
  background: rgba(30,32,60,0.7);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 #23243a22;
  margin: 0 auto;
  max-width: 900px;
}
.games-carousel-track {
  display: flex;
  align-items: center;
  animation: games-scroll 22s linear infinite;
  width: max-content;
}
@keyframes games-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.game-logo {
  flex: 0 0 auto;
  margin: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px #7faaff33);
  transition: transform 0.2s;
}
.game-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  opacity: 0.92;
  transition: transform 0.2s, opacity 0.2s;
}
.game-logo:hover img {
  transform: scale(1.13) rotate(-4deg);
  opacity: 1;
}
.games-carousel-note {
  color: #888;
  font-style: italic;
  text-align: center;
  font-size: 0.98em;
  margin-top: 8px;
  margin-bottom: 24px;
}
@media (max-width: 700px) {
  .games-carousel-track {
    animation-duration: 36s;
  }
  .game-logo {
    margin: 0 16px;
  }
  .game-logo img {
    width: 38px;
    height: 38px;
  }
  .games-carousel-title {
    font-size: 1.2rem;
  }
} 