#banner {
  background-position: 60% center !important;
  background-size: cover !important;
}

#logo::before {
  content: "";
  display: inline-block;
  background: url('/user/images/logo.png') no-repeat center;
  background-size: contain;
  width: 48px;   /* AVANT 32 → maintenant plus gros */
  height: 48px;
  margin-right: 12px;
  vertical-align: middle;
}

h1, h2, h3 {
  letter-spacing: 1px;
}

.button {
  border-radius: 8px;
  font-weight: 600;
}

hr {
  opacity: 0.1;
}


#logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 3px;
  color: #ffffff;
  text-transform: uppercase;
}

/* effet gamer glow */
#logo {
  text-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
}

.cta-container {
  text-align: center;
  margin-top: 40px;
}

.cta-container a {
  display: inline-block !important;
  background: linear-gradient(135deg, #ff7a00, #ffb347) !important;
  color: white !important;
  padding: 18px 40px !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.5) !important;
}

.cta-container a:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(255, 140, 0, 0.9);
}

.hooks .text-left,
.hooks .text-md-left {
  text-align: center !important;
}

a {
  color: #ff6a00;
  text-decoration: none;
  font-weight: 600;
}

.platforms {
  display: flex;
  justify-content: flex-start;
  gap: 25px;
  margin: 25px auto 0;
  max-width: 900px;
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 160px;
  padding: 20px;

  background: #ffffff;
  border-radius: 14px;

  text-decoration: none;
  color: #111;

  transition: all 0.25s ease;
  border: 1px solid rgba(0,0,0,0.08);
}

.cta-card img {
  width: 55px;
  margin-bottom: 12px;
  border-radius: 8px;
}

.cta-card span {
  font-size: 16px;
  font-weight: 700;
}

.cta-card small {
  font-size: 13px;
  opacity: 0.6;
  margin-top: 4px;
}

.cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,106,0,0.5);
}


.pc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.pc-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #111;

  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

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

.pc-info {
  padding: 15px;
}

.pc-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.price {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.status {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.status.dispo {
  background: #e6f7ec;
  color: #1a7f37;
}

.status.sold {
  background: #fdecea;
  color: #d93025;
}

.pc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


.product-container {
  display: flex;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.product-gallery {
  flex: 1;
}

.main-image {
  width: 100%;
  border-radius: 10px;
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.thumbs img {
  width: 70px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.2s;
}

.thumbs img:hover {
  transform: scale(1.1);
}

.product-info {
  flex: 1;
}

.price {
  font-size: 32px;
  font-weight: bold;
  margin: 15px 0;
}

.status.dispo {
  color: #1a7f37;
  font-weight: bold;
}

.buy-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 25px;
  background: orange;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

