.game-card {
  background: rgba(30,41,59,0.82);
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px 0 rgba(79,195,247,0.18), 0 1.5px 8px 0 #222b3a;
  border: 1.5px solid rgba(79,195,247,0.18);
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
  min-height: 300px; /* même hauteur que .game-card-image */
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.game-card:hover {
  transform: scale(1.045) translateY(-6px);
  box-shadow: 0 16px 48px 0 rgba(79,195,247,0.28), 0 2px 16px 0 #222b3a;
  border: 1.5px solid #4fc3f7;
}

.game-card-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(30,41,59,0.98) 90%, rgba(30,41,59,0.65) 100%, transparent 100%);
  color: #fff;
  font-size: 0.92rem;      /* Petit et lisible */
  font-weight: 600;
  padding: 0.5rem 0.7rem 0.5rem 0.7rem;
  text-align: center;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px #1e293b;
  border-bottom-left-radius: 1.2rem;
  border-bottom-right-radius: 1.2rem;
  min-height: 1.7em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  width: 100%;
  max-width: 100%;
}

.game-card-image {
  position: relative;
  width: 100%;
  height: 100%;         /* Prend toute la hauteur du parent */
  min-height: 0;
  max-height: none;
  flex: 1 1 auto;       /* Prend l'espace disponible */
  overflow: hidden;
  border-radius: 1.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #181b2b;
  margin-bottom: 0;
  padding: 0;
}

.game-card-image img {
  width: 100%;
  max-width: 220px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1.2rem;
  filter: brightness(0.55);
  transition: filter 0.2s;
}

.game-card-badges {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge {
  background: rgba(79,195,247,0.18);
  color: #4fc3f7;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: 0.7rem;
  box-shadow: 0 2px 8px 0 rgba(79,195,247,0.10);
  letter-spacing: 0.03em;
  border: 1px solid #334155;
}

.badge-platform {
  background: none;      /* Supprime le fond */
  border-radius: 0;      /* Supprime le cercle */
  padding: 0;            /* Supprime le padding */
  box-shadow: none;      /* Supprime l'ombre */
  border: none;          /* Supprime la bordure */
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-platform img {
  width: 28px;
  height: 28px;
  display: block;
}

.game-card-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.badge-platform-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 8px 0 rgba(30,41,59,0.18), 0 0 0 2px #4fc3f7;
  border: none;
  width: 26px;
  height: 26px;
  padding: 0;
}
.badge-platform-pill img {
  width: 14px;
  height: 14px;
  display: block;
  margin: 0;
  filter: drop-shadow(0 1px 2px #222b3a55);
}

@media (max-width: 768px) {

.game-card img {
  	width: 100%;
}
}

.game-item {
  flex: 0 0 16.666%;
  max-width: 16.666%;
  min-width: 180px;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  margin: 0;
  padding: 0;
}

@media (max-width: 1400px) {
  .game-item { flex: 0 0 25%; max-width: 25%; }
}
@media (max-width: 1200px) {
  .game-item { flex: 0 0 33.333%; max-width: 33.333%; }
}
@media (max-width: 992px) {
  .game-item { flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 600px) {
  .game-item { flex: 0 0 100%; max-width: 100%; }
}

.review-card {
  background-color: #1e293b;
  border-radius: 8px;
  border: 1.5px solid #4fc3f7; /* Contour bleu clair */
  padding: 18px 18px 14px 18px;
  margin-bottom: 2rem;
  transition: transform 0.18s, box-shadow 0.18s;
  color: #e2e8f0;
  box-shadow: 0 6px 32px 0 rgba(79,195,247,0.10);
  position: relative;
  overflow: hidden;
}

.review-card img {
  background: #fff;
  padding: 2px;
  margin-right: 0.75rem;
}

.review-card:hover {
  transform: scale(1.025) translateY(-2px);
  box-shadow: 0 12px 32px 0 rgba(79,195,247,0.18);
}

.review-header {
  font-size: 1rem;
  font-weight: bold;
  color: #93c5fd;
}

.review-body {
  font-size: 0.95rem;
  color: #cbd5e1;
}

.review-footer {
  font-size: 0.8rem;
  color: #94a3b8;
  text-align: right;
}

.review-glass-card {
  background: rgba(30,41,59,0.85);
  border-radius: 18px;
  border: 1.5px solid #334155;
  box-shadow: 0 6px 32px 0 rgba(79,195,247,0.10);
  transition: transform 0.18s, box-shadow 0.18s;
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem; /* <-- ESPACE SOUS CHAQUE BLOC */
}
.review-glass-card {
  margin-bottom: 2rem;
}
.review-glass-card:hover {
  transform: scale(1.025) translateY(-2px);
  box-shadow: 0 12px 32px 0 rgba(79,195,247,0.18);
}
@media (max-width: 991px) {
  .glass-score-card { margin-bottom: 2rem; }
}
@media (min-width: 992px) {
  .review-glass-card {
    margin-bottom: 2rem !important; /* Force l'espace même sur desktop */
    margin-right: 0;
  }
}
.btn-homepage-big {
    font-size: 1.2rem !important;
    padding: 1.0rem 4rem !important;
    border-radius: 1rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00c0ff 0%, #4fc3f7 100%);
    color: #fff !important;
    box-shadow: 0 6px 32px 0 rgba(79,195,247,0.22);
    border: none;
    transition: transform 0.15s, box-shadow 0.15s;
    letter-spacing: 0.04em;
}
.btn-homepage-big:hover, .btn-homepage-big:focus {
    background: linear-gradient(90deg, #4fc3f7 0%, #00c0ff 100%);
    color: #fff !important;
    transform: scale(1.06) translateY(-3px);
    box-shadow: 0 12px 40px 0 rgba(79,195,247,0.32);
    text-decoration: none;
}
#game-container {
  gap: 0;
}
@media (max-width: 1400px) {
  .game-item { flex: 0 0 25%; max-width: 25%; }
}
@media (max-width: 1200px) {
  .game-item { flex: 0 0 33.333%; max-width: 33.333%; }
}
@media (max-width: 992px) {
  .game-item { flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 600px) {
  #game-container {
    gap: 10px !important;
    padding-left: 8px;
    padding-right: 8px;
  }
  .game-item {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 0.5rem !important;
    margin: 0 !important;
  }
  .game-card {
    min-height: 180px !important;
    height: auto !important;
    padding: 0.5rem !important;
    margin: 0 !important;
    border-radius: 1rem !important;
  }
  .game-card-image img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 1rem !important;
  }
}
.hero-header-bg {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.96) 100%), url('https://nordikserver.com/templates/nordikserver/img/carousel/banners/carousel-2.png') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
.hero-header-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Bleu sombre et profond, effet cercle */
  background: radial-gradient(
    circle at 50% 50%,
    #005fa3bb 0%,      /* bleu foncé, opaque */
    #003a6d88 40%,     /* bleu encore plus sombre */
    #181a2a 85%        /* fond très sombre */
  );
  z-index: 1;
  pointer-events: none;
}
.hero-header-content {
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 4px 32px #00c0ff88, 0 2px 8px #1e293b;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  position: relative;
}
.hero-title .blue {
  color: #00c0ff;
  text-shadow: 0 0 18px #00c0ff88;
}
.hero-subtitle {
  font-size: 1.35rem;
  color: #b8eaff;
  font-weight: 500;
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 12px #1e293b;
}
.hero-btn {
  font-size: 1.2rem;
  padding: 1rem 3.5rem;
  border-radius: 1rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00c0ff 0%, #4fc3f7 100%);
  color: #fff !important;
  box-shadow: 0 6px 32px 0 rgba(79,195,247,0.22);
  border: none;
  transition: transform 0.18s, box-shadow 0.18s;
  letter-spacing: 0.04em;
  animation: pulseBtn 2.2s infinite;
}
.hero-btn:hover, .hero-btn:focus {
  background: linear-gradient(90deg, #4fc3f7 0%, #00c0ff 100%);
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 12px 40px 0 rgba(79,195,247,0.32);
  text-decoration: none;
}
@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 6px 32px 0 rgba(79,195,247,0.22); }
  50% { box-shadow: 0 0px 48px 0 #00c0ff44; }
}
@media (max-width: 992px) {
  .hero-title { font-size: 2rem; }
  .hero-header-content { padding-top: 2.5rem; padding-bottom: 2.5rem; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 1.35rem; }
  .hero-header-content { padding-top: 1.2rem; padding-bottom: 1.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-btn { font-size: 1rem; padding: 0.8rem 2rem; }
}
.nordik-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.nordik-faq-item {
  background: #23244a;
  border-radius: 18px;
  box-shadow: 0 4px 24px #00c0ff18;
  border: 2px solid #23244a;
  transition: border-color .2s, box-shadow .2s;
}
.nordik-faq-item.open,
.nordik-faq-item:hover {
  border-color: #00c0ff;
  box-shadow: 0 8px 32px #00c0ff33;
}
.nordik-faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  border-radius: 18px;
  transition: background .15s;
  position: relative;
}
.nordik-faq-question:focus {
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
}
.nordik-faq-icon {
  color: #00c0ff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nordik-faq-arrow {
  margin-left: auto;
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  transition: transform .2s;
  background: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path d="M7 8l3 3 3-3"/></svg>') no-repeat center/1.2em;
}
.nordik-faq-item.open .nordik-faq-arrow {
  transform: rotate(180deg);
}
.nordik-faq-answer {
  color: #ccefff;
  font-size: 1rem;
  padding: 0 1.5rem 1.2rem 3.2rem;
  animation: fadeIn .2s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.games-hosting-faq-section{background:#181a2a;padding:3rem 0;}
.games-hosting-faq-section h2{color:#fff;font-size:2.2rem;}
.games-hosting-faq-section .games-hosting-faq-overline{color:#00c0ff;font-weight:600;letter-spacing:.08em;}
.games-hosting-faq-accordion .games-hosting-faq-item{margin-bottom:1.2rem;border-radius:8px;background:#23244a;box-shadow:0 2px 8px rgba(0,0,0,0.08);}
.games-hosting-faq-question{background:none;border:none;color:#fff;font-size:1.1rem;font-weight:600;width:100%;text-align:left;padding:1rem 1.2rem;border-radius:8px 8px 0 0;cursor:pointer;}
.games-hosting-faq-answer{color:#b8eaff;font-size:1rem;padding:1rem 1.2rem;border-radius:0 0 8px 8px;background:#23244a;}