.page-project .page-hero {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.page-project .meta-layout,
.page-project .wip-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-project .status-card,
.page-project .meta-card,
.page-project .notes-card {
  min-height: 100%;
}

.page-project .action-row {
  margin-top: 1.4rem;
}

.page-project.page-pulseevents .page-hero h1 {
  text-shadow: 0 0 28px rgba(88, 184, 255, 0.12);
}

.page-project.page-memorychain .page-hero h1 {
  text-shadow: 0 0 28px rgba(88, 184, 255, 0.16);
}

.page-project.page-novapixel .page-hero h1 {
  text-shadow: 0 0 28px rgba(53, 242, 255, 0.12);
}

.page-project.page-pvpflow .page-hero h1 {
  text-shadow: 0 0 28px rgba(255, 91, 115, 0.12);
}

.page-project.page-voidspire .page-hero h1 {
  text-shadow: 0 0 28px rgba(160, 106, 255, 0.12);
}

.page-project.page-coreguard .page-hero h1 {
  text-shadow: 0 0 28px rgba(88, 184, 255, 0.12);
}

.page-project.page-casinocore .page-hero h1 {
  text-shadow: 0 0 28px rgba(255, 91, 115, 0.2);
}

.page-project.page-rewardflow .page-hero h1 {
  text-shadow: 0 0 28px rgba(53, 242, 255, 0.12);
}

.page-project.page-vaultlink .page-hero h1 {
  text-shadow: 0 0 28px rgba(160, 106, 255, 0.12);
}

@media (max-width: 760px) {
  .page-project .meta-layout,
  .page-project .wip-layout {
    grid-template-columns: 1fr;
  }
}

.project-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* wszystko startuje równo z lewej */
}

/* ================= GUIDE SECTION ================= */

.guide-section {
  padding: 4rem 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.release-section {
  padding: 4rem 0;
}

.release-card {
  padding: 1.8rem;
}

.release-header,
.release-grid {
  display: grid;
  gap: 1.5rem;
}

.release-header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  margin-bottom: 1.8rem;
}

.release-card h3,
.release-card h4 {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.release-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.45rem;
}

.release-card h4 {
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.release-meta {
  color: var(--muted);
  line-height: 1.6;
}

.release-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.step-card {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74, 168, 255, 0.2), rgba(53, 242, 255, 0.2));
  border: 2px solid rgba(53, 242, 255, 0.4);
  font-family: "Orbitron", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cyan);
}

.step-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.step-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.step-card code {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: rgba(53, 242, 255, 0.1);
  border: 1px solid rgba(53, 242, 255, 0.2);
  border-radius: 6px;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: var(--cyan);
}

.guide-note {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(74, 168, 255, 0.08), rgba(53, 242, 255, 0.08));
}

.guide-note h4 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

@media (max-width: 640px) {
  .release-header,
  .release-grid {
    grid-template-columns: 1fr;
  }

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