/* =========================================================
   THE PERPETUAL CLASH - PAGE SPECIFIC STYLES
   ========================================================= */


/* =========================
   HERO (TPC ONLY)
   ========================= */

.tpc-hero {
    margin-top: 80px;

    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}

.tpc-hero h1 {
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}


/* =========================
   TPC PAGE SCOPE
   ========================= */

.tpc-page {
    gap: 4rem;
}


/* =========================
   BLOCK VISUAL OVERRIDES
   ========================= */

.tpc-page .game-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.08);

    backdrop-filter: blur(10px);
    text-align: center;
}

.tpc-page .game-block:hover {
    border-color: rgba(0, 255, 255, 0.25);
}

.tpc-section ul, 
.tpc-section ol {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.game-block ul,
.game-block ol {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    line-height: 2;

}


/* =========================
   TYPOGRAPHY (TPC STYLE)
   ========================= */

.tpc-page .game-block h2 {
    background: linear-gradient(45deg, #00ffff, #45caff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tpc-page .game-block li::before {
    color: #00ffff;
}


/* =========================
   MEDIA POLISH
   ========================= */

.tpc-page .game-media {
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.tpc-page .game-media video {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.tpc-page .game-media:hover video {
    opacity: 1;
}


/* =========================
   FEATURE TAG OVERRIDE
   ========================= */

.tpc-page .feature {
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.tpc-page .feature i {
    color: #00ffff;
}


/* =========================
   DEVELOPMENT STATUS
   ========================= */

.tpc-page .status-item.current .status-icon {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}


/* =========================
   CTA (TPC STYLE)
   ========================= */

.tpc-page .game-cta {
    padding: 4rem 2rem;

    background: linear-gradient(
        45deg,
        rgba(0, 255, 255, 0.08),
        rgba(69, 202, 255, 0.05)
    );

    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.tpc-page .btn-primary {
    background: linear-gradient(45deg, #00ffff, #45caff);
    color: #000;
    font-weight: bold;
}

.tpc-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}
