    /* Font Imports */
    @import url('https://fonts.googleapis.com/css2?family=Aldrich&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500&family=Bebas+Neue&family=Exo+2:wght@300;400;500;600&family=Rajdhani:wght@400;600;700&family=Share+Tech+Mono&display=swap');

    /* Variable CSS */
    .container {
        --wn-bg: #1e1e2d;
        --text-color: #666666;
        --text-color-main: #333;
        --border-color: #cccccc;
        /* f0f0f0 */
        --labour: #c52237;
        --labour-head: color-mix(in srgb, var(--labour) 90%, black);
        --footer-col: #e4e4e4;
        --page-bg: #f5f5f5;
        font-family: 'Exo 2', 'Barlow', sans-serif;
        font-size: 15px;
        color: var(--text-color-main);
        line-height: 1.75;
        border: solid 3px #161621;
    }


    /* Container */

    .terminal {
        font-family: 'Exo 2', sans-serif;
        max-width: 1042px;
        margin: 40px auto;
        background: var(--page-bg);
        position: relative;
        overflow: hidden;
    }

    /* Header */
    .header {
        box-sizing: border-box;
        background: var(--labour);
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        display: flex;
        color: var(--page-bg);
        flex-wrap: wrap;
        gap: 30px;
        font-family: 'Aldrich', 'Poppins', sans-serif;
        user-select: none;
    }

    .header-img {
        width: 100%;
        height: 170px;
        background: radial-gradient(circle, rgba(165, 21, 41, 0.7) 15%, rgba(168, 17, 37, 0.9) 100%);
        border-left: rgb(250, 250, 250) solid 3px;
        border-bottom: rgb(250, 250, 250) solid 3px;
        border-top: var(--border-color) solid 2px;
        border-right: var(--border-color) solid 2px;

    }

    .header-img img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        user-select: none;
        pointer-events: none;
    }

    .header h2 {
        margin: 0;
        font-size: 28px;
        font-weight: 600;
    }

    .header h3 {
        color: var(--page-bg);
        letter-spacing: 2px;
    }

    .header h3 strong {
        font-weight: 200;
    }

    .header img {
        height: 90px;
        width: auto;
    }

    /* Navigation */
    .nav {
        border-bottom: 2px solid rgb(29, 29, 29);
        background: linear-gradient(transparent 70%, rgba(107, 107, 107, 0.25));
    }

    .nav ul {
        gap: 8px;
        list-style: none;
        display: flex;
        padding: 0 32px;
        flex-wrap: wrap;
        align-items: center;
        margin: 0;
    }

    .nav ul li {
        font-family: 'Poppins', system-ui, sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: #333;
        cursor: pointer;
        padding: 8px 14px;
        position: relative;
        transition: color 0.15s ease;
    }

    .nav ul li:hover {
        color: var(--labour);
    }

    .nav ul li.active {
        color: var(--labour);
        font-weight: 700;
    }

    .nav ul li.active::after {
        content: '';
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 8px;
        height: 2px;
        background: var(--labour);
    }

    /* Home icon */
    .nav .home {
        display: flex;
        padding: 13px 14px;
    }

    .nav .home img {
        height: 18px;
        width: auto;
    }

    /* Search icon */
    .nav .search {
        margin-left: auto;
        padding: 8px 8px;
    }

    .nav .search img {
        height: 18px;
        width: auto;
        opacity: 0.7;
    }

    /* Hero Image */
    .container .wn-hero {
        position: relative;
        overflow: hidden;
        /* height: 420px; */
        height: 340px;
    }

    .hero-slides {
        position: absolute;
        inset: 0;
    }

    .hero-slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
        z-index: 1;
    }

    .hero-slide.active {
        opacity: 1;
    }

    .wn-hero-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
        color: var(--page-bg);
        padding: 60px 40px 40px;
        z-index: 10;
    }

    .wn-hero-overlay h1 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 51px;
        line-height: 1.05;
        margin: 0 0 12px;
        color: var(--page-bg) !important;
    }

    .wn-hero-overlay p {
        font-size: 14px !important;
        color: var(--page-bg) !important;
    }



    /* Content Area */
    .content-container {
        padding: 35px 24px;
    }

    .content-container h1 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 42px;
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: 2.8px;
        margin: 0 0 10px;
        color: var(--labour-head);
        text-transform: capitalize !important;
    }

    .content-container h2 {
        letter-spacing: 1px;
        margin-top: 4px;
        margin-bottom: 8px;
        color: var(--text-color-main);
        font-family: 'Poppins', system-ui, sans-serif;
    }

    .content-container p {
        font-size: 15px;
        color: var(--text-color-main);
    }

    .content-container .sub {
        font-size: 16px !important;
        line-height: 1.65 !important;
        margin: 0 0 28px !important;
    }

    /* Tab content panels */
    .tab-panel {
        display: none;
        min-height: 600px;
    }

    .tab-panel.active {
        display: block;
    }

    .tab-panel ul {
        padding-left: 20px;
        margin: 12px 0 0;
    }

    .tab-panel li {
        margin-bottom: 6px;
        color: var(--text-color-main);
    }

    /* Profile cards */
    .content-container .profile {
        border-top: var(--border-color) solid 1px;
        margin-bottom: 18px;
        display: inline-block;
        padding-top: 18px;
    }

    .profile-img {
        margin-top: 10px;
        height: 380px;
        width: 240px;
        background: gray;
    }

    .profile-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .profile-info {
        display: flex;
        flex-direction: column;
        padding-right: 22px;
        text-align: center;
        color: var(--text-color-main);
        float: left;
        align-items: center;
        width: 240px;
        position: relative;
    }

    .profile-bio {
        margin-top: 40px;
    }

    .profile-bio p {
        margin: 0 0 16px;
        font-size: 16px;
        text-align: justify;
    }

    .profile-info .data {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        line-height: 1.2;
    }

    .profile-info span {
        display: block;
        text-align: center;
    }

    .profile-info .title {
        font-weight: bold;
        font-size: 18px;
    }

    .profile-info .role {
        font-weight: normal;
        font-size: 14px;
    }

    .profile-info>span {
        font-size: 14px;
        margin-top: 6px;
    }

    /* Fake Button */
    .fake-button {
        display: inline-block;
        border-radius: 4px;
        padding: 8px 42px;
        font-size: 18px;
        font-weight: 900;
        color: var(--labour);
        background: var(--page-bg);
        text-transform: uppercase;
        cursor: pointer;
        transition: filter 0.2s;
        user-select: none;
    }

    .fake-button a {
        text-decoration: none;
    }

    .fake-button:hover {
        filter: brightness(0.8);
    }

    .fake-button a:active,
    .fake-button a:visited {
        color: var(--labour);
    }

    .click {
        cursor: pointer;
    }

    /* Footer */
    footer {
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    footer ul {
        padding: 0;
        margin: 0;
        list-style: none;
        line-height: 1.8;
        cursor: pointer;
    }

    footer h4 {
        margin: 0 0 12px;
        font-weight: bolder;
    }

    .footer-rows {
        background: var(--footer-col);
        padding: 20px 40px 30px;
        font-size: 14px;
        color: var(--text-color);
    }

    .footer-row {
        display: grid;
        gap: 40px;
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-row img {
        height: 60px;
        margin-bottom: 16px;
    }

    .footer strong {
        font-weight: bolder;
    }

    .bottom-divider {
        padding-bottom: 24px;
        border-bottom: 1px solid var(--border-color);
    }

    /* Components */

    .simple-grid {
        display: grid;
        margin-block: 8px;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 100px;
        text-align: justify;
    }

    .simple-grid .card {
        padding: 0 0 4px;
        border-bottom: 1px solid var(--border-color);
    }

    .simple-grid:last-of-type .card {
        padding: 0 0 4px;
        border-bottom: none;
    }

    /* News & Updates */
    .news-up-item {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 22px;
    }

    .news-up-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .news-up-item .meta {
        font-size: 12px;
        color: var(--text-color);
        font-weight: 500;
        margin-bottom: 4px;
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .news-up-item .badge {
        color: var(--text-color-main);
        font-size: 11px;
        font-weight: 600;
    }

    .news-up-item h3 {
        margin: 2px 0 6px;
        font-weight: 700;
        line-height: 1.3;
        color: black;
    }

    .news-up-item p {
        font-size: 15px;
        color: var(--text-color);
    }

    /* Content Button */
    .content-button .fake-button a:hover,
    .content-button a:active {
        color: var(--page-bg);
    }

    /* None of the animations are mine. */
    /* VHS / CRT effect */
    .terminal::after {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        width: calc(100% + 40px);
        height: calc(100% + 40px);
        background-image:
            repeating-linear-gradient(to bottom,
                transparent 0px,
                transparent 1.8px,
                rgba(0, 0, 0, 0.12) 1.8px,
                rgba(0, 0, 0, 0.12) 2.9px),
            radial-gradient(ellipse at center,
                transparent 48%,
                rgba(0, 0, 0, 0.04) 88%);
        background-size: 100% 100%, 100% 100%;
        pointer-events: none;
        z-index: 2;
        mix-blend-mode: multiply;
        opacity: 0.15;
    }

    /* Glitchy scanlines + interference */
    .terminal::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        width: calc(100% + 40px);
        height: calc(100% + 40px);
        background: repeating-linear-gradient(to bottom,
                transparent 0px,
                rgba(255, 255, 255, 0.35) 0.8px,
                rgba(0, 0, 0, 0.62) 3px,
                transparent 4.5px);
        background-size: 100% 6px;
        pointer-events: none;
        z-index: 3;
        mix-blend-mode: overlay;
        animation:
            crt-scanlines 1.1s linear infinite,
            crt-glitch 3.6s steps(1, end) infinite;
        opacity: 0.24;
    }

    @keyframes crt-scanlines {
        0% {
            background-position: 0 0;
        }

        100% {
            background-position: 0 160px;
        }
    }

    @keyframes crt-glitch {

        0%,
        86%,
        100% {
            transform: translate(0, 0);
        }

        87% {
            transform: translate(-5px, 1px);
        }

        89% {
            transform: translate(6px, -2px);
        }

        91% {
            transform: translate(-3px, 2px);
        }

        93% {
            transform: translate(4px, -1px);
        }

        95% {
            transform: translate(-2px, 1px);
        }
    }

    /* scanline (overtop) */
    .vhs-scan {
        position: absolute;
        top: -10%;
        left: -20px;
        width: calc(100% + 40px);
        height: 2px;
        background: linear-gradient(to bottom,
                transparent,
                rgba(0, 0, 0, 0.22),
                transparent);
        pointer-events: none;
        z-index: 5;
        mix-blend-mode: multiply;
        animation: vhs-scan 7.5s linear infinite;
        opacity: 0.4;
    }

    @keyframes vhs-scan {
        0% {
            top: -8%;
        }

        100% {
            top: 108%;
        }
    }

    /* Noise texture */
    .vhs-noise {
        position: absolute;
        top: -20px;
        left: -20px;
        width: calc(100% + 40px);
        height: calc(100% + 40px);
        background-image: url('https://upload.wikimedia.org/wikipedia/commons/7/78/4k_Dissolve_Noise_Texture.png');
        background-repeat: repeat;
        background-size: 115px 115px;
        opacity: 0.045;
        pointer-events: none;
        z-index: 1;
        mix-blend-mode: overlay;
        animation: noise-crawl 8.5s linear infinite;
    }

    @keyframes noise-crawl {
        0% {
            background-position: 0 0;
        }

        100% {
            background-position: 180px 120px;
        }
    }

    .main-content {
        background: rgba(190, 190, 190, 0.2);
        padding: 24px;
        border-left: rgb(250, 250, 250) solid 2px;
        border-bottom: rgb(250, 250, 250) solid 2px;
        border-top: var(--border-color) solid 1px;
        border-right: var(--border-color) solid 1px;
        margin-bottom: 24px;
    }

    .side-content {
        flex: 0 0 280px;
        width: 280px;
        box-sizing: border-box;
        padding: 10px;
        background: rgba(136, 22, 22, 0.05);
    }

    .sidebar-container {
        padding: 18px;
        /* background: rgba(190, 190, 190, 0.2); */
        background: rgb(228, 228, 228);
        margin-bottom: 24px;
        border-left: rgb(250, 250, 250) solid 2px;
        border-bottom: rgb(250, 250, 250) solid 2px;
        border-top: var(--border-color) solid 1px;
        border-right: var(--border-color) solid 1px;
    }

    .sidebar-container:last-child {
        margin-bottom: 10px;
    }

    .sidebar-container.news {
        position: relative;
        overflow: hidden;
        max-height: 268px;
    }

    .sidebar-container.news .side-news {
        position: relative;
    }

    .sidebar-container.news .side-news::after {
        content: '';
        position: absolute;
        background: linear-gradient(to top, #e7e7e7 5%, transparent);
        left: 0;
        right: 0;
        bottom: 0;
        height: 30%;
        pointer-events: none;
    }

    .sidebar-container.news .expand {
        width: 80%;
        height: 30px;
        align-content: center;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #636262;
        margin: 0 auto;
        text-align: center;
        border-radius: 4px;
        background: var(--page-bg);
        border: var(--border-color) solid 1px;
        transition: filter 0.15s ease;
    }

    .sidebar-container.news .expand:hover {
        filter: brightness(0.8);
    }


    .sidebar-container.contact header {
        border-bottom: solid 1px rgba(0, 0, 0, 0.1);
        margin-bottom: 12px;
    }

    .sidebar-container.contact h2 {
        margin: 0;
        line-height: 1;
        margin-bottom: 12px;
    }

    .body-main {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    .body-main> :not(.side-content) {
        flex: 1 1 0;
        min-width: 0;
    }

    .body-main .banner-ad {
        margin-left: 0;
        margin-right: 0;
    }

    .side-news article {
        font-size: 14px;
        line-height: 1.35;
        margin-bottom: 6px;
    }

    .side-news .title {
        font-style: italic;
        color: var(--labour) !important;
        max-height: 38px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-transform: capitalize;
    }

    .sidebar-container.list {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .sidebar-container.list .button-list img {
        height: 20px;
        width: 20px;
        object-fit: cover;
        object-position: center;

    }

    .sidebar-container.list .button-list {
        display: flex;
        gap: 10px;
        align-items: center;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.8);
        border: var(--border-color) solid 1px;
        max-height: 20px;
    }

    .sidebar-container.list .button-list span {
        text-transform: uppercase;
        color: var(--labour);
        font-weight: 700;
    }

    .banner-ad {
        position: relative;
        box-sizing: border-box;
        margin: 0 24px 30px;
        /* padding: 24px; */
        padding: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 165px;
        background: rgba(190, 190, 190, 0.2);
        border-left: rgb(250, 250, 250) solid 3px;
        border-bottom: rgb(250, 250, 250) solid 3px;
        border-top: var(--border-color) solid 2px;
        border-right: var(--border-color) solid 2px;
        text-align: center;
        font-weight: 700;
        font-size: 22px;
        letter-spacing: 1px;
        border-radius: 4px;
        color: var(--text-color-main);
        user-select: none;
    }

    .banner-ad.page {
        margin: unset;
        margin-top: 50px !important;
        min-height: 60px;
        max-height: 165px;
        height: unset;
        padding: 24px;
    }

    .banner-ad.page.large {
        min-height: 324px;
        max-height: unset;
    }

    .banner-ad.page.large2 {
        min-height: 180px;
    }

    .banner-ad img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        user-select: none;
        pointer-events: none;
    }

    .banner-ad span {
        font-size: 34px;
    }

    .banner-ad .text {
        position: absolute;
        padding: 4px 24px;
        background: rgba(214, 214, 214, 0.7);
        color: rgb(42, 42, 95);
        font-weight: 600;
        text-transform: capitalize;
        border: rgba(0, 0, 0, 0.4) solid 2px;
        font-size: 14px;
        top: 12px;
        left: 24px;
        font-family: Georgia, 'Times New Roman', Times, serif;
    }
