/* ===========================
   Warrior Angel Studio — Multimedia
   =========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

:root {
  --gold: gold;
  --blue: dodgerblue;
  --text: white;

  --gold-soft: rgba(255, 215, 0, 0.25);
  --blue-soft: rgba(30, 144, 255, 0.25);

  --panel: rgba(0, 0, 0, 0.48);
  --panel-strong: rgba(0, 0, 0, 0.60);

  --radius: 24px;
}

body {
  font-family: "Aptos Display", system-ui, Arial, sans-serif;
  color: var(--text);

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.22) 0%,
      rgba(0, 0, 0, 0.38) 45%,
      rgba(0, 0, 0, 0.56) 100%
    ),
    radial-gradient(
      1000px 520px at 15% 10%,
      rgba(255, 215, 0, 0.18),
      transparent 62%
    ),
    radial-gradient(
      1000px 560px at 85% 88%,
      rgba(30, 144, 255, 0.20),
      transparent 62%
    ),
    url("../studio.jpg") no-repeat center center fixed;

  background-size: cover;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 14px 24px;

  background: rgba(0, 0, 0, 0.44);
  border-bottom: 1px solid var(--gold-soft);

  backdrop-filter: blur(6px);
}

.brand .logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand .tag {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.95rem;
  opacity: 0.90;
}

.back-link {
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color .2s ease;
}

.back-link:hover {
  color: var(--gold);
}

.wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px 48px;
}

.hero {
  display: grid;
  place-items: center;
  min-height: 34vh;

  background: var(--panel);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);

  box-shadow: 0 12px 40px rgba(0,0,0,0.46);
  backdrop-filter: blur(3px);
}

.hero-card {
  padding: 34px 24px;
  text-align: center;
}

.eyebrow {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 0.76rem;
  letter-spacing: .28em;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  letter-spacing: 0.04em;

  background: linear-gradient(90deg, var(--gold), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  text-shadow:
    0 0 22px rgba(255,215,0,.20),
    0 0 26px rgba(30,144,255,.18);
}

.subtitle {
  max-width: 650px;
  margin: 14px auto 0;
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  line-height: 1.55;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;

  color: var(--text);
  text-decoration: none;

  background:
    linear-gradient(
      145deg,
      rgba(255,215,0,.055),
      rgba(30,144,255,.055)
    ),
    var(--panel-strong);

  border: 1px solid rgba(255,215,0,.26);
  border-radius: 22px;

  box-shadow: 0 10px 30px rgba(0,0,0,.50);
  backdrop-filter: blur(3px);

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  opacity: .75;
}

.tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.32);
  box-shadow:
    0 16px 44px rgba(0,0,0,.62),
    0 0 28px rgba(30,144,255,.07);
}

.tile-icon {
  position: absolute;
  top: 22px;
  right: 22px;

  display: grid;
  place-items: center;

  width: 54px;
  height: 54px;

  border: 1px solid rgba(255,215,0,.30);
  border-radius: 50%;

  background: rgba(0,0,0,.34);
  color: var(--gold);

  font-size: 1.35rem;
}

.t-content {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 24px;
}

.tile-label {
  margin-bottom: 6px;
  color: dodgerblue;
  font-size: .75rem;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.t-content h2 {
  font-size: 1.55rem;
  margin-right: 64px;
}

.t-content > p:not(.tile-label) {
  margin-top: 8px;
  max-width: 440px;

  color: rgba(255,255,255,.90);
  line-height: 1.5;
}

.enter {
  margin-top: 18px;
  color: var(--gold);
  font-size: .90rem;
  font-weight: 700;
}

.site-footer {
  padding: 8px 24px 28px;
  text-align: center;
  color: rgba(255,255,255,.70);
  font-size: .88rem;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding: 12px 16px;
  }

  .brand .tag {
    display: block;
    margin: 3px 0 0;
  }

  .wrap {
    padding: 20px 14px 36px;
  }

  .hero {
    min-height: 28vh;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .tile {
    min-height: 240px;
  }
}

/* ===========================
   MULTIMEDIA — KAFELKI TRYBÓW
   PLAYER | RADIO
   =========================== */

.tile-mode {
  display: block;
  background: #02050a;
  border-color: rgba(255,215,0,.32);
}

.tile-mode::after {
  opacity: .9;
}

.tile-mode-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .28s ease, filter .28s ease;
}

.tile-mode:hover .tile-mode-image {
  transform: scale(1.025);
  filter: brightness(1.06);
}


/* Trzy kafelki trybów — pełne grafiki bez kadrowania */
.tile.tile-mode {
  min-height: 0;
  aspect-ratio: 1672 / 941;
}

.tile-mode-image {
  object-fit: contain;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
