* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    background: #02030a;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: #02030a;
    color: #ffffff;
    font-family: "Rajdhani", sans-serif;
    overflow-x: hidden;
}

/*
 * Die komplette Seite wird auf die native Breite des Desktop-Heros begrenzt.
 * Auf sehr breiten Monitoren bleibt sie zentriert, statt das Hero zu strecken.
 */
.site-shell {
    width: 100%;
    max-width: 1983px;
    min-height: 100vh;
    margin: 0 auto;
    background: #050716;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.45);
}


/* =========================
 *  HERO
 *  ========================= */
.hero {
    position: relative;
    width: 100%;

    /* Native Bildproportion: 1983 × 793. Dadurch kein Abschneiden/Verziehen. */
    aspect-ratio: 1983 / 793;

    background-image: url("img/hero-desktop.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
}

/* Weicher Übergang vom Bild in den Seitenhintergrund. */
.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 20%;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(5, 7, 22, 0),
        rgba(5, 7, 22, 0.35) 55%,
        #050716 100%
    );
}



/* =========================
 *  HERO → BODY NAVIGATION
 *  ========================= */

.transition-nav {
    position: relative;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    width: min(920px, calc(100% - 64px));
    min-height: 62px;

    margin: -31px auto -31px;

    border: 1px solid rgba(134, 86, 211, 0.42);
    border-radius: 15px;

    background:
        linear-gradient(
            90deg,
            rgba(5, 16, 32, 0.90),
            rgba(11, 8, 28, 0.94) 50%,
            rgba(29, 6, 34, 0.90)
        );

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.34),
        0 0 22px rgba(32, 213, 255, 0.06),
        0 0 28px rgba(255, 49, 184, 0.06);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    overflow: hidden;
}

.transition-nav::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(31, 224, 255, 0.18),
            transparent 28%,
            transparent 72%,
            rgba(255, 46, 181, 0.18)
        );
}

.transition-nav a {
    position: relative;

    display: grid;
    place-items: center;

    min-width: 150px;
    min-height: 60px;

    padding: 0 26px;

    color: #c9c3db;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;

    text-decoration: none;

    transition:
        color 160ms ease,
        text-shadow 160ms ease,
        background 160ms ease;
}

.transition-nav a + a::before {
    content: "";

    position: absolute;
    left: 0;
    top: 18px;

    width: 1px;
    height: 24px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(190, 183, 221, 0.30),
            transparent
        );
}

.transition-nav a:hover,
.transition-nav a:focus-visible {
    color: #ffffff;

    background:
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.035),
            transparent
        );

    text-shadow:
        0 0 9px rgba(30, 224, 255, 0.52),
        0 0 14px rgba(255, 50, 187, 0.35);

    outline: none;
}


/* =========================
 *  CONTENT
 *  ========================= */

#home,
#status,
#news,
#about {
    scroll-margin-top: 28px;
}

/* =========================
 *  CONTENT
 *  ========================= */

.page-content {
    min-height: 100vh;

    background:
    radial-gradient(
        circle at 80% 0%,
        rgba(176, 0, 132, 0.13),
                    transparent 35%
    ),
    radial-gradient(
        circle at 10% 10%,
        rgba(0, 189, 255, 0.09),
                    transparent 35%
    ),
    linear-gradient(
        to bottom,
        #050716,
        #040511 70%
    );
}

/* =========================
 *  WELCOME
 *  ========================= */

.welcome {
    width: min(850px, calc(100% - 40px));
    margin: 0 auto;

    padding-top: 86px;
    padding-bottom: 55px;

    text-align: center;
}


/* WELCOME TO + Linien */

.welcome-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}


.welcome-kicker span {
    flex: 0 0 120px;
    width: 120px;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #ff2bbd
    );

    box-shadow:
    0 0 8px rgba(255, 43, 189, 0.7);
}

.welcome-kicker span:last-child {
    background: linear-gradient(
        90deg,
        #ff2bbd,
        transparent
    );
}

.welcome-kicker p {
    margin: 0;

    color: #18e6ff;

    font-size: 18px;
    font-weight: 600;

    letter-spacing: 6px;

    text-shadow:
    0 0 8px rgba(24, 230, 255, 0.65);
}


/* DADDELN */

.welcome h1 {
    margin: 14px 0 12px;

    color: #ffffff;

    font-size: clamp(58px, 5.5vw, 84px);
    font-weight: 400;

    letter-spacing: 13px;

    text-shadow:
    0 0 5px #ffffff,
    0 0 10px #ff47da,
    0 0 22px rgba(255, 32, 190, 0.8),
    0 0 40px rgba(255, 32, 190, 0.35);
}


/* Stern + Linien */

.welcome-divider {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;
}

.welcome-divider span {
    width: 135px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #c97cff
    );
}

.welcome-divider span:last-child {
    background: linear-gradient(
        90deg,
        #c97cff,
        transparent
    );
}

.welcome-divider div {
    color: #ffffff;

    font-size: 25px;

    text-shadow:
    0 0 5px #ffffff,
    0 0 10px #ff35d3,
    0 0 18px #ff35d3;
}


/* PRIVATE GAMING UNIVERSE */

.welcome-subtitle {
    margin: 16px 0 0;

    color: #b9a9dc;

    font-size: 14px;

    letter-spacing: 7px;
}

/* =========================
 *  SERVER STATUS
 *  ========================= */

.server-status {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;

    padding-bottom: 70px;
}


/* Überschrift */

.section-title {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 26px;

    margin-top: 18px;
    margin-bottom: 30px;
}

.section-title h2 {
    margin: 0;

    color: #ffffff;

    font-size: 18px;
    font-weight: 600;

    letter-spacing: 5px;
}

.section-line {
    height: 1px;
}

.section-line.cyan {
    background:
    linear-gradient(
        90deg,
        transparent,
        #18dfff
    );

    box-shadow:
    0 0 8px rgba(24, 223, 255, 0.6);
}

.section-line.pink {
    background:
    linear-gradient(
        90deg,
        #ff2cab,
        transparent
    );

    box-shadow:
    0 0 8px rgba(255, 44, 171, 0.6);
}


/* Karten-Layout */

.server-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 26px;
}


/* Karte */

.server-card {
    position: relative;

    min-height: 235px;

    padding: 32px 34px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;

    background:
    linear-gradient(
        135deg,
        rgba(8, 19, 39, 0.86),
                    rgba(11, 8, 30, 0.88)
    );

    overflow: hidden;
}


/* Neon-Rand PALWORLD */

.palworld-card {
    border-color: rgba(31, 220, 255, 0.75);

    box-shadow:
    inset 0 0 18px rgba(0, 187, 255, 0.04),
    0 0 18px rgba(0, 187, 255, 0.08);
}

.palworld-card::after {
    content: "";

    position: absolute;
    inset: -1px;

    border-radius: inherit;

    pointer-events: none;

    background:
    linear-gradient(
        135deg,
        transparent 50%,
        rgba(255, 32, 190, 0.7)
    );

    mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

    mask-composite: exclude;

    padding: 1px;
}


/* Neon-Rand TeamSpeak */

.teamspeak-card {
    border-color: rgba(255, 45, 175, 0.65);

    box-shadow:
    inset 0 0 18px rgba(255, 20, 180, 0.03),
    0 0 18px rgba(255, 20, 180, 0.07);
}


/* Kopf */

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 20px;
}

.server-type {
    margin: 0 0 7px;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1.5px;
}

.card-header h3 {
    margin: 0;

    color: #ffffff;

    font-size: 31px;
    font-weight: 600;

    letter-spacing: 0.5px;
}


/* Online */

.online-status {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #00e99a;

    font-size: 15px;
    font-weight: 600;

    white-space: nowrap;
}

.online-dot {
    width: 15px;
    height: 15px;

    border-radius: 50%;

    background: #00efa0;

    box-shadow:
    0 0 9px rgba(0, 239, 160, 0.65);
}


/* Linie innerhalb der Karte */

.card-divider {
    height: 1px;

    margin: 27px 0 24px;

    background:
    linear-gradient(
        90deg,
        rgba(170, 190, 220, 0.25),
                    rgba(170, 190, 220, 0.12)
    );
}


/* Details */

.card-details {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;

    gap: 28px;

    align-items: center;
}

.detail-item {
    display: flex;
    align-items: center;

    gap: 19px;
}

.detail-item strong {
    display: block;

    margin-top: 6px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 500;
}

.detail-label {
    margin: 0;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 1px;
}

.detail-separator {
    width: 1px;
    height: 52px;

    background:
    rgba(170, 180, 210, 0.28);
}


/* Icons */

.detail-icon {
    flex: 0 0 auto;

    width: 54px;
    height: 54px;

    fill: none;

    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cyan-icon {
    color: #1edfff;

    filter:
    drop-shadow(0 0 5px rgba(30, 223, 255, 0.55));
}

.pink-icon {
    color: #ff38b8;

    filter:
    drop-shadow(0 0 5px rgba(255, 56, 184, 0.55));
}

.purple-icon {
    color: #c85cff;

    filter:
    drop-shadow(0 0 5px rgba(200, 92, 255, 0.45));
}


/* Farben */

.cyan-text {
    color: #1edfff;
}

.pink-text {
    color: #ff38b8;
}

.purple-text {
    color: #c965ff;
}


/* =========================
 *  RESPONSIVE
 *  ========================= */

@media (max-width: 850px) {

    .server-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 560px) {

    .server-status {
        width: min(100% - 28px, 1160px);
    }

    .server-card {
        padding: 24px 20px;
    }

    .card-header h3 {
        font-size: 24px;
    }

    .card-details {
        gap: 16px;
    }

    .detail-item {
        gap: 12px;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
    }

    .section-title {
        gap: 13px;
    }

    .section-title h2 {
        font-size: 14px;
        letter-spacing: 3px;
    }

}


/* =========================
 *  NEWS
 *  ========================= */

.news {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;

    padding-bottom: 70px;
}

.news-title {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 22px;

    margin-bottom: 24px;
}

.news-title span {
    height: 1px;
}

.news-title span:first-child {
    background:
        linear-gradient(
            90deg,
            transparent,
            #1ddfff
        );

    box-shadow:
        0 0 8px rgba(29, 223, 255, 0.4);
}

.news-title span:last-child {
    background:
        linear-gradient(
            90deg,
            #ff38b8,
            transparent
        );

    box-shadow:
        0 0 8px rgba(255, 56, 184, 0.4);
}

.news-title h2 {
    margin: 0;

    color: #ffffff;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 5px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 26px;
}

.news-card {
    position: relative;

    min-height: 240px;

    padding: 28px 30px;

    border: 1px solid rgba(106, 113, 174, 0.34);
    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(7, 18, 37, 0.90),
            rgba(12, 8, 29, 0.94) 55%,
            rgba(27, 6, 34, 0.88)
        );

    box-shadow:
        inset 0 0 18px rgba(0, 187, 255, 0.025),
        0 0 18px rgba(255, 20, 180, 0.04);
}

.news-card::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    border-radius: 0 0 15px 15px;

    background:
        linear-gradient(
            90deg,
            rgba(29, 223, 255, 0.78),
            rgba(133, 76, 255, 0.38),
            rgba(255, 56, 184, 0.78)
        );
}

.news-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}

.news-tag {
    color: #1edfff;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}

.news-date {
    color: #777b8e;

    font-size: 12px;
    letter-spacing: 1.5px;
}

.news-card h3 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 25px;
    font-weight: 600;
}

.news-card p {
    margin: 0;

    color: #c9cad7;

    font-size: 16px;
    line-height: 1.65;
}

.news-source {
    display: flex;
    align-items: baseline;

    gap: 12px;

    margin-top: 24px;
    padding-top: 18px;

    border-top: 1px solid rgba(171, 178, 210, 0.15);
}

.news-source span {
    color: #8f91a6;

    font-size: 11px;
    letter-spacing: 2px;
}

.news-source strong {
    color: #d8d9e4;

    font-size: 13px;
    font-weight: 500;
}


/* =========================
 *  ABOUT
 *  ========================= */

/* =========================
 *  ABOUT
 *  ========================= */

.about {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding-bottom: 70px;
}

.about-title {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 22px;

    margin-bottom: 22px;
}

.about-title span {
    height: 1px;
}

.about-title span:first-child {
    background:
    linear-gradient(
        90deg,
        transparent,
        #1ddfff
    );
}

.about-title span:last-child {
    background:
    linear-gradient(
        90deg,
        #ff38b8,
        transparent
    );
}

.about-title h2 {
    margin: 0;

    color: #ff4fbd;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 5px;
}


/* ABOUT CARD */

.about-card {
    display: grid;
    grid-template-columns: 1.35fr 1px 1fr;
    align-items: center;

    min-height: 180px;

    padding: 28px 32px;

    border: 1px solid rgba(61, 211, 255, 0.7);
    border-radius: 15px;

    background:
    linear-gradient(
        110deg,
        rgba(7, 19, 39, 0.9),
                    rgba(13, 8, 29, 0.92) 55%,
                    rgba(25, 5, 31, 0.9)
    );

    box-shadow:
    0 0 18px rgba(16, 184, 255, 0.06),
    inset 0 0 18px rgba(255, 44, 185, 0.025);
}


/* LEFT SIDE */

.about-left {
    display: flex;
    align-items: center;
    gap: 34px;

    padding-right: 34px;
}

.about-icon-wrap {
    display: grid;
    place-items: center;

    width: 145px;
    height: 115px;

    border-radius: 50%;

    background:
    radial-gradient(
        circle,
        rgba(209, 44, 255, 0.12),
                    transparent 66%
    );
}

.about-gamepad {
    width: 115px;
    height: 90px;

    fill: none;
    color: #26e1ff;

    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
    drop-shadow(0 0 5px rgba(34, 225, 255, 0.7))
    drop-shadow(0 0 10px rgba(255, 48, 190, 0.25));
}

.about-copy h3 {
    margin: 0 0 13px;

    color: #ffffff;

    font-size: 24px;
    font-weight: 600;
}

.about-copy p {
    margin: 0;

    color: #dfdfeb;

    font-size: 16px;
    line-height: 1.7;
}


/* MIDDLE LINE */

.about-separator {
    width: 1px;
    height: 105px;

    background:
    linear-gradient(
        to bottom,
        transparent,
        rgba(190, 190, 220, 0.34),
                    transparent
    );
}


/* RIGHT SIDE */

.about-right {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;

    padding-left: 38px;
}

.about-slogan p {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 600;

    letter-spacing: 3px;
}

.about-slogan p:last-child {
    margin-bottom: 0;
}

.cyan-slogan {
    color: #22dfff !important;
}

.pink-slogan {
    color: #ff3ab9 !important;
}

.bolt-wrap {
    display: grid;
    place-items: center;

    width: 110px;
    height: 110px;

    border-radius: 50%;

    background:
    radial-gradient(
        circle,
        rgba(255, 37, 183, 0.14),
                    transparent 68%
    );
}

.about-bolt {
    width: 58px;
    height: 92px;

    fill: none;

    stroke: #ff39bc;
    stroke-width: 3;
    stroke-linejoin: round;

    filter:
    drop-shadow(0 0 5px rgba(255, 57, 188, 0.8))
    drop-shadow(0 0 12px rgba(255, 57, 188, 0.4));
}


/* MOBILE */

@media (max-width: 850px) {

    .about-card {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-separator {
        width: 100%;
        height: 1px;
    }

    .about-left,
    .about-right {
        padding: 0;
    }

}

@media (max-width: 560px) {

    .about {
        width: min(100% - 28px, 1180px);
    }

    .about-card {
        padding: 24px 20px;
    }

    .about-left {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .about-right {
        flex-direction: column;
        text-align: center;
    }

    .about-copy h3 {
        font-size: 21px;
    }

    .about-copy p {
        font-size: 15px;
    }

}
/* =========================
 *  FOOTER
 *  ========================= */

.site-footer {
    width: 100%;

    margin-top: 10px;

    border-top: 1px solid rgba(119, 67, 180, 0.45);

    background:
    linear-gradient(
        90deg,
        rgba(5, 12, 25, 0.95),
                    rgba(8, 7, 21, 0.98),
                    rgba(17, 5, 24, 0.95)
    );
}

.footer-inner {
    width: min(1180px, calc(100% - 48px));
    min-height: 105px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 30px;
}


/* BRAND */

.footer-brand {
    display: flex;
    align-items: center;

    gap: 11px;
}

.footer-brand strong {
    color: #20dfff;

    font-size: 15px;
    letter-spacing: 1px;
}

.footer-slashes {
    color: #666a7c;

    font-size: 15px;
}

.footer-online {
    color: #777b8e;

    font-size: 13px;
}


/* PLANET */

.footer-planet {
    position: relative;

    width: 46px;
    height: 30px;
}

.footer-planet::before {
    content: "";

    position: absolute;

    width: 23px;
    height: 23px;

    left: 10px;
    top: 3px;

    border: 2px solid #d858ff;
    border-radius: 50%;

    box-shadow:
    0 0 8px rgba(216, 88, 255, 0.55);
}

.footer-planet::after {
    content: "";

    position: absolute;

    width: 43px;
    height: 12px;

    left: 1px;
    top: 9px;

    border: 2px solid #31dfff;
    border-radius: 50%;

    transform: rotate(-15deg);

    box-shadow:
    0 0 7px rgba(49, 223, 255, 0.4);
}


/* CENTER ICONS */

.footer-icons {
    display: flex;
    align-items: center;

    gap: 30px;
}

.footer-icons svg {
    width: 36px;
    height: 36px;

    fill: none;

    stroke: #c960ff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
    drop-shadow(0 0 5px rgba(201, 96, 255, 0.4));
}

.footer-icons svg:nth-child(2) {
    stroke: #25dfff;
}


/* COPYRIGHT */

.footer-copy {
    justify-self: end;

    color: #74788b;

    font-size: 13px;
}


/* FOOTER MOBILE */

@media (max-width: 750px) {

    .footer-inner {
        grid-template-columns: 1fr;

        justify-items: center;

        padding: 28px 0;

        gap: 22px;
    }

    .footer-copy {
        justify-self: center;
    }

}




/* Navigation / News responsive */
@media (max-width: 850px) {
    .transition-nav {
        width: min(700px, calc(100% - 36px));
    }

    .transition-nav a {
        min-width: 0;
        flex: 1 1 25%;
        padding: 0 14px;

        font-size: 13px;
        letter-spacing: 2px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .news {
        width: min(100% - 36px, 980px);
    }
}

@media (max-width: 560px) {
    .transition-nav {
        width: calc(100% - 24px);
        min-height: 54px;

        margin-top: -27px;
        margin-bottom: -27px;

        border-radius: 13px;
    }

    .transition-nav a {
        min-height: 52px;
        padding: 0 8px;

        font-size: 11px;
        letter-spacing: 1.3px;
    }

    .transition-nav a + a::before {
        top: 15px;
        height: 22px;
    }

    .welcome {
        padding-top: 72px;
    }

    .news {
        width: min(100% - 24px, 520px);
    }

    .news-title {
        gap: 12px;
    }

    .news-title h2 {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .news-card {
        min-height: 0;
        padding: 24px 20px;

        border-radius: 13px;
    }

    .news-card h3 {
        font-size: 22px;
    }

    .news-card p {
        font-size: 15px;
    }
}

/* =========================
 *  MOBILE HERO – vorerst geparkt
 *  ========================= */
@media (max-width: 560px) {
    .hero {
        aspect-ratio: 1448 / 1086;
        background-image: url("img/hero-mobile.webp");
        background-size: 100% 100%;
        background-position: center top;
    }
}

/* Live-Status: Offline */
.online-status.is-offline {
    color: #ff405f;
}

.online-status.is-offline .online-dot {
    background: #ff405f;
    box-shadow: 0 0 9px rgba(255, 64, 95, 0.75);
}


/* =========================================================
 *  PORTAL LAYOUT – aktueller Projektstand
 *  ========================================================= */

.transition-nav {
    width: 100%;
    min-height: 64px;
    margin: 0;

    border-left: 0;
    border-right: 0;
    border-radius: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 18, 35, 0.96),
            rgba(10, 8, 27, 0.97) 50%,
            rgba(31, 5, 35, 0.96)
        );

    box-shadow:
        0 -8px 24px rgba(18, 214, 255, 0.08),
        0 8px 26px rgba(255, 43, 183, 0.07);
}

.transition-nav::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #1edfff,
            rgba(149, 80, 255, 0.65) 50%,
            #ff38b8
        );

    box-shadow:
        0 0 10px rgba(198, 74, 255, 0.45);
}

.transition-nav a {
    min-width: 190px;
    min-height: 63px;
}

.transition-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            #1edfff,
            #c95cff,
            #ff38b8
        );

    box-shadow:
        0 0 8px rgba(31, 224, 255, 0.75),
        0 0 12px rgba(255, 56, 184, 0.55);

    transition: width 180ms ease;
}

.transition-nav a:hover,
.transition-nav a:focus-visible {
    color: #ffffff;
    background:
        radial-gradient(
            circle at center,
            rgba(91, 86, 255, 0.14),
            transparent 70%
        );
    text-shadow:
        0 0 7px rgba(30, 223, 255, 0.9),
        0 0 14px rgba(255, 56, 184, 0.65);
}

.transition-nav a:hover::after,
.transition-nav a:focus-visible::after {
    width: 58%;
}

.welcome {
    padding-top: 58px;
    padding-bottom: 42px;
}

.portal-layout {
    display: grid;
    grid-template-columns:
        minmax(235px, 285px)
        minmax(0, 1fr)
        minmax(235px, 285px);

    align-items: start;

    gap: 24px;

    width: min(1840px, calc(100% - 48px));
    margin: 0 auto;
}

.portal-main {
    min-width: 0;
}

.status-rail {
    position: sticky;
    top: 24px;

    align-self: start;
}

.compact-server-card {
    min-height: 0;
    padding: 24px 22px;
}

.compact-server-card h3 {
    margin: 9px 0 0;

    color: #ffffff;

    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.compact-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}

.compact-card-head .server-type {
    margin: 0;
}

.compact-card-head .online-status {
    font-size: 12px;
}

.compact-card-head .online-dot {
    width: 11px;
    height: 11px;
}

.compact-server-card .card-divider {
    margin: 20px 0 8px;
}

.compact-stat {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(170, 180, 210, 0.14);
}

.compact-stat:last-child {
    border-bottom: 0;
    padding-bottom: 4px;
}

.compact-stat .detail-icon {
    width: 43px;
    height: 43px;
}

.compact-stat strong {
    display: block;

    margin-top: 4px;

    color: #ffffff;

    font-size: 19px;
    font-weight: 500;
}

.portal-main .news,
.portal-main .about {
    width: 100%;
}

.news {
    padding-bottom: 62px;
}

.news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.news-card {
    min-height: 205px;
    padding: 22px 23px;
}

.news-card-top {
    margin-bottom: 15px;
}

.news-card h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

.news-card p {
    font-size: 14px;
    line-height: 1.55;
}

.news-source {
    margin-top: 18px;
    padding-top: 14px;
}

.archive-link-wrap {
    display: flex;
    justify-content: center;

    margin-top: 26px;
}

.archive-link {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    padding: 13px 22px;

    border: 1px solid rgba(198, 92, 255, 0.45);
    border-radius: 9px;

    color: #d9d8e5;
    background: rgba(12, 8, 29, 0.72);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;

    transition:
        border-color 160ms ease,
        color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.archive-link:hover,
.archive-link:focus-visible {
    color: #ffffff;
    border-color: #1edfff;

    box-shadow:
        0 0 12px rgba(30, 223, 255, 0.22),
        0 0 18px rgba(255, 56, 184, 0.15);

    transform: translateY(-1px);
    outline: none;
}

.counter-strike {
    width: 100%;
    padding-bottom: 66px;
}

.cs-title {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 20px;

    margin-bottom: 24px;

    text-align: center;
}

.cs-title > span {
    height: 1px;
}

.cs-title > span:first-child {
    background: linear-gradient(90deg, transparent, #1edfff);
}

.cs-title > span:last-child {
    background: linear-gradient(90deg, #ff38b8, transparent);
}

.cs-title p {
    margin: 0 0 3px;

    color: #ff38b8;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
}

.cs-title h2 {
    margin: 0;

    color: #ffffff;

    font-size: 22px;
    font-weight: 600;
    letter-spacing: 5px;
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.cs-panel {
    padding: 22px 23px;

    border: 1px solid rgba(91, 107, 166, 0.38);
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(7, 18, 37, 0.92),
            rgba(15, 8, 31, 0.94)
        );
}

.cs-ranking {
    grid-column: 1 / -1;
}

.cs-panel-head {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 15px;
}

.cs-panel-head span {
    font-size: 18px;
}

.cs-panel-head h3 {
    margin: 0;

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}

.cs-placeholder-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;

    gap: 20px;

    padding: 13px 0;

    border-top: 1px solid rgba(170, 180, 210, 0.13);
}

.cs-placeholder-row strong {
    color: #dfe0eb;
    font-size: 14px;
    font-weight: 500;
}

.cs-placeholder-row span {
    color: #85899d;
    font-size: 12px;
    text-align: right;
}

.cs-ranking ol {
    margin: 0;
    padding: 0;

    list-style: none;
}

.cs-ranking li {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;

    padding: 11px 0;

    border-top: 1px solid rgba(170, 180, 210, 0.13);
}

.cs-ranking li span {
    color: #c965ff;

    font-size: 13px;
    font-weight: 600;
}

.cs-ranking li strong {
    color: #dfe0eb;

    font-size: 14px;
    font-weight: 500;
}

/* Desktop layout collapses before the center column becomes cramped. */
@media (max-width: 1350px) {
    .portal-layout {
        grid-template-columns: 1fr 1fr;
        width: min(1100px, calc(100% - 36px));
    }

    .status-rail {
        position: static;
    }

    .status-rail-left {
        grid-column: 1;
        grid-row: 1;
    }

    .status-rail-right {
        grid-column: 2;
        grid-row: 1;
    }

    .portal-main {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .compact-server-card {
        height: 100%;
    }
}

@media (max-width: 700px) {
    .portal-layout {
        grid-template-columns: 1fr;
        width: min(100% - 24px, 520px);
    }

    .status-rail-left,
    .status-rail-right,
    .portal-main {
        grid-column: 1;
    }

    .status-rail-left {
        grid-row: 1;
    }

    .status-rail-right {
        grid-row: 2;
    }

    .portal-main {
        grid-row: 3;
    }

    .news-grid,
    .cs-grid {
        grid-template-columns: 1fr;
    }

    .cs-ranking {
        grid-column: auto;
    }
}



/* News archive placeholder page */
.archive-page {
    min-height: 100vh;
    padding: 60px 24px;
    background:
        radial-gradient(circle at 20% 0%, rgba(30, 223, 255, 0.08), transparent 32%),
        radial-gradient(circle at 80% 0%, rgba(255, 56, 184, 0.10), transparent 32%),
        #050716;
}

.archive-back {
    display: block;
    width: min(1050px, 100%);
    margin: 0 auto 22px;

    color: #1edfff;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
}

.archive-shell {
    width: min(1050px, 100%);
    margin: 0 auto;
    padding: 42px;

    border: 1px solid rgba(198, 92, 255, 0.42);
    border-radius: 15px;

    background: rgba(10, 8, 28, 0.88);
}

.archive-kicker {
    margin: 0 0 8px;
    letter-spacing: 4px;
}

.archive-shell h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 500;
    letter-spacing: 5px;
}

.archive-shell p:last-child {
    max-width: 720px;
    color: #c9cad7;
    font-size: 17px;
    line-height: 1.65;
}



/* =========================================================
 *  DETAIL-RUNDE: STATUS-ÜBERSCHRIFTEN / FOOTER
 *  ========================================================= */

#status {
    scroll-margin-top: 24px;
}

.portal-layout {
    padding-top: 4px;
}

.rail-title,
.news-title {
    min-height: 40px;
    margin-bottom: 20px;
}

.rail-title {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 10px;
}

.rail-title span {
    height: 1px;
}

.rail-title h2 {
    margin: 0;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;

    white-space: nowrap;
}

.rail-title-cyan span {
    background:
        linear-gradient(
            90deg,
            transparent,
            #1edfff
        );

    box-shadow:
        0 0 8px rgba(30, 223, 255, 0.48);
}

.rail-title-cyan span:last-child {
    background:
        linear-gradient(
            90deg,
            #1edfff,
            transparent
        );
}

.rail-title-pink span {
    background:
        linear-gradient(
            90deg,
            transparent,
            #ff38b8
        );

    box-shadow:
        0 0 8px rgba(255, 56, 184, 0.48);
}

.rail-title-pink span:last-child {
    background:
        linear-gradient(
            90deg,
            #ff38b8,
            transparent
        );
}

/* Die mittleren Linien länger und optisch kräftiger. */
.news-title {
    gap: 12px;
}

.news-title span:first-child {
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(29, 223, 255, 0.28) 18%,
            #1ddfff 100%
        );
}

.news-title span:last-child {
    background:
        linear-gradient(
            90deg,
            #ff38b8 0%,
            rgba(255, 56, 184, 0.28) 82%,
            transparent 100%
        );
}

.compact-card-head {
    justify-content: flex-end;
    min-height: 18px;
}

.compact-server-card h3 {
    margin-top: 4px;
}


/* =========================
 *  FUNCTIONAL FOOTER
 *  ========================= */

.site-footer {
    margin-top: 10px;
}

.footer-utility {
    width: min(1500px, calc(100% - 56px));
    min-height: 150px;

    margin: 0 auto;
    padding: 28px 0 22px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
        "brand actions copy"
        "tagline tagline tagline";
    align-items: center;

    gap: 22px 36px;
}

.footer-brand {
    grid-area: brand;
}

.footer-brand > div:last-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-actions {
    grid-area: actions;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;
}

.footer-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 42px;
    padding: 8px 13px;

    border: 1px solid rgba(118, 93, 177, 0.34);
    border-radius: 9px;

    color: #b9b9cb;
    background: rgba(10, 8, 27, 0.68);

    font: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;

    text-decoration: none;
    cursor: pointer;

    transition:
        color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease,
        background 160ms ease;
}

.footer-action svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-action:hover,
.footer-action:focus-visible {
    color: #ffffff;

    border-color: rgba(30, 223, 255, 0.70);

    background:
        linear-gradient(
            90deg,
            rgba(30, 223, 255, 0.08),
            rgba(255, 56, 184, 0.08)
        );

    box-shadow:
        0 0 12px rgba(30, 223, 255, 0.14),
        0 0 16px rgba(255, 56, 184, 0.10);

    transform: translateY(-1px);
    outline: none;
}

.footer-copy {
    grid-area: copy;
    justify-self: end;
}

.footer-tagline {
    grid-area: tagline;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 16px 24px;

    padding-top: 15px;

    border-top: 1px solid rgba(145, 105, 196, 0.22);

    color: #d8d8e4;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.4px;
}


/* =========================
 *  SERVER INFO MODAL
 *  ========================= */

.server-modal[hidden] {
    display: none;
}

.server-modal {
    position: fixed;
    z-index: 1000;
    inset: 0;

    display: grid;
    place-items: center;

    padding: 24px;
}

.server-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(1, 2, 10, 0.82);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.server-modal-dialog {
    position: relative;
    z-index: 1;

    width: min(780px, 100%);
    padding: 32px;

    border: 1px solid rgba(146, 87, 218, 0.55);
    border-radius: 16px;

    background:
        radial-gradient(circle at 10% 0%, rgba(30, 223, 255, 0.08), transparent 36%),
        radial-gradient(circle at 90% 0%, rgba(255, 56, 184, 0.10), transparent 36%),
        #09091b;

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.55),
        0 0 24px rgba(198, 92, 255, 0.08);
}

.server-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;

    border: 0;

    color: #9898ab;
    background: transparent;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;
}

.server-modal-close:hover {
    color: #ffffff;
}

.server-modal-kicker {
    margin: 0 0 6px;

    color: #ff38b8;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

.server-modal-dialog h2 {
    margin: 0 0 24px;

    font-size: 30px;
    font-weight: 500;
    letter-spacing: 4px;
}

.server-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;
}

.server-modal-card {
    padding: 20px;

    border: 1px solid rgba(124, 135, 188, 0.30);
    border-radius: 12px;

    background: rgba(10, 13, 31, 0.72);
}

.server-modal-card > span {
    display: block;

    margin-bottom: 7px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}

.server-modal-card > strong {
    display: block;

    margin-bottom: 14px;

    color: #ffffff;

    font-size: 24px;
    font-weight: 500;
}

.server-modal-card p {
    margin: 7px 0;

    color: #d7d7e3;

    font-size: 15px;
}

.server-modal-card small {
    display: block;

    margin-top: 17px;
    padding-top: 14px;

    border-top: 1px solid rgba(166, 174, 205, 0.15);

    color: #838799;

    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .footer-utility {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "actions"
            "tagline"
            "copy";

        justify-items: center;
    }

    .footer-copy {
        justify-self: center;
    }
}

@media (max-width: 560px) {
    .server-modal-grid {
        grid-template-columns: 1fr;
    }

    .rail-title h2 {
        font-size: 11px;
        letter-spacing: 2px;
    }
}



/* =========================================================
 *  COLOR FLOW UPDATE
 *  Cyan → Violett → Magenta
 *  ========================================================= */

:root {
    --daddeln-cyan: #1edfff;
    --daddeln-violet: #b85cff;
    --daddeln-magenta: #ff38b8;
}


/* -------------------------
 * Section headings
 * ------------------------- */

.rail-title h2,
.news-title h2 {
    font-weight: 600;
}

/* GAME SERVER: cyan text */
.rail-title-cyan h2 {
    color: var(--daddeln-cyan);
    text-shadow:
        0 0 8px rgba(30, 223, 255, 0.30);
}

/*
 * Left outside line still fades in from the outer edge.
 * Right line stays solid and runs toward the center.
 */
.rail-title-cyan span:first-child {
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(30, 223, 255, 0.35) 28%,
            var(--daddeln-cyan) 100%
        );

    box-shadow:
        0 0 8px rgba(30, 223, 255, 0.42);
}

.rail-title-cyan span:last-child {
    background: var(--daddeln-cyan);

    box-shadow:
        0 0 8px rgba(30, 223, 255, 0.42);
}


/* GAMING NEWS: violet text */
.news-title h2 {
    color: var(--daddeln-violet);

    text-shadow:
        0 0 8px rgba(184, 92, 255, 0.30);
}

/*
 * Left of GAMING NEWS:
 * solid gradient from cyan at the far left to violet at the title.
 */
.news-title span:first-child {
    background:
        linear-gradient(
            90deg,
            var(--daddeln-cyan) 0%,
            #6f9dff 45%,
            var(--daddeln-violet) 100%
        );

    box-shadow:
        0 0 8px rgba(108, 130, 255, 0.36);
}

/*
 * Right of GAMING NEWS:
 * violet at the title to magenta toward the right.
 */
.news-title span:last-child {
    background:
        linear-gradient(
            90deg,
            var(--daddeln-violet) 0%,
            #df4ed9 48%,
            var(--daddeln-magenta) 100%
        );

    box-shadow:
        0 0 8px rgba(220, 72, 213, 0.36);
}


/* VOICE SERVER: magenta text */
.rail-title-pink h2 {
    color: var(--daddeln-magenta);

    text-shadow:
        0 0 8px rgba(255, 56, 184, 0.30);
}

/*
 * Left line stays solid from the center toward VOICE SERVER.
 * Right outside line fades out toward the page edge.
 */
.rail-title-pink span:first-child {
    background: var(--daddeln-magenta);

    box-shadow:
        0 0 8px rgba(255, 56, 184, 0.42);
}

.rail-title-pink span:last-child {
    background:
        linear-gradient(
            90deg,
            var(--daddeln-magenta) 0%,
            rgba(255, 56, 184, 0.35) 72%,
            transparent 100%
        );

    box-shadow:
        0 0 8px rgba(255, 56, 184, 0.42);
}


/* -------------------------
 * Card color families
 * ------------------------- */

/* Left column — cyan */
.palworld-card {
    border-color: rgba(30, 223, 255, 0.78);

    background:
        linear-gradient(
            145deg,
            rgba(5, 24, 42, 0.92),
            rgba(8, 17, 34, 0.94)
        );

    box-shadow:
        inset 0 0 22px rgba(30, 223, 255, 0.035),
        0 0 18px rgba(30, 223, 255, 0.075);
}

/* Remove old pink diagonal accent from the Palworld card. */
.palworld-card::after {
    background:
        linear-gradient(
            135deg,
            transparent 48%,
            rgba(30, 223, 255, 0.46)
        );
}


/* Middle column — violet */
.news-card {
    border-color: rgba(184, 92, 255, 0.34);

    background:
        linear-gradient(
            145deg,
            rgba(13, 15, 38, 0.94),
            rgba(22, 10, 39, 0.94)
        );

    box-shadow:
        inset 0 0 18px rgba(184, 92, 255, 0.025),
        0 0 18px rgba(184, 92, 255, 0.045);
}

/* Replace cyan→magenta bottom accent by a violet-focused accent. */
.news-card::after {
    background:
        linear-gradient(
            90deg,
            rgba(108, 130, 255, 0.78),
            var(--daddeln-violet) 50%,
            rgba(223, 78, 217, 0.78)
        );
}

.news-tag {
    color: var(--daddeln-violet);
}


/* Right column — magenta */
.teamspeak-card {
    border-color: rgba(255, 56, 184, 0.72);

    background:
        linear-gradient(
            145deg,
            rgba(22, 10, 34, 0.94),
            rgba(29, 7, 31, 0.94)
        );

    box-shadow:
        inset 0 0 22px rgba(255, 56, 184, 0.035),
        0 0 18px rgba(255, 56, 184, 0.075);
}


/* -------------------------
 * Continuous color bridge
 * between the three columns
 * ------------------------- */

.portal-layout {
    position: relative;
}

.portal-layout::before {
    content: "";

    position: absolute;
    z-index: 0;

    left: 0;
    right: 0;
    top: 23px;

    height: 1px;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            var(--daddeln-cyan) 0%,
            var(--daddeln-cyan) 14%,
            #748bff 34%,
            var(--daddeln-violet) 50%,
            #dc4ed9 68%,
            var(--daddeln-magenta) 86%,
            var(--daddeln-magenta) 100%
        );

    opacity: 0.18;

    box-shadow:
        0 0 10px rgba(140, 80, 255, 0.18);
}

/* Ensure titles/cards sit above the subtle bridge line. */
.status-rail,
.portal-main {
    position: relative;
    z-index: 1;
}


/* -------------------------
 * Matching middle-column accents
 * ------------------------- */

.archive-link {
    border-color: rgba(184, 92, 255, 0.52);

    color: #ddd8ed;

    background:
        linear-gradient(
            90deg,
            rgba(83, 78, 193, 0.08),
            rgba(184, 92, 255, 0.10),
            rgba(222, 73, 211, 0.08)
        );
}

.archive-link:hover,
.archive-link:focus-visible {
    border-color: var(--daddeln-violet);

    box-shadow:
        0 0 13px rgba(184, 92, 255, 0.22),
        0 0 18px rgba(255, 56, 184, 0.10);
}


/* Keep the 3-column color idea visible when the desktop layout collapses. */
@media (max-width: 1350px) {
    .portal-layout::before {
        display: none;
    }
}



/* =========================================================
 *  V4 — SHARED COLOR BAND / CARD FLOW
 *  Cyan → Violett → Magenta as one visual system
 *  ========================================================= */

/*
 * Portal grid now has a dedicated first row for the shared title band.
 * The three content columns begin below it.
 */
.portal-layout {
    grid-template-rows: auto 1fr;
}

.portal-heading-band {
    grid-column: 1 / -1;
    grid-row: 1;

    display: grid;
    grid-template-columns:
        minmax(235px, 285px)
        minmax(0, 1fr)
        minmax(235px, 285px);

    align-items: center;

    gap: 24px;

    min-height: 44px;
    margin-bottom: 14px;
}

.status-rail-left,
.portal-main,
.status-rail-right {
    grid-row: 2;
}


/* -----------------------------------------
 * Shared heading row
 * ----------------------------------------- */

.portal-heading {
    display: grid;
    align-items: center;

    min-width: 0;
}

.portal-heading h2 {
    margin: 0;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;

    white-space: nowrap;
}

.portal-heading span {
    display: block;
    height: 1px;
}


/* GAME SERVER
 * outer left fades in
 * inner right remains solid cyan
 */
.portal-heading-game {
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
}

.portal-heading-game h2 {
    color: var(--daddeln-cyan);

    text-shadow:
        0 0 8px rgba(30, 223, 255, 0.32);
}

.portal-heading-game .outer-fade {
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(30, 223, 255, 0.38) 35%,
            var(--daddeln-cyan) 100%
        );
}

.portal-heading-game .inner-line {
    background: var(--daddeln-cyan);

    box-shadow:
        0 0 7px rgba(30, 223, 255, 0.34);
}


/* GAMING NEWS
 * left is continuously cyan → violet
 * right is continuously violet → magenta
 * no fading toward the center
 */
.portal-heading-news {
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
}

.portal-heading-news h2 {
    color: var(--daddeln-violet);

    text-shadow:
        0 0 9px rgba(184, 92, 255, 0.38);
}

.portal-heading-news .left-line {
    background:
        linear-gradient(
            90deg,
            var(--daddeln-cyan) 0%,
            #638fff 46%,
            var(--daddeln-violet) 100%
        );

    box-shadow:
        0 0 8px rgba(110, 125, 255, 0.30);
}

.portal-heading-news .right-line {
    background:
        linear-gradient(
            90deg,
            var(--daddeln-violet) 0%,
            #d84fdc 48%,
            var(--daddeln-magenta) 100%
        );

    box-shadow:
        0 0 8px rgba(215, 74, 216, 0.30);
}


/* VOICE SERVER
 * inner left remains solid magenta
 * outer right fades toward the page edge
 */
.portal-heading-voice {
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
}

.portal-heading-voice h2 {
    color: var(--daddeln-magenta);

    text-shadow:
        0 0 8px rgba(255, 56, 184, 0.32);
}

.portal-heading-voice .inner-line {
    background: var(--daddeln-magenta);

    box-shadow:
        0 0 7px rgba(255, 56, 184, 0.34);
}

.portal-heading-voice .outer-fade {
    background:
        linear-gradient(
            90deg,
            var(--daddeln-magenta) 0%,
            rgba(255, 56, 184, 0.38) 65%,
            transparent 100%
        );
}


/*
 * Hide obsolete per-column heading systems from earlier versions.
 * Keeping them disabled makes the override robust even if an older
 * markup fragment remains somewhere.
 */
.rail-title,
.news-title {
    display: none !important;
}


/* -----------------------------------------
 * Card color flow
 * ----------------------------------------- */

/* Left rail = clear cyan family */
.palworld-card {
    border-color: rgba(30, 223, 255, 0.82);

    background:
        linear-gradient(
            145deg,
            rgba(4, 25, 43, 0.94),
            rgba(8, 17, 34, 0.96)
        );

    box-shadow:
        inset 0 0 24px rgba(30, 223, 255, 0.038),
        0 0 18px rgba(30, 223, 255, 0.085);
}

.palworld-card::after {
    background:
        linear-gradient(
            135deg,
            transparent 48%,
            rgba(30, 223, 255, 0.52)
        );
}


/* Right rail = clear magenta family */
.teamspeak-card {
    border-color: rgba(255, 56, 184, 0.78);

    background:
        linear-gradient(
            145deg,
            rgba(22, 9, 34, 0.96),
            rgba(31, 7, 31, 0.96)
        );

    box-shadow:
        inset 0 0 24px rgba(255, 56, 184, 0.038),
        0 0 18px rgba(255, 56, 184, 0.085);
}


/*
 * NEWS COLUMN:
 * - left news cards lean cyan → violet
 * - right news cards lean violet → magenta
 * This gives the middle column a real spatial color progression.
 */
.news-grid .news-card:nth-child(odd) {
    border-color: rgba(123, 102, 255, 0.46);

    background:
        linear-gradient(
            135deg,
            rgba(10, 20, 43, 0.95) 0%,
            rgba(20, 13, 45, 0.96) 56%,
            rgba(35, 12, 48, 0.94) 100%
        );

    box-shadow:
        inset 0 0 20px rgba(101, 145, 255, 0.028),
        0 0 16px rgba(123, 102, 255, 0.055);
}

.news-grid .news-card:nth-child(even) {
    border-color: rgba(205, 83, 226, 0.46);

    background:
        linear-gradient(
            135deg,
            rgba(22, 13, 45, 0.95) 0%,
            rgba(31, 11, 46, 0.96) 56%,
            rgba(45, 8, 42, 0.94) 100%
        );

    box-shadow:
        inset 0 0 20px rgba(210, 78, 222, 0.028),
        0 0 16px rgba(205, 83, 226, 0.055);
}


/* bottom edge accents follow the same spatial progression */
.news-grid .news-card:nth-child(odd)::after {
    background:
        linear-gradient(
            90deg,
            var(--daddeln-cyan) 0%,
            #7191ff 44%,
            var(--daddeln-violet) 100%
        );
}

.news-grid .news-card:nth-child(even)::after {
    background:
        linear-gradient(
            90deg,
            var(--daddeln-violet) 0%,
            #d84fdc 52%,
            var(--daddeln-magenta) 100%
        );
}


/* text/category accent follows each half of the middle column */
.news-grid .news-card:nth-child(odd) .news-tag {
    color: #8d88ff;
}

.news-grid .news-card:nth-child(even) .news-tag {
    color: #d85bd7;
}


/*
 * Remove the old faint full-width bridge line from v3.
 * The new shared heading row itself is now the bridge.
 */
.portal-layout::before {
    display: none !important;
}


/* -----------------------------------------
 * Responsive fallback
 * ----------------------------------------- */

@media (max-width: 1350px) {
    .portal-heading-band {
        grid-template-columns: 1fr 1fr;

        width: 100%;
        gap: 18px;
    }

    .portal-heading-game {
        grid-column: 1;
    }

    .portal-heading-voice {
        grid-column: 2;
    }

    .portal-heading-news {
        grid-column: 1 / -1;
        grid-row: 2;

        margin-top: 4px;
    }

    .status-rail-left,
    .status-rail-right {
        grid-row: 2;
    }

    .portal-main {
        grid-row: 3;
    }
}

@media (max-width: 700px) {
    .portal-heading-band {
        grid-template-columns: 1fr;
    }

    .portal-heading-game,
    .portal-heading-news,
    .portal-heading-voice {
        grid-column: 1;
    }

    .portal-heading-game {
        grid-row: 1;
    }

    .portal-heading-news {
        grid-row: 2;
    }

    .portal-heading-voice {
        grid-row: 3;
    }
}



/* =========================================================
 *  V5 — STICKY STATUS / CS COLOR FLOW / FOOTER SIMPLIFIED
 *  ========================================================= */

/*
 * Sticky needs ancestors that do not become artificial scroll containers.
 * overflow:hidden on .site-shell can prevent the status rails from sticking.
 */
.site-shell {
    overflow: visible;
}

body {
    overflow-x: hidden;
}


/* -------------------------
 * Sticky server status
 * ------------------------- */

.status-rail {
    position: sticky;
    top: 24px;

    align-self: start;

    height: max-content;
}

/*
 * The title row is separate from the sticky cards.
 * Keep only the cards themselves visible while scrolling.
 */
.status-rail .compact-server-card {
    position: relative;
}

/* Give sticky cards a tiny top glow when they are detached visually. */
.status-rail {
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.12));
}


/* -------------------------
 * Counter-Strike heading:
 * continue Cyan → Violet → Magenta
 * ------------------------- */

.cs-title > span:first-child {
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(30, 223, 255, 0.30) 16%,
            var(--daddeln-cyan) 42%,
            #6f8fff 72%,
            var(--daddeln-violet) 100%
        );

    box-shadow:
        0 0 8px rgba(92, 141, 255, 0.26);
}

.cs-title > span:last-child {
    background:
        linear-gradient(
            90deg,
            var(--daddeln-violet) 0%,
            #d64edb 48%,
            var(--daddeln-magenta) 76%,
            rgba(255, 56, 184, 0.30) 90%,
            transparent 100%
        );

    box-shadow:
        0 0 8px rgba(220, 72, 210, 0.26);
}

.cs-title p {
    color: var(--daddeln-violet);

    text-shadow:
        0 0 8px rgba(184, 92, 255, 0.30);
}

.cs-title h2 {
    text-shadow:
        0 0 8px rgba(184, 92, 255, 0.18);
}


/* -------------------------
 * Counter-Strike panels
 * Left = Cyan
 * Middle = Violet
 * Bottom ranking = Violet → Magenta
 * ------------------------- */

.cs-grid .cs-panel:nth-child(1) {
    border-color: rgba(30, 223, 255, 0.52);

    background:
        linear-gradient(
            145deg,
            rgba(5, 24, 42, 0.94),
            rgba(10, 18, 37, 0.96)
        );

    box-shadow:
        inset 0 0 20px rgba(30, 223, 255, 0.028),
        0 0 16px rgba(30, 223, 255, 0.055);
}

.cs-grid .cs-panel:nth-child(1) .cs-panel-head h3 {
    color: #dffbff;
}

.cs-grid .cs-panel:nth-child(1) .cs-panel-head span {
    color: var(--daddeln-cyan) !important;
    text-shadow: 0 0 7px rgba(30, 223, 255, 0.42);
}


.cs-grid .cs-panel:nth-child(2) {
    border-color: rgba(184, 92, 255, 0.50);

    background:
        linear-gradient(
            145deg,
            rgba(15, 14, 42, 0.95),
            rgba(27, 11, 43, 0.96)
        );

    box-shadow:
        inset 0 0 20px rgba(184, 92, 255, 0.028),
        0 0 16px rgba(184, 92, 255, 0.055);
}

.cs-grid .cs-panel:nth-child(2) .cs-panel-head span {
    color: var(--daddeln-violet) !important;
    text-shadow: 0 0 7px rgba(184, 92, 255, 0.42);
}


/*
 * Ranking remains full width because this layout was already approved.
 * Its border/background continue the center→right transition.
 */
.cs-ranking {
    border-color: rgba(222, 73, 211, 0.50);

    background:
        linear-gradient(
            110deg,
            rgba(18, 14, 43, 0.96) 0%,
            rgba(31, 11, 46, 0.96) 52%,
            rgba(43, 8, 40, 0.96) 100%
        );

    box-shadow:
        inset 0 0 22px rgba(213, 75, 218, 0.028),
        0 0 16px rgba(255, 56, 184, 0.052);
}

.cs-ranking .cs-panel-head span {
    color: var(--daddeln-magenta) !important;
    text-shadow: 0 0 7px rgba(255, 56, 184, 0.42);
}

.cs-ranking li span {
    color: #dc5cda;
}


/* Add subtle bottom accents that mirror the top color language. */
.cs-grid .cs-panel:nth-child(1),
.cs-grid .cs-panel:nth-child(2),
.cs-ranking {
    position: relative;
    overflow: hidden;
}

.cs-grid .cs-panel:nth-child(1)::after,
.cs-grid .cs-panel:nth-child(2)::after,
.cs-ranking::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;
}

.cs-grid .cs-panel:nth-child(1)::after {
    background:
        linear-gradient(
            90deg,
            var(--daddeln-cyan),
            #7191ff,
            var(--daddeln-violet)
        );
}

.cs-grid .cs-panel:nth-child(2)::after {
    background:
        linear-gradient(
            90deg,
            var(--daddeln-violet),
            #d84fdc,
            var(--daddeln-magenta)
        );
}

.cs-ranking::after {
    background:
        linear-gradient(
            90deg,
            var(--daddeln-violet),
            #d84fdc 55%,
            var(--daddeln-magenta)
        );
}


/* -------------------------
 * Footer: only SERVER INFO + NEWS ARCHIV
 * ------------------------- */

.footer-actions {
    gap: 14px;
}

.footer-action {
    min-width: 150px;
}

/*
 * Keep the two remaining actions visually centered and stronger,
 * since they now carry the actual footer functionality.
 */
.footer-actions .footer-action:first-child {
    border-color: rgba(184, 92, 255, 0.44);
}

.footer-actions .footer-action:last-child {
    border-color: rgba(255, 56, 184, 0.38);
}


/* -------------------------
 * Responsive sticky fallback
 * ------------------------- */

/* On layouts where the sidebars move above the content, sticky is disabled. */
@media (max-width: 1350px) {
    .status-rail {
        position: static;
        filter: none;
    }
}



/* =========================================================
   DADDELN v6 — requested visual refinements
   ========================================================= */

/* Larger lane headings: GAME SERVER / GAMING NEWS / VOICE SERVER */
.status-lane-title,
.news-lane-title,
.lane-heading,
.section-lane-title,
.dashboard-lane-title {
    font-size: 14px;
}

/* News cards: no thick decorative bottom bar, only the card border. */
.news-card::after,
.news-grid .news-card:nth-child(odd)::after,
.news-grid .news-card:nth-child(even)::after {
    content: none !important;
    display: none !important;
}

/* Footer color rule for exactly two actions: cyan → magenta. */
.footer-actions .footer-action:first-child {
    color: var(--daddeln-cyan);
    border-color: rgba(30, 223, 255, 0.58);
    box-shadow: inset 0 0 14px rgba(30, 223, 255, 0.025);
}

.footer-actions .footer-action:last-child {
    color: var(--daddeln-magenta);
    border-color: rgba(255, 56, 184, 0.52);
    box-shadow: inset 0 0 14px rgba(255, 56, 184, 0.025);
}

.footer-actions .footer-action:first-child:hover,
.footer-actions .footer-action:first-child:focus-visible {
    border-color: rgba(30, 223, 255, 0.90);
    box-shadow: 0 0 15px rgba(30, 223, 255, 0.18);
}

.footer-actions .footer-action:last-child:hover,
.footer-actions .footer-action:last-child:focus-visible {
    border-color: rgba(255, 56, 184, 0.90);
    box-shadow: 0 0 15px rgba(255, 56, 184, 0.18);
}


/* Exact portal heading sizing */
.portal-heading h2 {
    font-size: 14px !important;
}

/* CS color order: cyan / violet / magenta.
   Matches = cyan, World Ranking = violet, Upcoming Tournaments = magenta. */
.cs-panel:not(.cs-ranking):nth-child(1) {
    border-color: rgba(30, 223, 255, 0.56);
}
.cs-panel:not(.cs-ranking):nth-child(2) {
    border-color: rgba(255, 56, 184, 0.56);
}
.cs-ranking {
    border-color: rgba(184, 92, 255, 0.56) !important;
}
.cs-ranking .cs-panel-head > span,
.cs-ranking ol li > span {
    color: var(--daddeln-violet) !important;
}

.magenta-text { color: var(--daddeln-magenta) !important; }
.violet-text { color: var(--daddeln-violet) !important; }


/* =========================================================
   DADDELN v7 — footer final polish
   ========================================================= */

.footer-system {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-system-dot {
    width: 13px;
    height: 13px;
    flex: 0 0 auto;

    border-radius: 50%;

    background: #00efa0;

    box-shadow:
        0 0 7px rgba(0, 239, 160, 0.82),
        0 0 16px rgba(0, 239, 160, 0.42);
}

.footer-system-copy {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;

    gap: 8px 10px;

    min-width: 0;
}

.footer-system-copy strong {
    color: var(--daddeln-cyan);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;

    text-shadow:
        0 0 8px rgba(30, 223, 255, 0.25);
}

.footer-system-slashes {
    color: var(--daddeln-violet);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;

    opacity: 0.85;
}

.footer-system-state {
    color: #c9cad7;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
}

.footer-system.is-degraded .footer-system-dot {
    background: #ffb020;

    box-shadow:
        0 0 7px rgba(255, 176, 32, 0.80),
        0 0 16px rgba(255, 176, 32, 0.40);
}

.footer-system.is-degraded .footer-system-state {
    color: #ffcf70;
}

.footer-system.is-offline .footer-system-dot {
    background: #ff405f;

    box-shadow:
        0 0 7px rgba(255, 64, 95, 0.82),
        0 0 16px rgba(255, 64, 95, 0.42);
}

.footer-system.is-offline .footer-system-state {
    color: #ff7088;
}


/* Footer tagline now follows the fixed 3-color rule. */
.footer-tag-cyan {
    color: var(--daddeln-cyan);

    text-shadow:
        0 0 7px rgba(30, 223, 255, 0.24);
}

.footer-tag-violet {
    color: var(--daddeln-violet);

    text-shadow:
        0 0 7px rgba(184, 92, 255, 0.24);
}

.footer-tag-magenta {
    color: var(--daddeln-magenta);

    text-shadow:
        0 0 7px rgba(255, 56, 184, 0.24);
}

@media (max-width: 900px) {
    .footer-system {
        justify-content: center;
    }

    .footer-system-copy {
        justify-content: center;
    }
}



/* =========================================================
   DADDELN v8 — footer hard-fix + CS live-data preparation
   ========================================================= */

.footer-planet,
.footer-slashes,
.footer-online {
    display: none !important;
}

.footer-system {
    display: flex !important;
    align-items: center;
    gap: 12px;
}

.footer-system-dot {
    width: 13px;
    height: 13px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #00efa0;
    box-shadow:
        0 0 7px rgba(0, 239, 160, 0.82),
        0 0 16px rgba(0, 239, 160, 0.42);
}

.footer-system-copy {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.footer-system-copy strong {
    color: var(--daddeln-cyan);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.footer-system-slashes {
    display: inline !important;
    color: var(--daddeln-violet);
    opacity: 0.88;
}

.footer-system-state {
    color: #c9cad7;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
}

.footer-system.is-degraded .footer-system-dot {
    background: #ffb020;
    box-shadow: 0 0 8px rgba(255,176,32,.75);
}
.footer-system.is-degraded .footer-system-state {
    color: #ffcf70;
}
.footer-system.is-offline .footer-system-dot {
    background: #ff405f;
    box-shadow: 0 0 8px rgba(255,64,95,.78);
}
.footer-system.is-offline .footer-system-state {
    color: #ff7088;
}

.footer-tag-cyan { color: var(--daddeln-cyan) !important; }
.footer-tag-violet { color: var(--daddeln-violet) !important; }
.footer-tag-magenta { color: var(--daddeln-magenta) !important; }

/* Future CS API data */
.cs-live-list {
    display: grid;
}
.cs-live-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 18px;
    align-items: center;
    padding: 13px 0;
    border-top: 1px solid rgba(170, 180, 210, 0.13);
}
.cs-live-row strong {
    color: #e4e5ee;
    font-size: 14px;
    font-weight: 500;
}
.cs-live-row span,
.cs-live-row time {
    color: #85899d;
    font-size: 12px;
    text-align: right;
}
.cs-live-row small {
    grid-column: 1 / -1;
    color: #74798c;
    font-size: 11px;
}


/* =========================================================
   DADDELN v9 — live news links
   ========================================================= */

.news-original-link {
    display: inline-flex;
    align-items: center;

    margin-top: 14px;

    color: #c9cad7;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;

    text-decoration: none;

    transition:
        color 160ms ease,
        text-shadow 160ms ease;
}

.news-card:nth-child(odd) .news-original-link:hover,
.news-card:nth-child(odd) .news-original-link:focus-visible {
    color: var(--daddeln-cyan);
    text-shadow: 0 0 7px rgba(30, 223, 255, 0.30);
    outline: none;
}

.news-card:nth-child(even) .news-original-link:hover,
.news-card:nth-child(even) .news-original-link:focus-visible {
    color: var(--daddeln-magenta);
    text-shadow: 0 0 7px rgba(255, 56, 184, 0.30);
    outline: none;
}


.archive-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.archive-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}

.archive-pagination button {
    min-width: 120px;
    padding: 10px 14px;
    border: 1px solid rgba(184,92,255,.45);
    border-radius: 8px;
    color: #d9d8e5;
    background: rgba(12,8,29,.72);
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
}

.archive-pagination button:disabled {
    opacity: .35;
    cursor: default;
}

.archive-pagination span {
    color: #9a9bad;
    font-size: 12px;
    letter-spacing: 1.5px;
}

.archive-loading {
    grid-column: 1 / -1;
    color: #9a9bad;
}

@media (max-width: 760px) {
    .archive-news-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   DADDELN FINAL — NEWS FILTERS / FOOTER / FINAL CLEANUP
   ========================================================= */

.portal-heading h2 {
    font-size: 14px !important;
}

/* No thick decorative bars under news cards. */
.news-card::after,
.news-grid .news-card:nth-child(odd)::after,
.news-grid .news-card:nth-child(even)::after {
    content: none !important;
    display: none !important;
}

.news-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 8px;

    margin: -2px 0 20px;
}

.news-filter {
    padding: 7px 11px;

    border: 1px solid rgba(122, 109, 171, 0.28);
    border-radius: 8px;

    color: #818496;
    background: rgba(9, 9, 26, 0.64);

    font: inherit;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.3px;

    cursor: pointer;

    transition:
        color 150ms ease,
        border-color 150ms ease,
        box-shadow 150ms ease,
        background 150ms ease;
}

.news-filter:hover,
.news-filter:focus-visible {
    color: #ffffff;
    border-color: rgba(184, 92, 255, 0.54);
    outline: none;
}

.news-filter.is-active {
    color: #ffffff;

    border-color: rgba(184, 92, 255, 0.72);

    background:
        linear-gradient(
            90deg,
            rgba(30, 223, 255, 0.08),
            rgba(184, 92, 255, 0.13),
            rgba(255, 56, 184, 0.08)
        );

    box-shadow:
        0 0 12px rgba(184, 92, 255, 0.12);
}

.news-empty {
    grid-column: 1 / -1;

    display: grid;
    place-items: center;

    min-height: 150px;

    padding: 30px;

    border: 1px solid rgba(184, 92, 255, 0.28);
    border-radius: 14px;

    color: #85899d;
    background: rgba(10, 9, 28, 0.66);

    text-align: center;
}

.news-empty strong {
    color: var(--daddeln-violet);
    letter-spacing: 2px;
}

.news-empty span {
    margin-top: 6px;
    font-size: 13px;
}


/* Footer final system console */
.footer-planet,
.footer-slashes,
.footer-online {
    display: none !important;
}

.footer-system {
    display: flex !important;
    align-items: center;
    gap: 12px;
}

.footer-system-dot {
    width: 13px;
    height: 13px;
    flex: 0 0 auto;

    border-radius: 50%;

    background: #00efa0;

    box-shadow:
        0 0 7px rgba(0, 239, 160, 0.82),
        0 0 16px rgba(0, 239, 160, 0.42);
}

.footer-system-copy {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.footer-system-copy strong {
    color: var(--daddeln-cyan);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.footer-system-slashes {
    display: inline !important;

    color: var(--daddeln-violet);
    opacity: 0.88;
}

.footer-system-state {
    color: #c9cad7;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
}

.footer-system.is-degraded .footer-system-dot {
    background: #ffb020;
    box-shadow: 0 0 8px rgba(255, 176, 32, 0.75);
}

.footer-system.is-degraded .footer-system-state {
    color: #ffcf70;
}

.footer-system.is-offline .footer-system-dot {
    background: #ff405f;
    box-shadow: 0 0 8px rgba(255, 64, 95, 0.78);
}

.footer-system.is-offline .footer-system-state {
    color: #ff7088;
}

.footer-tag-cyan {
    color: var(--daddeln-cyan) !important;
}

.footer-tag-violet {
    color: var(--daddeln-violet) !important;
}

.footer-tag-magenta {
    color: var(--daddeln-magenta) !important;
}

/* Exactly two footer actions = cyan / magenta */
.footer-actions .footer-action:first-child {
    color: var(--daddeln-cyan);
    border-color: rgba(30, 223, 255, 0.58);
}

.footer-actions .footer-action:last-child {
    color: var(--daddeln-magenta);
    border-color: rgba(255, 56, 184, 0.54);
}

@media (max-width: 560px) {
    .news-filter {
        padding: 6px 8px;
        font-size: 9px;
        letter-spacing: 1px;
    }
}


.archive-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;

    margin-top: 28px;
}

.archive-pagination {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-top: 30px;
}

.archive-pagination button {
    min-width: 120px;

    padding: 10px 14px;

    border: 1px solid rgba(184, 92, 255, 0.45);
    border-radius: 8px;

    color: #d9d8e5;
    background: rgba(12, 8, 29, 0.72);

    font: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;

    cursor: pointer;
}

.archive-pagination button:disabled {
    opacity: 0.35;
    cursor: default;
}

.archive-pagination span {
    color: #9a9bad;

    font-size: 12px;
    letter-spacing: 1.5px;
}

.archive-loading {
    grid-column: 1 / -1;

    color: #9a9bad;
}

@media (max-width: 760px) {
    .archive-news-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   ORIGINALARTIKEL — Neon-Hover wie Navigation
   ========================================================= */

.news-original-link {
    position: relative;
    display: inline-flex;
    align-items: center;

    width: max-content;

    padding-bottom: 5px;

    transition:
        color 160ms ease,
        text-shadow 160ms ease;
}

.news-original-link::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    border-radius: 999px;

    transition: width 180ms ease;
}

/* Linke News-Kacheln: Cyan → Violett */
.news-grid .news-card:nth-child(odd) .news-original-link::after,
.archive-news-grid .news-card:nth-child(odd) .news-original-link::after {
    background:
        linear-gradient(
            90deg,
            var(--daddeln-cyan),
            var(--daddeln-violet)
        );

    box-shadow:
        0 0 8px rgba(30, 223, 255, 0.48),
        0 0 11px rgba(184, 92, 255, 0.34);
}

/* Rechte News-Kacheln: Violett → Magenta */
.news-grid .news-card:nth-child(even) .news-original-link::after,
.archive-news-grid .news-card:nth-child(even) .news-original-link::after {
    background:
        linear-gradient(
            90deg,
            var(--daddeln-violet),
            var(--daddeln-magenta)
        );

    box-shadow:
        0 0 8px rgba(184, 92, 255, 0.42),
        0 0 11px rgba(255, 56, 184, 0.34);
}

.news-original-link:hover,
.news-original-link:focus-visible {
    color: #ffffff;

    text-shadow:
        0 0 7px rgba(255, 255, 255, 0.28);
}

.news-original-link:hover::after,
.news-original-link:focus-visible::after {
    width: 100%;
}

.news-original-link:focus-visible {
    outline: none;
}
