*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, sans-serif;
  background: #009cff;
  color: #ffffff;
}

.page {
  display: flex;
  justify-content: center;
}

.container {
  max-width: 1080px;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* ================== GLASS SECTIONS ================== */

.glass {
  background: rgba(255, 255, 255, 0.08); /* soft white glass */
  backdrop-filter: blur(14px);
  box-shadow: none;
  border: none;
}

/* ==================================================== */

img,
button {
  border-radius: 0;
}

/* ---------------- TRAILER SECTION ---------------- */

.trailer-section {
  padding: 1.1rem 1.2rem;
}

.trailer-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.9;
  margin-bottom: 0.6rem;
}

.trailer-frame-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.25);
}

.trailer-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------------- HERO ---------------- */

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-left,
.hero-right {
  flex: 1;
}

@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
    align-items: stretch;
  }
}

.hero-right {
  display: flex;
  align-items: center;
}

.banner-wrapper {
  width: 100%;
  aspect-ratio: 1232 / 706;
  background: rgba(255, 255, 255, 0.06);
}

.banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.description {
  line-height: 1.6;
  max-width: 540px;
  font-size: 0.95rem;
}

/* ---------------- INFO SECTION ---------------- */

.info-section {
  padding: 0.9rem 1rem;
}

.info-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.btn {
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
}

.btn-presskit {
  background: rgba(34, 197, 94, 0.95);
  color: #ffffff;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-presskit:hover {
  background: rgba(2, 2, 94, 1);
}

.meta {
  padding: 0.5rem 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.meta-label {
  font-size: 0.7rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.meta-value {
  font-size: 0.85rem;
}

/* ---------------- SCREENSHOTS ---------------- */

.screenshots-section {
  padding: 1.2rem;
}

.screenshots-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.6rem;
  opacity: 0.9;
}

.carousel {
  display: flex;
  gap: 0.6rem;
}

.carousel-track-wrapper {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

.screenshot-item {
  min-width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: none;
}

.screenshot-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  width: 2.4rem;
}

/* ---------------- CTA + FOOTER ---------------- */

.cta-section {
  text-align: center;
}

.btn-purchase {
  background: rgba(37, 99, 235, 0.96);
  color: #ffffff;
  padding: 0.7rem 1.8rem;
}

/* FOOTER – KORUNAN STİL + AYIRICI ÇİZGİ */

.logo-wrapper {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.logo-wrapper img {
  max-width: 160px;
  filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.35));
}

.all-games-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.all-games-link:hover {
  color: #ffffff;
}

.copyright-text {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
}

/* ---------------- MOBILE ---------------- */

@media (max-width: 767px) {
  .cta-section .btn-purchase {
    width: 100%;
  }
}

.top-divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.25);
}

