:root {
            --theme-bg: #121624;
            --theme-primary: #e36583;
            --theme-accent: #f28da3;
            --theme-surface: #1a2035;
            --theme-surface-alt: #161b2e;
            --theme-text: #f0f4f8;
            --theme-subtext: #9aa8c3;
            --theme-border: rgba(227, 101, 131, 0.25);
            --theme-glow: rgba(227, 101, 131, 0.15);
            --radius-main: 16px;
            --radius-sm: 10px;
            --transition: 0.25s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--theme-bg);
            color: var(--theme-text);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
            line-height: 1.7;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* Mandatory Header Re-use Styling */
        .beacon-sheath {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            background: #0b0e17;
            border-bottom: 1px solid var(--theme-border);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .beacon-crest {
            display: flex;
            align-items: center;
            min-width: 0;
        }

        .beacon-crest img {
            height: 36px;
            width: auto;
            display: block;
        }

        .nexus-cluster {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
            min-width: 0;
        }

        .latch-strand {
            color: var(--theme-subtext);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color var(--transition);
            word-break: keep-all;
        }

        .latch-strand:hover,
        .latch-strand.active {
            color: var(--theme-primary);
        }

        /* Layout Structure */
        main {
            display: flex;
            flex-direction: column;
            gap: 3.5rem;
            padding: 2.5rem 1.5rem;
            max-width: 1240px;
            margin: 0 auto;
        }

        /* Hero Canopy Vanguard Block */
        .canopy-vanguard {
            background: linear-gradient(135deg, #0d101d 0%, #1a2035 100%);
            border: 1px solid var(--theme-border);
            border-radius: var(--radius-main);
            padding: 3rem 2rem;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            align-items: center;
        }

        .aegis-sheath {
            flex: 1 1 500px;
            min-width: 0;
        }

        .pennant-mark {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--theme-glow);
            color: var(--theme-accent);
            border: 1px solid rgba(227, 101, 131, 0.4);
            padding: 0.35rem 0.9rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
        }

        .canopy-edict {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.25;
            letter-spacing: -0.5px;
            margin-bottom: 1rem;
            white-space: normal;
        }

        .canopy-script {
            color: var(--theme-subtext);
            font-size: 1.05rem;
            margin-bottom: 2rem;
            line-height: 1.75;
        }

        .visor-vault {
            flex: 1 1 420px;
            min-width: 0;
            position: relative;
            border-radius: var(--radius-main);
            overflow: hidden;
            border: 1px solid rgba(227, 101, 131, 0.3);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
            background: var(--theme-surface-alt);
        }

        .visor-strand {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .visor-vault:hover .visor-strand {
            transform: scale(1.03);
        }

        /* Download Acquisition Matrix */
        .nook-cohort {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            width: 100%;
            margin-top: 1rem;
        }

        .haven-capsule {
            flex: 1 1 300px;
            min-width: 0;
            background: var(--theme-surface);
            border: 1px solid rgba(227, 101, 131, 0.2);
            border-radius: var(--radius-main);
            padding: 1.8rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
        }

        .haven-capsule:hover {
            transform: translateY(-4px);
            border-color: var(--theme-primary);
            box-shadow: 0 10px 25px rgba(227, 101, 131, 0.2);
        }

        .rune-sheath {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, rgba(227, 101, 131, 0.2) 0%, rgba(242, 141, 163, 0.05) 100%);
            border: 1px solid rgba(227, 101, 131, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            color: var(--theme-accent);
        }

        .edict-primary {
            font-size: 1.35rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.5rem;
            white-space: normal;
        }

        .script-secondary {
            color: var(--theme-subtext);
            font-size: 0.92rem;
            margin-bottom: 1.25rem;
        }

        .node-ribbon {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            font-size: 0.85rem;
            color: var(--theme-subtext);
            border-top: 1px dashed rgba(255, 255, 255, 0.1);
            padding-top: 0.85rem;
            margin-bottom: 1.25rem;
        }

        .pulse-clinch {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            background: linear-gradient(135deg, #e36583 0%, #d84b6c 100%);
            color: #ffffff;
            text-decoration: none;
            padding: 0.85rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 8px 20px rgba(227, 101, 131, 0.35);
            transition: opacity var(--transition), transform var(--transition);
            width: 100%;
            text-align: center;
        }

        .pulse-clinch:hover {
            opacity: 0.92;
            transform: translateY(-2px);
        }

        .pivot-pulse {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            background: rgba(255, 255, 255, 0.05);
            color: var(--theme-text);
            border: 1px solid rgba(227, 101, 131, 0.3);
            text-decoration: none;
            padding: 0.75rem 1.2rem;
            border-radius: 10px;
            font-weight: 500;
            font-size: 0.88rem;
            transition: background var(--transition), border-color var(--transition);
            flex: 1 1 45%;
            min-width: 0;
            text-align: center;
        }

        .pivot-pulse:hover {
            background: rgba(227, 101, 131, 0.15);
            border-color: var(--theme-primary);
        }

        /* Non-Section Outer Block 1: Domain Fortress */
        .domain-fortress {
            background: var(--theme-surface);
            border: 1px solid var(--theme-border);
            border-radius: var(--radius-main);
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        }

        .vault-matrix {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1.75rem;
        }

        .terminal-sheath {
            flex: 1 1 320px;
            min-width: 0;
            background: var(--theme-surface-alt);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-sm);
            padding: 1.5rem;
        }

        .terminal-sheath h3 {
            font-size: 1.1rem;
            color: var(--theme-accent);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .terminal-sheath ul {
            list-style: none;
            color: var(--theme-subtext);
            font-size: 0.92rem;
        }

        .terminal-sheath li {
            position: relative;
            padding-left: 1.2rem;
            margin-bottom: 0.6rem;
        }

        .terminal-sheath li::before {
            content: "›";
            position: absolute;
            left: 0;
            color: var(--theme-primary);
            font-weight: bold;
        }

        /* Hash Code Verification Terminal Box */
        .code-sheath {
            background: #090c14;
            border: 1px solid rgba(227, 101, 131, 0.3);
            border-radius: var(--radius-sm);
            padding: 1.25rem;
            font-family: "Courier New", Courier, monospace;
            font-size: 0.88rem;
            color: #7ee787;
            overflow-x: auto;
            margin-top: 1rem;
            white-space: pre-wrap;
        }

        /* Release Notes Preview Section */
        .vault-fortress {
            background: linear-gradient(180deg, var(--theme-surface) 0%, #151a2c 100%);
            border: 1px solid var(--theme-border);
            border-radius: var(--radius-main);
            padding: 2.5rem 2rem;
        }

        .timeline-cohort {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .timeline-node {
            background: var(--theme-surface-alt);
            border-left: 4px solid var(--theme-primary);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            padding: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: space-between;
        }

        .timeline-info {
            flex: 1 1 500px;
            min-width: 0;
        }

        .timeline-date {
            color: var(--theme-subtext);
            font-size: 0.85rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        /* Mandatory Footer Styling */
        .stratum-bedrock {
            background: #090c14;
            border-top: 1px solid var(--theme-border);
            padding: 3rem 1.5rem;
            margin-top: 4rem;
        }

        .anchor-base {
            max-width: 1240px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-between;
            align-items: center;
        }

        .brand-txt {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

        .base-beacon {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .base-strand {
            color: var(--theme-subtext);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color var(--transition);
        }

        .base-strand:hover {
            color: var(--theme-primary);
        }

        .script-txt {
            width: 100%;
            text-align: center;
            color: rgba(154, 168, 195, 0.6);
            font-size: 0.85rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        @media (max-width: 768px) {
            .beacon-sheath {
                padding: 0.8rem 1rem;
            }
            .nexus-cluster {
                gap: 0.8rem;
            }
            .latch-strand {
                font-size: 0.88rem;
            }
            main {
                padding: 1.5rem 1rem;
                gap: 2rem;
            }
            .canopy-vanguard,
            .domain-fortress,
            .vault-fortress {
                padding: 1.5rem 1.2rem;
            }
            .canopy-edict {
                font-size: 1.6rem;
            }
        }

.beacon-beacon-sheath {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--theme-text);
}
.beacon-beacon-sheath,
.beacon-beacon-sheath *,
.beacon-beacon-sheath *::before,
.beacon-beacon-sheath *::after {
    box-sizing: border-box;
}

.beacon-beacon-sheath nav,
.beacon-beacon-sheath div,
.beacon-beacon-sheath section,
.beacon-beacon-sheath article,
.beacon-beacon-sheath aside,
.beacon-beacon-sheath p,
.beacon-beacon-sheath h1,
.beacon-beacon-sheath h2,
.beacon-beacon-sheath h3,
.beacon-beacon-sheath h4,
.beacon-beacon-sheath h5,
.beacon-beacon-sheath h6,
.beacon-beacon-sheath a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.beacon-beacon-sheath p,
.beacon-beacon-sheath h1,
.beacon-beacon-sheath h2,
.beacon-beacon-sheath h3,
.beacon-beacon-sheath h4,
.beacon-beacon-sheath h5,
.beacon-beacon-sheath h6 {
    text-decoration: none;
}

.beacon-beacon-sheath img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.beacon-beacon-sheath {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.beacon-beacon-sheath a.beacon-latch-strand {
    --aisite-shell-nav-padding: 0.5rem 1.1rem;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.beacon-beacon-sheath a.beacon-latch-strand,
.beacon-beacon-sheath a.beacon-latch-strand:hover,
.beacon-beacon-sheath a.beacon-latch-strand:focus,
.beacon-beacon-sheath a.beacon-latch-strand:active,
.beacon-beacon-sheath a.beacon-latch-strand.active,
.beacon-beacon-sheath a.beacon-latch-strand[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.beacon-beacon-sheath{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(18, 22, 36, 0.92);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(227, 101, 131, 0.25);
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.beacon-beacon-sheath .beacon-beacon-crest{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.beacon-beacon-sheath .beacon-beacon-crest img{
            height: 38px;
            width: auto;
            display: block;
        }

.beacon-beacon-sheath .beacon-nexus-cluster{
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
            min-width: 0;
        }

.beacon-beacon-sheath .beacon-latch-strand{
            color: #9aa8c3;
            text-decoration: none;
            padding: 0.5rem 1.1rem;
            border-radius: 99px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: normal;
        }

.beacon-beacon-sheath .beacon-latch-strand:hover, .beacon-beacon-sheath .beacon-latch-strand.active{
            color: #ffffff;
            background: rgba(227, 101, 131, 0.18);
            box-shadow: 0 0 12px rgba(227, 101, 131, 0.35);
            border: 1px solid #e36583;
        }

@media (max-width: 768px){.beacon-beacon-sheath{
                padding: 0.8rem 1rem;
                flex-direction: column;
                align-items: stretch;
                gap: 0.8rem;
            }

.beacon-beacon-sheath .beacon-nexus-cluster{
                justify-content: center;
            }

.beacon-beacon-sheath .beacon-latch-strand{
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }}

.beacon-beacon-sheath {
    background: rgb(18, 22, 36);
    background-image: none;
}

.bedrock-bedrock-stratum {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--theme-text);
}
.bedrock-bedrock-stratum,
.bedrock-bedrock-stratum *,
.bedrock-bedrock-stratum *::before,
.bedrock-bedrock-stratum *::after {
    box-sizing: border-box;
}

.bedrock-bedrock-stratum nav,
.bedrock-bedrock-stratum div,
.bedrock-bedrock-stratum section,
.bedrock-bedrock-stratum article,
.bedrock-bedrock-stratum aside,
.bedrock-bedrock-stratum p,
.bedrock-bedrock-stratum h1,
.bedrock-bedrock-stratum h2,
.bedrock-bedrock-stratum h3,
.bedrock-bedrock-stratum h4,
.bedrock-bedrock-stratum h5,
.bedrock-bedrock-stratum h6,
.bedrock-bedrock-stratum a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.bedrock-bedrock-stratum p,
.bedrock-bedrock-stratum h1,
.bedrock-bedrock-stratum h2,
.bedrock-bedrock-stratum h3,
.bedrock-bedrock-stratum h4,
.bedrock-bedrock-stratum h5,
.bedrock-bedrock-stratum h6 {
    text-decoration: none;
}

.bedrock-bedrock-stratum img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.bedrock-bedrock-stratum {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.bedrock-bedrock-stratum a,
.bedrock-bedrock-stratum a:hover,
.bedrock-bedrock-stratum a:focus,
.bedrock-bedrock-stratum a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.bedrock-bedrock-stratum .bedrock-stratum-edict{
            font-size: 2rem;
            color: #ffffff;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

.bedrock-bedrock-stratum{
            background: #0b0e17;
            border-top: 1px solid rgba(227, 101, 131, 0.25);
            padding: 3rem 2rem 2rem;
            color: #9aa8c3;
            font-size: 0.9rem;
        }

.bedrock-bedrock-stratum .bedrock-bedrock-sheath{
            max-width: 1360px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            justify-content: space-between;
            margin-bottom: 2rem;
        }

.bedrock-bedrock-stratum .bedrock-anchor-base{
            flex: 1 1 300px;
            min-width: 0;
        }

.bedrock-bedrock-stratum .bedrock-anchor-edict{
            font-size: 1.4rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }

.bedrock-bedrock-stratum .bedrock-anchor-script{
            line-height: 1.6;
            margin-bottom: 1rem;
        }

.bedrock-bedrock-stratum .bedrock-stratum-cluster{
            flex: 1 1 180px;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

.bedrock-bedrock-stratum .bedrock-stratum-edict{
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

.bedrock-bedrock-stratum .bedrock-stratum-strand{
            color: #9aa8c3;
            text-decoration: none;
            transition: color 0.2s ease;
        }

.bedrock-bedrock-stratum .bedrock-stratum-strand:hover{
            color: #f28da3;
        }

.bedrock-bedrock-stratum .bedrock-base-copyright{
            max-width: 1360px;
            margin: 0 auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            font-size: 0.85rem;
        }