/* BODY fusionné */
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', 'Poppins', sans-serif;
  background-color: #000000; /* priorité à la 2e version */
  color: #fff;
}

/* STORE & SHOP */
.store {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  justify-content: center;
}

.subscription-card,
.vcoins-offer {
  background: #1e1e1e;
  border-radius: 8px;
  position: relative;
  padding: 1.5rem;
  flex: 1 1 300px;
  max-width: 350px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.subscription-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.badge-pop {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #d32f2f;
  color: #fff;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.ribbon {
  position: absolute;
  top: 1.2rem;
  right: -3.5rem;
  transform: rotate(45deg);
  background: #ff9800;
  color: #121212;
  font-weight: 600;
  padding: 0.25rem 3rem;
  font-size: 0.75rem;
}

.premium-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.premium-label {
  font-weight: 600;
  color: #ffa726;
}

.vcoins {
  color: #ffa726;
  font-size: 0.9rem;
}

.vcoins-offer {
  background-image: url('www/image/coins.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vcoins-offer h2 {
  margin-top: 0;
}

.badge-new {
  background: #d32f2f;
  color: #fff;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 0.5rem;
}

.btn-sub {
  background: #d32f2f;
  color: #fff;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.btn-sub i {
  margin-right: 0.5rem;
}

.btn-more {
  margin-top: 1rem;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
}

/* FAQ */
.faq {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #333;
}

.accordion-header {
  cursor: pointer;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  display: none;
  padding: 0 1rem 1rem;
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .store {
    flex-direction: column;
    align-items: center;
  }

  .subscription-card,
  .vcoins-offer {
    max-width: none;
    width: 100%;
  }
}

/* NAVBAR */
.navbar {
  position: absolute;
  pointer-events: unset;
  top: 0px;
  left: 183px;
  width: 80%;
  z-index: 1000;
  height: 60px;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  padding: 0 0px;
  box-shadow: 0 5px 5px rgba(255, 0, 0, 0.527);
}

.navbar .logo {
  font-size: 60px;
  font-weight: bold;
  color: orange;
}

.navbar a {
  color: white;
  margin: 0 20px;
  text-decoration: none;
  font-weight: bold;
}

.navbar .active {
  border-bottom: 2px solid white;
}

/* CONTAINER & CARDS */
.container {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 40px auto;
  max-width: 1200px;
  flex-wrap: wrap;
}

.card {
  background-color: #1e1e1e;
  width: 360px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.badge {
  position: absolute;
  margin: 10px;
  padding: 5px 10px;
  background: gold;
  color: black;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.card-content {
  padding: 20px;
  text-align: center;
}

/* PARTIES COMMUNES fusionnées */
.title {
  font-size: 20px;
  font-weight: bold;
  margin: 0.5rem 0;
  margin-bottom: 10px;
}

.price {
  font-size: 18px;
  color: #bbb;
  margin-bottom: 1rem;
}

/* BOUTONS */
.btn {
  background-color: #ff4433;
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.btn:hover {
  background-color: #e63628;
}

.tag {
  background-color: purple;
  color: white;
  padding: 5px 15px;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
}
