* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #050806;
    color: #e8fff0;
}

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(5, 8, 6, 0.88);
    border-bottom: 1px solid rgba(0, 255, 136, 0.35);
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 14px 28px;

    display: grid;
    grid-template-columns: 140px 1fr 220px;
    align-items: center;
}


.logo-area img {
     justify-self: start;
    width: 72px;
    filter: drop-shadow(0 0 10px rgba(0,255,136,0.55));
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

.main-nav a {
    position: relative;

    color: #f1f1f1;
    text-decoration: none;

    font-weight: 800;
    font-size: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;

    padding: 24px 0;

    transition: 0.25s ease;
}

/* Hover */

.main-nav a:hover {
    color: #9dff3f;

    text-shadow:
        0 0 8px rgba(157,255,63,0.65);
}

/* Aktiver Menüpunkt */

.main-nav a.active {
    color: #9dff3f;
}

/* Grüner Diamond unten */

.main-nav a.active::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 10px;

    width: 10px;
    height: 10px;

    background: #9dff3f;

    transform:
        translateX(-50%)
        rotate(45deg);

    box-shadow:
        0 0 10px rgba(157,255,63,0.8);
}

.login-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 34px;

    color: #d8ffe8;
    text-decoration: none;
    text-transform: uppercase;

    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;

    background:
        linear-gradient(
            180deg,
            rgba(18,22,18,0.96),
            rgba(7,10,7,0.96)
        );

    border: 1px solid rgba(128,255,0,0.45);

    clip-path: polygon(
        10px 0,
        100% 0,
        100% calc(100% - 10px),
        calc(100% - 10px) 100%,
        0 100%,
        0 10px
    );

    box-shadow:
        0 0 12px rgba(120,255,0,0.14),
        inset 0 0 12px rgba(120,255,0,0.08);

    transition: 0.25s ease;
}

.login-btn::before {
    content: "⦿";

    color: #7dff00;
    font-size: 11px;

    opacity: 0.8;
}

.login-btn:hover {
    color: #ffffff;

    border-color: #9dff00;

    box-shadow:
        0 0 18px rgba(140,255,0,0.35),
        inset 0 0 18px rgba(140,255,0,0.12);

    transform: translateY(-1px);
}

.btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 999px;

    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
}

.btn-primary {
    background: #00aa55;
    color: white;
    box-shadow: 0 0 18px rgba(0,255,136,0.35);
}

.btn-primary:hover {
    background: #00ff88;
    color: #031006;
}

.btn-secondary {
    border: 1px solid #00ff88;
    color: #e8fff0;
}

.btn-secondary:hover {
    background: rgba(0,255,136,0.12);
}

.main-footer {
    padding: 30px 20px;
    text-align: center;
    background: #050806;
    border-top: 1px solid rgba(0,255,136,0.25);
}

.footer-small {
    color: #00ff88;
    font-size: 14px;
}


.dashboard {
    padding-top: 140px;
    min-height: 70vh;
}

.dashboard-card {
    max-width: 900px;
    margin: 0 auto;

    padding: 40px;

    background: rgba(10,15,12,0.75);
    border: 1px solid rgba(0,255,136,0.2);
    border-radius: 20px;

    backdrop-filter: blur(8px);
}

.profile-link {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #e8fff0;
    text-decoration: none;
    font-weight: bold;
}

.profile-link img {
    width: 42px;
    height: 42px;
    border-radius: 50%;

    border: 2px solid #00ff88;
    box-shadow: 0 0 12px rgba(0,255,136,0.45);
}

.profile-page {
    padding: 120px 30px 80px;
    min-height: 80vh;
}

.profile-card {
    width: 100%;
    max-width: 520px;

    padding: 40px;

    text-align: center;

    background: rgba(10,15,12,0.82);
    border: 1px solid rgba(0,255,136,0.25);
    border-radius: 24px;

    box-shadow: 0 0 30px rgba(0,255,136,0.12);
    backdrop-filter: blur(10px);
}

.profile-avatar {
    width: 130px;
    height: 130px;

    border-radius: 50%;
    object-fit: cover;

    border: 3px solid #00ff88;
    box-shadow: 0 0 22px rgba(0,255,136,0.55);
}

.profile-card h1 {
    margin: 22px 0 10px;
    color: #00ff88;
}

.profile-role {
    font-weight: bold;
    color: #e8fff0;
}

.profile-id {
    font-size: 13px;
    opacity: 0.65;
}

.admin-page {
    padding: 150px 30px 80px;
    min-height: 80vh;
}

.admin-page h1 {
    color: #00ff88;
    text-align: center;
    margin-bottom: 30px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(10,15,12,0.82);
    border: 1px solid rgba(0,255,136,0.25);
}

.admin-table th,
.admin-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(0,255,136,0.15);
    text-align: center;
}

.admin-table th {
    color: #00ff88;
}

.admin-form-box {
    max-width: 760px;
    margin: 0 auto;
    padding: 35px;

    background: rgba(10,15,12,0.82);
    border: 1px solid rgba(0,255,136,0.25);
    border-radius: 22px;
}

.admin-form-box form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.admin-form-box input,
.admin-form-box select {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(0,255,136,0.35);

    background: #050806;
    color: #e8fff0;
}

.admin-form-box h2 {
    margin-top: 25px;
    color: #00ff88;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.no-card {
    text-align: center;
    color: #aaa;
    margin-top: 25px;
}

/* ECHTE SOLDIERCARD AUF BASIS DER PNG-VORLAGE */

.soldiercard-real {
    position: relative;
    width: min(100%, 820px);
    margin: 40px auto 0;
}

.soldiercard-bg {
    width: 100%;
    display: block;
}

.sc-name,
.sc-cod,
.sc-date,
.sc-rank-text,
.sc-stars {
    position: absolute;
    color: white;
    font-weight: bold;
    text-shadow: 0 0 8px black;
}

.sc-name {
    top: 7.6%;
    left: 10%;
    width: 19%;
    font-size: clamp(16px, 2.5vw, 32px);
}

.sc-cod {
    top: 15%;
    left: 10%;
    width: 19%;
    font-size: clamp(11px, 1.5vw, 18px);
}

.sc-date {
    top: 21.6%;
    left: 10%;
    width: 19%;
    font-size: clamp(15px, 2.3vw, 28px);
}

.sc-rank-text {
    top: 44.5%;
    left: 34%;
    width: 32%;
    text-align: center;
    font-size: clamp(16px, 2.4vw, 30px);
}

.sc-stars {
    position: absolute;
    top: 9.8%;
    left: 72.6%;
    width: 22.5%;

    display: flex;
    justify-content: space-between;
}

.sc-stars span {
    font-family: "Arial", "Segoe UI Symbol", sans-serif;
    font-size: clamp(24px, 4.8vw, 56px);
    color: transparent;
}

.sc-stars span.active {
    color: #ffffff;
    text-shadow: 0 0 6px rgba(255,255,255,0.7);
}
.profile-layout {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 35px;
    align-items: start;
}

.profile-left,
.profile-right {
    width: 100%;
}

.profile-card {
    width: 100%;
    max-width: none;
}

.certificates-box {
    margin-top: 25px;
    padding: 28px;

    background: rgba(10,15,12,0.82);
    border: 1px solid rgba(0,255,136,0.25);
    border-radius: 24px;

    box-shadow: 0 0 30px rgba(0,255,136,0.08);
}

.certificates-box h2 {
    margin-top: 0;
    color: #00ff88;
}

.soldiercard-real {
    position: relative;
    width: 100%;
    max-width: 690px;
    margin: 0 auto;
}

.sc-rank-image {
    position: absolute;

    top: 29%;
    left: 40.5%;

    width: 19%;
    height: auto;

}

.badge {
    position: absolute;
    width: 21.9%;
    height: auto;
}

/* REIHE 1 */

.badge-1 { top: 50.6%; left: 4.8%; }
.badge-2 { top: 50.6%; left: 27.2%; }
.badge-3 { top: 50.6%; left: 50.3%; }
.badge-4 { top: 50.6%; left: 72.5%; }

/* REIHE 2 */

.badge-5 { top: 64.9%; left: 4.8%; }
.badge-6 { top: 64.9%; left: 27.2%; }
.badge-7 { top: 64.9%; left: 50.3%; }
.badge-8 { top: 64.9%; left: 72.5%; }

/* REIHE 3 */

.badge-9  { top: 78.4%; left: 4.8%; }
.badge-10 { top: 78.4%; left: 27.1%; }
.badge-11 { top: 78.4%; left: 50.3%; }
.badge-12 { top: 78.4%; left: 72.5%; }

@media (max-width: 800px) {

    .profile-page {
        padding: 150px 8px 50px;
    }

    .profile-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .profile-left {
        display: contents;
    }

    .profile-card {
        order: 1;
    }

    .profile-right {
        order: 2;
    }

    .certificates-box {
        order: 3;
        width: 100%;
        margin-top: 0;
    }

    .soldiercard-real {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }

    .sc-name {
        font-size: 14px !important;
        top: 7.8% !important;
    }

    .sc-cod {
        font-size: 9px !important;
        top: 14.7% !important;
    }

    .sc-date {
        font-size: 11px !important;
        top: 21.8% !important;
    }

    .sc-rank-text {
        font-size: 13px !important;
    }
}

/* NEUE STARTSEITE */

.mobile-home-extra {
    display: none;
}

.home-hero {
    position: relative;
    overflow: hidden;

    min-height: calc(100vw * 0.5625);

    background-image: url("../img/home-hero.png");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("../img/home-hero-light.png");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;

    opacity: 0;
    animation: reaperEyes 6s infinite;
    z-index: 1;
}

.home-hero > * {
    position: relative;
    z-index: 2;
}

.bewerben-image-link {
    position: absolute;
    left: 50%;
    bottom: 16%;
    transform: translateX(-50%);

    display: block;
    width: min(360px, 70vw);
}

.bewerben-image-link img {
    display: block;
    width: 100%;
    height: auto;
}

@keyframes reaperEyes {
    0%, 45%, 65%, 100% {
        opacity: 0;
    }

    50%, 58% {
        opacity: 1;
    }
}

/* MOBILE */

@media (max-width: 800px) {

    .home-hero {
        min-height: calc(100vw * 0.5625);
        background-size: contain;
        background-position: center top;
    }

    .home-hero::before {
        background-size: contain;
        background-position: center top;
    }

    .home-hero .bewerben-image-link {
        display: none;
    }

    .mobile-home-extra {
        display: block;
        width: 100%;
        background: #000;
    }

    .mobile-join-image img,
    .mobile-second-image {
        display: block;
        width: 85%;
        height: auto;
        margin: 15px auto;
    }
}



.bewerben-image-link {
    position: absolute;

    left: 50%;
    bottom: 16%;

    transform: translateX(-50%);

    display: block;
    width: min(360px, 70vw);

    transition: 0.25s ease;
}

.bewerben-image-link img {
    width: 100%;
    display: block;
}

.bewerben-image-link:hover {
    transform: translateX(-50%) scale(1.04);
    filter: drop-shadow(0 0 18px rgba(0,255,80,0.8));
}

.join-notice {

    position: absolute;

    left: 50%;
    bottom: 4%;

    transform: translateX(-50%);

    width: min(800px, 90vw);

    padding: 16px 22px;

    background: rgba(255,80,80,0.10);

    border: 1px solid rgba(255,80,80,0.45);

    border-radius: 14px;

    color: #ffe0e0;

    text-align: center;

    line-height: 1.5;

    backdrop-filter: blur(8px);

    box-shadow:
        0 0 18px rgba(255,80,80,0.25);
}

.login-image-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        transform 0.25s ease,
        filter 0.25s ease;

    position: relative;
}

.login-image-btn img {
    width: 160px;
    height: auto;

    display: block;

    filter:
        drop-shadow(0 0 8px rgba(145,255,0,0.15));
}

.login-image-btn:hover {
    transform: translateY(-2px) scale(1.03);
}

.login-image-btn:hover img {
    filter:
        drop-shadow(0 0 10px rgba(145,255,0,0.45))
        drop-shadow(0 0 22px rgba(145,255,0,0.35))
        brightness(1.08);
}






@media (max-width: 800px) {

    .login-image-btn img {
        width: 135px;
    }

}

.clan-info-page {
    padding-top: 70px;
    background: #000000;
}

.clan-info-image {

    width: min(1600px, 98vw);

    display: block;

    margin: 40px auto 0 auto;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid #9dff3f;
    color: #9dff3f;
    font-size: 26px;
    padding: 6px 12px;
    cursor: pointer;
}

@media (max-width: 800px) {
    .main-header {
        position: sticky;
    }

    .header-inner {
        padding: 10px 14px;
        flex-wrap: wrap;
    }

    .logo-area img {
        width: 78px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 12px;
        text-align: center;
        background: rgba(5,8,6,0.96);
        border-top: 1px solid rgba(157,255,63,0.35);
    }

    .main-nav.open {
        display: flex;
    }

   .main-nav {
    display: none;

    width: 100%;

    flex-direction: column;
    align-items: center;

    gap: 0;

    margin-top: 14px;
    padding: 25px 0;

    background:
        linear-gradient(
            180deg,
            rgba(8,12,8,0.98),
            rgba(3,6,3,0.98)
        );

    border-top: 1px solid rgba(157,255,63,0.25);

    box-shadow:
        0 0 25px rgba(157,255,63,0.08),
        inset 0 0 35px rgba(157,255,63,0.04);
    }

    .main-nav.open {
    display: flex;
}

.main-nav a {
    padding: 18px 0;

    font-size: 18px;
    letter-spacing: 2px;
}
    .main-nav a.active::after {
        bottom: 4px;
    }

    .home-hero,
    .clan-info-page {
        margin-top: 0;
    }

    .home-hero {
        min-height: calc(100vw * 0.5625);
        background-size: contain;
        background-position: center top;
    }

    .bewerben-image-link {
        bottom: 6%;
        width: 180px;
    }

    .clan-info-page {
        padding-top: 0;
    }

    .clan-info-image {
        width: 100%;
    }

    .main-footer {
        padding: 18px 10px;
        font-size: 14px;
    }
}

@media (max-width: 1200px) and (min-width: 801px) {

    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .main-nav {
        width: 100%;

        display: flex;
        flex-wrap: wrap;

        justify-content: center;
        gap: 18px 30px;

        order: 2;
    }

    body {
        padding-top: 170px;
    }

    .header-right {
        order: 3;
    }

    .logo-area {
        order: 1;
    }
}

.header-right {
    width: 100%;

    display: flex;
    justify-content: center;

    margin-top: 22px;
}

@media (max-width: 768px) {

    .join-notice {

        position: static;

        transform: none;

        width: calc(100% - 30px);

        margin: 20px auto;

    }

}

.clan-info-mobile {
    display: none;
}

@media (max-width: 768px) {

    .clan-info-image {
        display: none;
    }

    .clan-info-mobile {

        display: block;

        max-width: 700px;

        margin: 30px auto;

        padding: 20px;
    }

    .clan-info-mobile h2 {

        text-align: center;

        color: #aaff00;

        margin-bottom: 30px;
    }

    .mobile-card {
    position: relative;
    overflow: hidden;

    display: flex;
    gap: 15px;

    width: 100%;
    box-sizing: border-box;

    margin-bottom: 18px;
    padding: 18px;

    background: rgba(0, 10, 5, 0.78);

    border: 1px solid rgba(0,255,136,0.25);
    border-radius: 16px;

    box-shadow: 0 0 18px rgba(0,255,136,0.08);
}

.mobile-card::before,
.mobile-quote::before {
    content: "";
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    opacity: 0.72;
    z-index: 0;
}

.mobile-card::after,
.mobile-quote::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.70),
            rgba(0,0,0,0.40)
        );

    z-index: 1;
}

.mobile-card > *,
.mobile-quote > * {
    position: relative;
    z-index: 2;
}

.card-bg-1::before { background-image: url("../img/bg/1.png"); }
.card-bg-2::before { background-image: url("../img/bg/2.png"); }
.card-bg-3::before { background-image: url("../img/bg/3.png"); }
.card-bg-4::before { background-image: url("../img/bg/4.png"); }
.card-bg-5::before { background-image: url("../img/bg/5.png"); }
.card-bg-6::before { background-image: url("../img/bg/6.png"); }    

    .mobile-icon {

        font-size: 30px;

        flex-shrink: 0;
    }

    .mobile-card h3 {

        margin: 0 0 8px;

        color: #aaff00;
    }

    .mobile-card p {

        margin: 0;

        line-height: 1.5;
    }

    .mobile-quote {
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;

    margin-top: 30px;
    text-align: center;
    padding: 20px;

    border: 1px solid rgba(0,255,136,0.25);
    border-radius: 12px;

    color: #aaff00;
    font-style: italic;
}
}

.members-page {
    min-height: 100vh;
    padding: 150px 20px 80px;
    background: #050806;
}

.members-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px;

    background: rgba(5, 12, 8, 0.85);
    border: 1px solid rgba(0,255,136,0.25);
    border-radius: 18px;

    box-shadow: 0 0 25px rgba(0,255,136,0.12);
}

.members-box h1 {
    margin-top: 0;
    color: #aaff00;
    text-align: center;
}

.members-intro {
    text-align: center;
    color: #d4ffe3;
    margin-bottom: 30px;
}

.members-table {
    width: 100%;
    border-collapse: collapse;
}

.members-table th,
.members-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(0,255,136,0.18);
    text-align: left;
}

.members-table th {
    color: #aaff00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.members-table tr:hover {
    background: rgba(0,255,136,0.06);
}

.btn-small {
    padding: 8px 14px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .members-box {
        padding: 20px 12px;
    }

    .members-table {
        font-size: 13px;
    }

    .members-table th,
    .members-table td {
        padding: 10px 6px;
    }
}

@media (max-width: 768px) {

    .members-table,
    .members-table tbody,
    .members-table tr,
    .members-table td {
        display: block;
        width: 100%;
    }

    .members-table thead {
        display: none;
    }

    .members-table tr {

        margin-bottom: 20px;

        padding: 15px;

        background: rgba(0,255,136,0.05);

        border: 1px solid rgba(0,255,136,0.20);

        border-radius: 12px;
    }

    .members-table td {

        border: none;

        padding: 6px 0;
    }

    .members-table td:nth-child(1)::before {
        content: "Vorname: ";
        color: #aaff00;
        font-weight: bold;
    }

    .members-table td:nth-child(2)::before {
        content: "CoD-Nick: ";
        color: #aaff00;
        font-weight: bold;
    }

    .members-table td:nth-child(3)::before {
        content: "Discord: ";
        color: #aaff00;
        font-weight: bold;
    }

    .members-table td:nth-child(4)::before {
        content: "Rang: ";
        color: #aaff00;
        font-weight: bold;
    }

    .members-table td:nth-child(5) {

        margin-top: 12px;

        text-align: center;
    }
}

.admin-form-box form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-form-box label {
    color: #00ff88;
    font-weight: 600;
    margin-top: 10px;
}

.admin-form-box input,
.admin-form-box select {
    width: 100%;
    padding: 12px 14px;

    background: rgba(0,0,0,0.55);
    color: white;

    border: 1px solid rgba(0,255,136,0.35);
    border-radius: 10px;

    font-size: 15px;
}

.admin-form-box input:focus,
.admin-form-box select:focus {
    outline: none;

    border-color: #00ff88;

    box-shadow:
        0 0 10px rgba(0,255,136,0.35);
}

.admin-form-box h2 {
    margin-top: 25px;
    color: #00ff88;
}

.admin-form-box .btn {
    margin-top: 15px;
}
.admin-members-mobile {
    display: none;
}

@media (max-width: 900px) {

    .admin-table {
        display: none;
    }

    .admin-members-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .admin-member-card {
        padding: 20px;
        background: rgba(0,20,10,0.7);
        border: 1px solid rgba(0,255,136,0.25);
        border-radius: 18px;
    }

    .admin-member-card p {
        margin: 8px 0;
    }

    .admin-member-card strong {
        color: #9dff00;
    }

    .admin-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
}

.admin-form-box input[type="checkbox"] {
    width: auto;
    padding: 0;
    border: none;
    background: transparent;
    accent-color: #00ff88;
    flex: 0 0 auto;
}

.checkbox-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: fit-content;
    margin: 8px 0;
    color: #00ff88;
}

.rank-hint,
.rank-requirements-box,
.admin-error {
    margin: 18px 0;
    padding: 16px;
    border-radius: 14px;
    line-height: 1.5;
}

.rank-hint {
    background: rgba(0,255,136,0.08);
    border: 1px solid rgba(0,255,136,0.3);
    color: #d4ffe3;
}

.rank-requirements-box {
    display: none;
    background: rgba(255,180,0,0.08);
    border: 1px solid rgba(255,180,0,0.35);
    color: #ffe6a0;
}

.admin-error {
    background: rgba(255,80,80,0.12);
    border: 1px solid rgba(255,80,80,0.45);
    color: #ffd0d0;
}

.admin-actions-row {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.admin-actions-row .btn {
    white-space: nowrap;
}

.rank-alert {
    color: #ffd54f;
    font-weight: bold;
    line-height: 1.5;
}

.pause-link {
    display: inline-block;
    margin-top: 5px;
    font-size: 12px;
    color: #00ff88;
}

.member-group-row td {
    padding: 14px 20px;
    background: rgba(0, 255, 120, 0.12);
    color: #00ff88;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 2px solid rgba(0,255,120,0.45);
    border-bottom: 1px solid rgba(0,255,120,0.35);
}

.profile-status-image {
    display: block;
    width: min(720px, 100%);
    height: auto;
    margin: 0 auto;
}

.construction-page {
    min-height: 70vh;
    padding: 140px 20px 60px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.construction-image {
    display: block;
    width: min(1200px, 100%);
    height: auto;

    border: 1px solid rgba(0,255,136,0.25);
    box-shadow: 0 0 25px rgba(0,255,136,0.18);
}

.footer-links {
    margin-top: 12px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    font-size: 14px;
}

.footer-links a {
    color: #cfeeda;
    text-decoration: none;

    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #00ff88;
    text-shadow: 0 0 8px rgba(0,255,136,0.6);
}

.footer-links span {
    color: rgba(0,255,136,0.5);
}

.legal-page {
    min-height: 70vh;
    padding: 140px 20px 60px;

    display: flex;
    justify-content: center;
}

.legal-card {
    width: 100%;
    max-width: 900px;

    padding: 40px;

    background: rgba(10,15,12,0.85);

    border: 1px solid rgba(0,255,136,0.25);
    border-radius: 20px;

    box-shadow: 0 0 20px rgba(0,255,136,0.08);
}

.legal-card h1 {
    margin-top: 0;
    color: #00ff88;
}

.legal-card h2 {
    color: #00ff88;
    margin-top: 30px;
}

.legal-card p {
    line-height: 1.8;
}

@media (max-width: 800px) {

    .legal-page {
        padding: 180px 15px 40px;
    }

    .legal-card {
        padding: 25px;
    }
}

.contact-mail a {
    color: #00ff88;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

