:root {
    --pr-primary: #29b6f6;
    --pr-deep: #04205F;
    --pr-ink: #101828;
    --pr-muted: #475467;
    --pr-bg: #f6f7fb;
    --pr-card: #ffffff;
    --pr-border: rgba(16, 24, 40, 0.10);
    --pr-shadow: 0 14px 46px rgba(16, 24, 40, 0.10);
}

.pr-hero {
    position: relative;
    padding: 120px 0 96px;
    color: #fff;
    overflow: hidden;
    background-image: url('/static/images/Gemini_Generated_Image_v36ar7v36ar7v36a.png');
    background-size: cover;
    background-position: center;
}

.pr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(3, 18, 58, 0.82);
    pointer-events: none;
}

.pr-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.35;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

.pr-hero .container {
    position: relative;
    z-index: 2;
}

.pr-hero h1 {
    font-size: 3.1rem;
    font-weight: 950;
    line-height: 1.12;
    margin: 0 0 14px 0;
    color: #fff;
    letter-spacing: 0.2px;
}

.pr-hero .subtitle {
    font-size: 1.25rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 300;
    margin: 0;
    max-width: 720px;
}

.pr-wrap {
    background: var(--pr-bg);
    padding: 64px 0;
}

.pr-title h2 {
    color: var(--pr-deep);
    font-weight: 950;
    margin: 0 0 10px 0;
}

.pr-title p {
    margin: 0;
    color: var(--pr-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.pr-changelog {
    margin-top: 24px;
}

.pr-changelog-item {
    background: var(--pr-card);
    border: 1px solid var(--pr-border);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
    padding: 20px 24px;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}

.pr-changelog-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, rgba(41, 182, 246, 0.9), rgba(4, 32, 95, 0.9));
    opacity: 0.6;
}

.pr-changelog-item .cl-date {
    font-weight: 950;
    color: var(--pr-deep);
    font-size: 1.1rem;
    margin: 0 0 12px 0;
    padding-left: 4px;
}

.pr-changelog-item .cl-release {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(41, 182, 246, 0.12);
    border: 1px solid rgba(41, 182, 246, 0.22);
    color: var(--pr-deep);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.pr-changelog-item .cl-list {
    margin: 0;
    padding-left: 1.25rem;
    color: #344054;
    line-height: 1.9;
    font-size: 0.98rem;
}

.pr-changelog-item .cl-list li {
    margin-bottom: 6px;
}

.pr-changelog-item .cl-single {
    margin: 0;
    color: #344054;
    line-height: 1.75;
    padding-left: 4px;
}

@media (max-width: 992px) {
    .pr-hero h1 { font-size: 2.25rem; }
    .pr-hero { padding: 105px 0 70px; }
}

@media (max-width: 768px) {
    .pr-hero { padding: 96px 0 56px; }
    .pr-hero .subtitle { font-size: 1.05rem; }
}