:root {
  --text: #fff;
  --card: rgba(5, 20, 60, .58);
  --text-muted: #cfd8ec; 
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(rgba(0, 20, 80, .55), rgba(0, 20, 80, .8)), url('adwaita.jpg') center/cover fixed;
}

.hero {
  text-align: center;
  padding: 70px 20px;
}

.logo {
  width: 150px;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 20px 0 10px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.version {
  color: #cfd8ec;
}

h3.tagline {
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 700px;
  margin: 15px auto 0 auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

.play-btn {
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.play-btn:hover {
  opacity: 0.85;
}

.coffee-header {
  height: 60px;
}

main {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.video-description {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}

.card {
  background: var(--card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 28px;
  border-radius: 28px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

/* ==========================================================================
   SEKCJA CECH (MAIN FEATURES) - POPRAWIONE I SKONSOLIDOWANE STYLOWANIE
   ========================================================================== */
.features-list h4 {
  margin-bottom: 2px !important;
  margin-top: 18px !important;
  color: #ffffff !important;
}

.features-list p {
  color: #cfd8ec !important;   /* Wymuszenie szarego/jasnoniebieskiego koloru tekstu */
  font-size: 0.95rem !important; /* Odpowiednik pomniejszonego tekstu wyjustowanego */
  margin-top: 0 !important;    /* Całkowite przyciągnięcie paragrafu do nagłówka h4 */
  line-height: 1.4;
}

.card p.disclaimer {
  color: #cfd8ec !important;
  font-size: 0.85rem !important;
  margin-top: 25px !important;
}

video {
  width: 100%;
  border-radius: 18px;
}

.signature {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.gallery-info {
  text-align: center;
  color: #d5def3;
}

.screenshots {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.screenshots img {
  height: 560px;
  border-radius: 22px;
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

.screenshots::-webkit-scrollbar {
  height: 10px;
}

.screenshots::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .4);
  border-radius: 999px;
}

.center {
  text-align: center;
}

.coffee-big {
  width: 260px;
  max-width: 90%;
  transition: transform 0.2s ease;
}

.coffee-big:hover {
  transform: scale(1.03);
}

footer {
  margin: 30px auto 0;
  max-width: 1200px;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

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

footer a:hover {
  color: #8ec0ff;
}

.copyright {
  text-align: center;
  padding: 20px;
  color: #fff;
}

@media (max-width: 900px) {
  .video-description {
    grid-template-columns: 1fr;
  }
  .screenshots img {
    height: 420px;
  }
}
