.gdp-container { max-width: 900px; padding-top: 130px !important; }

.back-button {
    position: absolute;
    top: 100px;
    left: 150px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-family: 'Lilita One', cursive;
    font-size: 1.1rem;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 18px rgba(124,58,237,0.4);
    border: none;
    letter-spacing: 0.04em;
    cursor: url('/static/cursor/select.cur'), pointer !important;
    opacity: 0;
    animation: fadeUp 0.5s 0.1s ease-out forwards;
}
.back-button * { cursor: url('/static/cursor/select.cur'), pointer !important; }
.back-button:hover { transform: scale(1.06) translateY(-2px); box-shadow: 0 6px 28px rgba(124,58,237,0.55); }
.back-button svg, .back-button span { pointer-events: none; }
.back-button svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
    .back-button {
        top: 90px;
        left: 10px;
        padding: 10px 18px;
        font-size: 1rem;
    }
    .back-button svg { width: 18px; height: 18px; }
}
@media (max-width: 768px) {
    .gdp-container { padding-top: 100px !important; }
    .back-button {
        top: 62px;
        left: 8px;
        padding: 8px 14px;
        font-size: 0.9rem;
        gap: 6px;
    }
    .back-button svg { width: 16px; height: 16px; }
}

.gdp-hero {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gdp-hero-cover {
    flex-shrink: 0;
    width: 220px;
}
.gdp-hero-cover img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(167,139,250,0.25);
    display: block;
}

.gdp-hero-info {
    flex: 1;
    min-width: 260px;
}

.gdp-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
    color: #a78bfa;
    margin: 0 0 6px !important;
}

.gdp-title {
    margin-bottom: 14px !important;
}

.gdp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.gdp-badge {
    background: rgba(124,58,237,0.18);
    border: 1px solid rgba(167,139,250,0.35);
    color: #c4b5fd;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}
.gdp-badge-accent {
    background: rgba(251,191,36,0.15);
    border-color: rgba(251,191,36,0.5);
    color: #fbbf24;
}

.gdp-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.gdp-rating-empty {
    color: rgba(224,212,255,0.45);
    font-size: 0.88rem;
    font-style: italic;
}
.gdp-stars { display: inline-flex; gap: 2px; }
.gdp-star { color: rgba(255,255,255,0.2); font-size: 1.15rem; }
.gdp-star.filled { color: #fbbf24; text-shadow: 0 0 8px rgba(251,191,36,0.5); }
.gdp-rating-text { color: rgba(224,212,255,0.7); font-size: 0.88rem; }

.gdp-lede {
    color: #e0d4ff;
    line-height: 1.65;
    margin-bottom: 22px;
    font-size: 1.02rem;
}

.gdp-play-row { display: flex; gap: 12px; flex-wrap: wrap; }
.gdp-play-btn { display: inline-block; }
.gdp-play-solo {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    box-shadow: 0 4px 16px rgba(34,197,94,0.35) !important;
}

.gdp-section { margin-bottom: 40px; }
.gdp-section h2 {
    font-family: 'Lilita One', cursive;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.gdp-section-sub {
    color: rgba(224,212,255,0.6);
    font-size: 0.92rem;
    margin-bottom: 18px;
}

.gdp-shot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
}
.gdp-shot {
    aspect-ratio: 16/9;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    filter: blur(11px) brightness(0.65) saturate(1.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(167,139,250,0.25);
}
.gdp-shot-lock {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    filter: none;
}

.gdp-related-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.gdp-related-card { display: block; cursor: url('/static/cursor/select.cur'), pointer !important; }
.gdp-related-card * {
    /* let hover/click always resolve to the parent <a>, so the cursor stays
       consistent across the whole card instead of flipping on nested elements */
    pointer-events: none;
}
.gdp-play-btn, .article-back, .article-cta-btn {
    cursor: url('/static/cursor/select.cur'), pointer !important;
}
.gdp-related-cover {
    width: 100%;
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

@media (max-width: 600px) {
    .gdp-hero { flex-direction: column; align-items: center; text-align: center; }
    .gdp-hero-cover { width: 160px; }
    .gdp-badges, .gdp-rating { justify-content: center; }
}
