/* ============================================
   BIRDS IN SPACE - Page-Specific Styles
   ============================================ */

.page-birds-in-space {
    --birds-accent: #85d9eb;
    --birds-shell: rgba(16, 13, 22, 0.68);
    background: #0c0a12;
    color: #eef5f8;
    isolation: isolate;
}

.page-birds-in-space .nav {
    background: rgba(8, 7, 16, 0.94);
}

.page-birds-in-space #site-header {
    position: relative;
    z-index: 3;
}

.page-birds-in-space #main-content,
.page-birds-in-space #site-footer {
    position: relative;
    z-index: 1;
}

.page-birds-in-space::before {
    content: '';
    position: fixed;
    inset: -18px;
    background:
        linear-gradient(rgba(8, 7, 16, 0.42), rgba(8, 7, 16, 0.56)),
        url('../../birds-in-space/img/cover.webp') center / cover no-repeat;
    filter: blur(10px);
    transform: scale(1.05);
    pointer-events: none;
    z-index: -2;
}

.page-birds-in-space::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 12, 0.2);
    pointer-events: none;
    z-index: -1;
}

.birds-atmosphere {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.birds-orb,
.birds-seed {
    position: absolute;
    left: var(--x, 50%);
    top: var(--y, 50%);
    transform: translate3d(-50%, -50%, 0);
}

.birds-orb {
    display: none;
}

.birds-seed {
    width: var(--size, 10px);
    height: var(--size, 10px);
    background: rgba(255, 226, 104, 0.72);
    box-shadow: 0 0 10px rgba(255, 234, 110, 0.12);
    transform: translate3d(-50%, -50%, 0) rotate(45deg);
    animation: birdsSeedFloat var(--dur, 11s) linear infinite alternate;
    animation-delay: var(--delay, 0s);
}

@keyframes birdsSeedFloat {
    from {
        transform: translate3d(-50%, -50%, 0) rotate(45deg);
        opacity: 0.35;
    }

    to {
        transform: translate3d(calc(-50% + var(--dx, 12px)), calc(-50% + var(--dy, 14px)), 0) rotate(120deg);
        opacity: 0.72;
    }
}

.page-birds-in-space .section-header h2,
.page-birds-in-space .info-card h3 {
    color: var(--birds-accent);
}

.page-birds-in-space .badge-jam {
    color: var(--birds-accent);
    border-color: var(--birds-accent);
}

.page-birds-in-space .info-card {
    background: transparent;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
}

.page-birds-in-space .info-card + .info-card {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(133, 217, 235, 0.14);
}

.page-birds-in-space .spec-row {
    border-bottom-color: rgba(133, 217, 235, 0.14);
}

.page-birds-in-space .feature-item i {
    color: var(--birds-accent);
}

.page-birds-in-space .game-about {
    border-top-color: rgba(133, 217, 235, 0.14);
}

.page-birds-in-space .main-screenshot,
.page-birds-in-space .game-logo,
.page-birds-in-space .gallery-thumb {
    border-color: rgba(133, 217, 235, 0.14);
}

.page-birds-in-space .main-screenshot {
    background: rgba(6, 5, 16, 0.34);
}

.page-birds-in-space .gallery-thumb:hover,
.page-birds-in-space .gallery-thumb--active {
    border-color: var(--birds-accent);
}

.page-birds-in-space .about-text p,
.page-birds-in-space .credits-list {
    color: rgba(238, 245, 248, 0.82);
}

.birds-logo-banner {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.birds-inline-note {
    margin-bottom: 0;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(230, 240, 246, 0.72);
}

@media (prefers-reduced-motion: reduce) {
    .birds-orb,
    .birds-seed {
        animation: none !important;
    }
}
