/* ====== SkyOne | Jouer — styles additionnels ====== */
.play-section {
  padding: 72px 20px;
  color: var(--text, #e6eef8);
  text-align: center;
}
.play-section h2 {
  font-weight: 600;
  font-size: 1.05rem;
  opacity: 0.92;
  margin: 0 auto 28px;
  max-width: 820px;
  color: var(--muted, rgba(230, 238, 248, 0.9));
}
/* Info box */
.play-info {
  max-width: 900px;
  margin: 0 auto 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.06));
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02) inset;
}
.play-info h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
}
.play-info ul {
  margin: 8px 0 0;
  padding-left: 1.2em;
}
.play-info li {
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Layout grid */
.play-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Cards */
.play-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.06));
  border-radius: 14px;
  padding: 18px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.play-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.45);
}
.play-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Screens grid */
.play-screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.play-screens img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

/* Aside/connect column */
.connect-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.info-kv {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  text-align: left;
}
.info-kv p {
  margin: 0.1em 0;
}

.mono {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

/* Small helpers & accessibility */
.play-card a.btn.primary {
  display: inline-block;
  text-align: center;
}
.play-card .btn:focus,
.connect-cta .btn:focus {
  outline: 3px solid rgba(66, 153, 225, 0.16);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.06);
}

@media (max-width: 980px) {
  .play-grid {
    grid-template-columns: 1fr;
  }
  .play-screens img {
    height: 120px;
  }
}

@media (max-width: 600px) {
  .play-section h2 {
    font-size: 2rem;
  }
  .play-screens {
    grid-template-columns: repeat(2, 1fr);
  }
  .play-screens img {
    height: 100px;
  }
  .play-info {
    padding: 14px;
  }
}
