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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at center, #142600 0%, #070b05 42%, #020302 100%);

    color: white;
    font-family: Arial, sans-serif;
}

/* Navigation */

.navbar {
    width: 100%;
    height: 80px;

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

    padding: 0 8%;

    background: rgba(3, 5, 3, 0.9);
    border-bottom: 1px solid rgba(132, 255, 0, 0.15);
}

.brand {
    color: #8cff00;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 3px;
    text-decoration: none;

    text-shadow: 0 0 15px rgba(132, 255, 0, 0.5);
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    color: #b7b7b7;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;

    transition: 0.2s;
}

nav a:hover {
    color: #8cff00;
}

.discord-button {
    padding: 12px 20px;
    color: #071000;
    background: #8cff00;
    border-radius: 10px;

    box-shadow: 0 0 20px rgba(132, 255, 0, 0.25);
}

.discord-button:hover {
    color: #071000;
    background: #a6ff40;
}

/* Startbereich */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 0 20px 50px;
    text-align: center;
}

.logo-container {
    width: min(460px, 85vw);

    margin-top: -95px;
    margin-bottom: -165px;

    padding: 0;
    line-height: 0;
}

.logo {
    display: block;
    width: 100%;
    height: auto;

    filter:
        drop-shadow(0 0 18px rgba(132, 255, 0, 0.45))
        drop-shadow(0 0 50px rgba(132, 255, 0, 0.22));
}

.subtitle {
    margin-top: 0;

    color: #8cff00;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 6px;
}

h1 {
    max-width: 1000px;
    margin-top: 16px;

    font-size: 68px;
    line-height: 1.05;
}

.description {
    max-width: 720px;
    margin-top: 18px;

    color: #a7a7a7;
    font-size: 21px;
    line-height: 1.6;
}

.buttons {
    display: flex;
    gap: 18px;
    margin-top: 30px;
}

.button {
    padding: 17px 30px;
    border-radius: 11px;

    font-size: 17px;
    font-weight: bold;
    text-decoration: none;

    transition: 0.2s;
}

.primary-button {
    color: #071000;
    background: #8cff00;

    box-shadow: 0 0 25px rgba(132, 255, 0, 0.25);
}

.primary-button:hover {
    background: #a6ff40;
    transform: translateY(-2px);
}

.secondary-button {
    color: white;
    background: #121512;
    border: 1px solid #303830;
}

.secondary-button:hover {
    border-color: #8cff00;
    color: #8cff00;
}

/* Handy */

@media (max-width: 800px) {
    .navbar {
        justify-content: center;
    }

    nav {
        display: none;
    }

    .logo-container {
        height: 320px;
    }

    h1 {
        font-size: 38px;
    }

    .buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
}/* Skin-Galerie */

.skins-section {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;
    padding: 90px 7% 120px;

    border-top: 1px solid rgba(132, 255, 0, 0.12);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 30px;
}

.section-label {
    margin-bottom: 10px;

    color: #8cff00;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 4px;
}

.section-heading h2 {
    font-size: 46px;
    line-height: 1;
}

.all-skins-link {
    color: #8cff00;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
}

.all-skins-link:hover {
    text-shadow: 0 0 12px rgba(132, 255, 0, 0.7);
}

/* Filter */

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 30px;
}

.filter-button {
    padding: 11px 20px;

    color: #b7b7b7;
    background: #101410;

    border: 1px solid #293029;
    border-radius: 9px;

    font-size: 14px;
    font-weight: bold;
    cursor: pointer;

    transition: 0.2s;
}

.filter-button:hover,
.filter-button.active {
    color: #071000;
    background: #8cff00;
    border-color: #8cff00;

    box-shadow: 0 0 18px rgba(132, 255, 0, 0.22);
}

/* Skin-Karten */

.skin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.skin-card {
    overflow: hidden;

    background: #0d110d;
    border: 1px solid #242b24;
    border-radius: 16px;

    transition: 0.25s;
}

.skin-card:hover {
    transform: translateY(-7px);

    border-color: rgba(132, 255, 0, 0.65);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(132, 255, 0, 0.1);
}

.skin-preview {
    position: relative;

    height: 250px;

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

    border-bottom: 1px solid #242b24;
}

.cherry-preview {
    background:
        radial-gradient(circle, rgba(255, 0, 106, 0.35), transparent 62%),
        #151015;
}

.gojo-preview {
    background:
        radial-gradient(circle, rgba(45, 116, 255, 0.4), transparent 62%),
        #0d1119;
}

.kyurem-preview {
    background:
        radial-gradient(circle, rgba(111, 231, 255, 0.4), transparent 62%),
        #0c1516;
}

.neon-preview {
    background:
        radial-gradient(circle, rgba(132, 255, 0, 0.4), transparent 62%),
        #0d1508;
}

.skin-category {
    position: absolute;
    top: 15px;
    left: 15px;

    padding: 7px 10px;

    color: #8cff00;
    background: rgba(3, 5, 3, 0.8);

    border: 1px solid rgba(132, 255, 0, 0.25);
    border-radius: 7px;

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

.preview-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;
}

.skin-content {
    padding: 22px;
}

.skin-content > p {
    margin: 0 0 7px;

    color: #747d74;
    font-size: 13px;
    letter-spacing: 1px;
}

.skin-content h3 {
    font-size: 23px;
}

.skin-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 25px;
}

.skin-bottom strong {
    color: #d8d8d8;
    font-size: 14px;
}

.skin-bottom a {
    color: #8cff00;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

/* Tablet und Handy */

@media (max-width: 1100px) {
    .skin-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .skins-section {
        padding: 65px 20px 80px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .section-heading h2 {
        font-size: 37px;
    }

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

/* Einheitliche Bilder auf allen Bildschirmgrößen */

.skin-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.skin-preview {
    position: relative;

    width: 100%;
    height: 250px;
    min-height: 250px;

    overflow: hidden;

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

    border-bottom: 1px solid #242b24;
}

.skin-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    margin: 0;
    padding: 0;
}

.skin-content {
    padding: 22px;
    background: #0d110d;
}

.skin-category {
    position: absolute;
    z-index: 2;

    top: 15px;
    left: 15px;
}/* Custom-Auftrag */

.custom-section {
    width: calc(100% - 80px);
    max-width: 1400px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 620px);
    align-items: start;
    gap: 100px;

    margin: 0 auto;
    padding: 110px 20px 130px;

    border-top: 1px solid rgba(132, 255, 0, 0.12);
}

.custom-info h2 {
    margin-top: 12px;

    font-size: 56px;
    line-height: 1.05;
}

.custom-description {
    max-width: 600px;

    margin-top: 25px;

    color: #929992;
    font-size: 18px;
    line-height: 1.7;
}

.custom-features {
    display: flex;
    flex-direction: column;
    gap: 28px;

    margin-top: 45px;
}

.custom-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.custom-feature > span {
    min-width: 48px;
    height: 48px;

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

    color: #071000;
    background: #8cff00;

    border-radius: 12px;

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

    box-shadow: 0 0 20px rgba(132, 255, 0, 0.2);
}

.custom-feature h3 {
    margin-bottom: 7px;
    font-size: 19px;
}

.custom-feature p {
    max-width: 470px;

    color: #7f877f;
    font-size: 15px;
    line-height: 1.6;
}

/* Formular */

.custom-form {
    width: 100%;
    padding: 42px;

    background:
        linear-gradient(
            145deg,
            rgba(132, 255, 0, 0.06),
            rgba(255, 255, 255, 0.01)
        ),
        #0c100c;

    border: 1px solid #252d25;
    border-radius: 22px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35),
        0 0 45px rgba(132, 255, 0, 0.05);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;

    margin-bottom: 22px;
}

.form-group label {
    color: #d5d9d5;
    font-size: 14px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 17px 18px;

    color: white;
    background: #080b08;

    border: 1px solid #293129;
    border-radius: 11px;

    font-family: Arial, sans-serif;
    font-size: 16px;

    outline: none;
    transition: 0.2s;
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #8cff00;

    box-shadow: 0 0 0 3px rgba(132, 255, 0, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555d55;
}

.custom-submit {
    width: 100%;

    padding: 17px;

    color: #071000;
    background: #8cff00;

    border: none;
    border-radius: 11px;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;
    transition: 0.2s;

    box-shadow: 0 0 25px rgba(132, 255, 0, 0.2);
}

.custom-submit:hover {
    background: #a6ff40;
    transform: translateY(-2px);
}

.form-notice {
    margin-top: 15px;

    color: #697069;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

/* Custom-Bereich auf Handy */

@media (max-width: 1050px) {
    .custom-section {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        gap: 55px;

        padding: 80px 20px 100px;
    }
}

    .custom-info h2 {
        font-size: 43px;
    }

@media (max-width: 500px) {
    .custom-section {
        padding: 70px 20px 80px;
    }

    .custom-info h2 {
        font-size: 36px;
    }

    .custom-form {
        padding: 24px 18px;
    }
}/* Galerie fest auf normale Größe setzen */

.skins-section {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 90px 7% 120px;
}

.skin-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.skin-card {
    width: 100%;
    min-width: 0;
}

.skin-preview {
    width: 100%;
    height: 250px;
    min-height: 250px;
    overflow: hidden;
}

.skin-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Custom-Bereich breit, ohne Galerie zu beeinflussen */

.custom-section {
    width: 100%;
    max-width: 1400px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(500px, 600px);
    align-items: start;
    gap: 90px;

    margin: 0 auto;
    padding: 110px 7% 130px;

    border-top: 1px solid rgba(132, 255, 0, 0.12);
}

.custom-form {
    width: 100%;
    padding: 42px;
}


/* Tablet */

@media (max-width: 950px) {
    .skin-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .custom-section {
        grid-template-columns: 1fr;
        gap: 55px;
    }
}


/* Handy */

@media (max-width: 650px) {
    .skin-grid {
        grid-template-columns: 1fr;
    }

    .custom-section {
        padding: 70px 20px 80px;
    }

    .custom-form {
        padding: 24px 18px;
    }
}.payhip-button {
    display: inline-block;
    padding: 11px 16px;

    color: #071000 !important;
    background: #8cff00;

    border-radius: 8px;
    text-decoration: none;

    box-shadow: 0 0 18px rgba(132, 255, 0, 0.2);
    transition: 0.2s;
}

.payhip-button:hover {
    background: #a6ff40;
    transform: translateY(-2px);
}.form-notice.success-message {
    color: #8cff00;
}

.form-notice.error-message {
    color: #ff5c5c;
}/* Kategorien */

.categories-section {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;
    padding: 100px 7% 120px;

    border-top: 1px solid rgba(132, 255, 0, 0.12);
}

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

.category-card {
    position: relative;

    min-height: 180px;
    display: flex;
    align-items: center;
    gap: 25px;

    padding: 30px;

    color: white;
    background:
        linear-gradient(
            135deg,
            rgba(132, 255, 0, 0.07),
            rgba(255, 255, 255, 0.01)
        ),
        #0c100c;

    border: 1px solid #252d25;
    border-radius: 17px;

    text-align: left;
    font-family: Arial, sans-serif;
    cursor: pointer;

    transition: 0.25s;
}

.category-card:hover {
    transform: translateY(-5px);

    border-color: rgba(132, 255, 0, 0.65);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 0 28px rgba(132, 255, 0, 0.09);
}

.category-number {
    min-width: 54px;
    height: 54px;

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

    color: #071000;
    background: #8cff00;

    border-radius: 13px;

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

    box-shadow: 0 0 20px rgba(132, 255, 0, 0.22);
}

.category-card h3 {
    margin-bottom: 8px;
    font-size: 23px;
}

.category-card p {
    color: #7f877f;
    font-size: 15px;
    line-height: 1.5;
}

.category-arrow {
    margin-left: auto;

    color: #8cff00;
    font-size: 28px;

    transition: 0.2s;
}

.category-card:hover .category-arrow {
    transform: translateX(6px);
}

@media (max-width: 800px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .categories-section {
        padding: 75px 25px 90px;
    }
}

@media (max-width: 500px) {
    .category-card {
        min-height: 150px;
        padding: 22px;
    }

    .category-number {
        min-width: 45px;
        height: 45px;
    }

    .category-card h3 {
        font-size: 20px;
    }
}.skin-card.hidden {
    display: none;
}

/* ==================================================
   Produkt-Detailseite
================================================== */

.skin-card {
    cursor: pointer;
}

.skin-card-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.product-detail-button {
    padding: 10px 14px;
    color: #d8ded8;
    background: #151a15;
    border: 1px solid #313a31;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s;
}

.product-detail-button:hover {
    color: #8cff00;
    border-color: rgba(132, 255, 0, 0.65);
}

.product-detail-section {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 70px 7% 120px;
}

.product-back-button {
    margin-bottom: 28px;
    padding: 11px 0;
    color: #9da59d;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s;
}

.product-back-button:hover {
    color: #8cff00;
    transform: translateX(-4px);
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    gap: 55px;
    align-items: start;
}

.product-detail-preview {
    position: sticky;
    top: 30px;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle, rgba(132, 255, 0, 0.16), transparent 58%),
        #090d09;
    border: 1px solid #283128;
    border-radius: 22px;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.36),
        0 0 45px rgba(132, 255, 0, 0.05);
}

.product-detail-preview img {
    display: block;
    width: 100%;
    min-height: 560px;
    object-fit: cover;
}

.product-detail-category {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 22px;
    padding: 8px 11px;
    color: #8cff00;
    background: rgba(4, 7, 4, 0.9);
    border: 1px solid rgba(132, 255, 0, 0.35);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.product-detail-content {
    padding-top: 18px;
}

.product-detail-content h2 {
    margin-top: 9px;
    font-size: clamp(45px, 5vw, 72px);
    line-height: 0.98;
}

.product-detail-weapon {
    margin-top: 16px;
    color: #899189;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.product-detail-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #293129;
    border-bottom: 1px solid #293129;
}

.product-detail-price-row strong {
    color: #8cff00;
    font-size: 25px;
}

.product-detail-price-row span {
    color: #7f887f;
    font-size: 13px;
}

.product-detail-description {
    margin-top: 28px;
    color: #a2aaa2;
    font-size: 18px;
    line-height: 1.75;
}

.product-detail-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.product-detail-facts > div {
    padding: 17px;
    background: #0d110d;
    border: 1px solid #283028;
    border-radius: 11px;
}

.product-detail-facts span,
.product-detail-facts strong {
    display: block;
}

.product-detail-facts span {
    color: #707870;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-detail-facts strong {
    margin-top: 8px;
    color: #dce1dc;
    font-size: 13px;
    line-height: 1.45;
}

.product-detail-includes {
    margin-top: 30px;
    padding: 24px;
    background: rgba(132, 255, 0, 0.035);
    border: 1px solid rgba(132, 255, 0, 0.18);
    border-radius: 14px;
}

.product-detail-includes h3 {
    font-size: 19px;
}

.product-detail-includes ul {
    display: grid;
    gap: 11px;
    margin-top: 17px;
    padding: 0;
    list-style: none;
}

.product-detail-includes li {
    position: relative;
    padding-left: 25px;
    color: #969f96;
    line-height: 1.55;
}

.product-detail-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8cff00;
    font-weight: 900;
}

.product-detail-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
}

.product-buy-button,
.product-custom-button {
    width: 100%;
    padding: 17px 22px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}

.product-buy-button {
    color: #071000;
    background: #8cff00;
    border: 1px solid #8cff00;
    box-shadow: 0 0 26px rgba(132, 255, 0, 0.22);
}

.product-buy-button:hover {
    background: #a6ff40;
    transform: translateY(-2px);
}

.product-custom-button {
    color: #d9ded9;
    background: #111511;
    border: 1px solid #303830;
}

.product-custom-button:hover {
    color: #8cff00;
    border-color: rgba(132, 255, 0, 0.65);
}

.product-installation-box {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr;
    gap: 18px;
    align-items: start;
    margin-top: 70px;
    padding: 28px;
    background: #0b0f0b;
    border: 1px solid #273027;
    border-radius: 17px;
}

.product-installation-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #071000;
    background: #8cff00;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 900;
}

.product-installation-box h3 {
    font-size: 17px;
}

.product-installation-box p {
    margin-top: 7px;
    color: #7f887f;
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 1050px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    .product-detail-preview {
        position: relative;
        top: auto;
    }

    .product-installation-box {
        grid-template-columns: auto 1fr;
    }
}

@media (max-width: 700px) {
    .skin-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .skin-card-actions {
        width: 100%;
    }

    .product-detail-button,
    .payhip-button {
        flex: 1;
        text-align: center;
    }

    .product-detail-section {
        padding: 45px 20px 90px;
    }

    .product-detail-preview,
    .product-detail-preview img {
        min-height: 360px;
    }

    .product-detail-facts {
        grid-template-columns: 1fr;
    }

    .product-detail-price-row {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* ==================================================
   BENUTZERKONTO / DASHBOARD
================================================== */

.dashboard-section {
    width: 100%;
    max-width: 1500px;
    min-height: calc(100vh - 90px);
    margin: 0 auto;
    padding: 85px 7% 120px;
}

.dashboard-heading {
    align-items: flex-end;
}

.dashboard-intro {
    max-width: 720px;
    margin-top: 17px;
    color: #8f978f;
    font-size: 17px;
    line-height: 1.7;
}

.dashboard-refresh-button {
    padding: 12px 17px;
    color: #dfe5df;
    background: #101510;
    border: 1px solid #2b342b;
    border-radius: 9px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
}

.dashboard-refresh-button:hover {
    color: #8cff00;
    border-color: rgba(140, 255, 0, 0.48);
}

.dashboard-login-box {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    margin-top: 36px;
    padding: 28px;
    background:
        linear-gradient(
            135deg,
            rgba(140, 255, 0, 0.07),
            transparent 55%
        ),
        #0c100c;
    border: 1px solid #273027;
    border-radius: 18px;
}

.dashboard-login-box[hidden] {
    display: none;
}

.dashboard-login-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: #071000;
    background: #8cff00;
    border-radius: 15px;
    font-size: 25px;
    font-weight: 1000;
    box-shadow: 0 0 25px rgba(140, 255, 0, 0.18);
}

.dashboard-login-box h3 {
    font-size: 22px;
}

.dashboard-login-box p {
    margin-top: 7px;
    color: #858e85;
    line-height: 1.55;
}

.dashboard-login-box a {
    padding: 14px 20px;
    color: #071000;
    background: #8cff00;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 900;
}

.dashboard-content[hidden] {
    display: none;
}

.dashboard-content {
    margin-top: 36px;
}

.dashboard-profile-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 27px;
    background:
        radial-gradient(
            circle at 10% 30%,
            rgba(140, 255, 0, 0.09),
            transparent 30%
        ),
        #0c100c;
    border: 1px solid #283128;
    border-radius: 19px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.dashboard-profile-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dashboard-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    overflow: hidden;
    color: #071000;
    background:
        linear-gradient(135deg, #8cff00, #5ea900);
    border: 2px solid rgba(140, 255, 0, 0.5);
    border-radius: 23px;
    font-size: 31px;
    font-weight: 1000;
    box-shadow: 0 0 28px rgba(140, 255, 0, 0.13);
}

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

.dashboard-profile-label,
.dashboard-panel-label,
.dashboard-panel-heading span,
.dashboard-case-preview > span {
    color: #8cff00;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.dashboard-profile-text h3 {
    margin-top: 5px;
    font-size: 28px;
}

.dashboard-profile-text > p {
    margin-top: 3px;
    color: #899189;
}

.dashboard-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 13px;
}

.dashboard-badge {
    padding: 6px 9px;
    color: #9aa39a;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid #303830;
    border-radius: 7px;
    font-size: 10px;
    font-weight: 800;
}

.dashboard-badge.connected,
.dashboard-badge.joined {
    color: #8cff00;
    background: rgba(140, 255, 0, 0.07);
    border-color: rgba(140, 255, 0, 0.28);
}

.dashboard-badge.warning {
    color: #ffc45d;
    background: rgba(255, 196, 93, 0.07);
    border-color: rgba(255, 196, 93, 0.26);
}

.dashboard-profile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-primary-action,
.dashboard-secondary-action {
    padding: 13px 17px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.dashboard-primary-action {
    color: #071000;
    background: #8cff00;
    border: 1px solid #8cff00;
}

.dashboard-secondary-action {
    color: #dce3dc;
    background: transparent;
    border: 1px solid #303830;
}

.dashboard-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
    margin-top: 20px;
}

.dashboard-stat-card {
    padding: 23px;
    background: #0c100c;
    border: 1px solid #273027;
    border-radius: 15px;
    transition: 0.2s;
}

.dashboard-stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(140, 255, 0, 0.4);
}

.dashboard-stat-number {
    display: block;
    color: #8cff00;
    font-size: 38px;
    font-weight: 1000;
    line-height: 1;
}

.dashboard-stat-card h3 {
    margin-top: 14px;
    font-size: 17px;
}

.dashboard-stat-card p {
    margin-top: 6px;
    color: #788178;
    font-size: 12px;
    line-height: 1.5;
}

.dashboard-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.7fr);
    gap: 20px;
    margin-top: 20px;
}

.dashboard-recent-panel,
.dashboard-quick-panel {
    padding: 25px;
    background: #0c100c;
    border: 1px solid #273027;
    border-radius: 17px;
}

.dashboard-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.dashboard-panel-heading h3,
.dashboard-quick-panel > h3 {
    margin-top: 7px;
    font-size: 23px;
}

.dashboard-panel-heading button {
    padding: 9px 12px;
    color: #8cff00;
    background: rgba(140, 255, 0, 0.06);
    border: 1px solid rgba(140, 255, 0, 0.25);
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
}

.dashboard-message {
    margin-top: 16px;
    color: #828b82;
    font-size: 13px;
}

.dashboard-recent-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.dashboard-recent-card {
    overflow: hidden;
    background: #101510;
    border: 1px solid #293229;
    border-radius: 13px;
    cursor: pointer;
    transition: 0.2s;
}

.dashboard-recent-card:hover {
    transform: translateY(-4px);
    border-color: rgba(140, 255, 0, 0.48);
}

.dashboard-recent-card img {
    display: block;
    width: 100%;
    height: 135px;
    object-fit: cover;
    border-bottom: 1px solid #293229;
}

.dashboard-recent-content {
    padding: 13px;
}

.dashboard-recent-status {
    display: inline-block;
    padding: 4px 6px;
    color: #8cff00;
    background: rgba(140, 255, 0, 0.07);
    border: 1px solid rgba(140, 255, 0, 0.25);
    border-radius: 5px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.dashboard-recent-status.downloaded {
    color: #9ba39b;
    background: rgba(255, 255, 255, 0.035);
    border-color: #343c34;
}

.dashboard-recent-content h4 {
    margin-top: 9px;
    font-size: 16px;
}

.dashboard-recent-content p {
    margin-top: 4px;
    color: #8b938b;
    font-size: 12px;
}

.dashboard-recent-content small {
    display: block;
    margin-top: 9px;
    color: #626a62;
    font-size: 10px;
}

.dashboard-empty-card {
    grid-column: 1 / -1;
    padding: 30px;
    text-align: center;
    background: #101510;
    border: 1px dashed #343d34;
    border-radius: 13px;
}

.dashboard-empty-card p {
    max-width: 470px;
    margin: 8px auto 0;
    color: #7f887f;
    line-height: 1.55;
}

.dashboard-empty-card button {
    margin-top: 16px;
    padding: 11px 17px;
    color: #071000;
    background: #8cff00;
    border: none;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
}

.dashboard-quick-panel {
    display: flex;
    flex-direction: column;
}

.dashboard-quick-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    margin-top: 12px;
    padding: 15px;
    color: white;
    background: #101510;
    border: 1px solid #293229;
    border-radius: 11px;
    text-align: left;
    cursor: pointer;
    transition: 0.2s;
}

.dashboard-quick-link:first-of-type {
    margin-top: 20px;
}

.dashboard-quick-link:hover {
    border-color: rgba(140, 255, 0, 0.45);
    transform: translateX(3px);
}

.dashboard-quick-link span {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard-quick-link strong {
    font-size: 14px;
}

.dashboard-quick-link small {
    color: #747d74;
    font-size: 11px;
}

.dashboard-quick-link b {
    color: #8cff00;
    font-size: 20px;
}

.dashboard-case-preview {
    margin-top: 22px;
    padding: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(140, 255, 0, 0.055),
            transparent 65%
        ),
        #101510;
    border: 1px solid #293229;
    border-radius: 12px;
}

.dashboard-case-preview h4 {
    margin-top: 7px;
    font-size: 17px;
}

.dashboard-case-preview p {
    margin-top: 8px;
    color: #7d867d;
    font-size: 12px;
    line-height: 1.55;
}

.dashboard-progress-track {
    height: 7px;
    margin-top: 15px;
    overflow: hidden;
    background: #202720;
    border-radius: 10px;
}

.dashboard-progress-value {
    width: 0;
    height: 100%;
    background: #8cff00;
}

.dashboard-case-preview small {
    display: block;
    margin-top: 8px;
    color: #626a62;
    font-size: 10px;
}

@media (max-width: 1080px) {
    .dashboard-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .dashboard-section {
        padding: 55px 20px 90px;
    }

    .dashboard-heading,
    .dashboard-profile-card,
    .dashboard-login-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-login-box {
        display: flex;
    }

    .dashboard-profile-actions {
        width: 100%;
    }

    .dashboard-primary-action,
    .dashboard-secondary-action {
        flex: 1;
        text-align: center;
    }

    .dashboard-recent-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-recent-card {
        display: grid;
        grid-template-columns: 130px 1fr;
    }

    .dashboard-recent-card img {
        height: 100%;
        min-height: 135px;
        border-right: 1px solid #293229;
        border-bottom: none;
    }
}

@media (max-width: 520px) {
    .dashboard-stat-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-profile-main {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-profile-actions {
        flex-direction: column;
    }

    .dashboard-primary-action,
    .dashboard-secondary-action {
        width: 100%;
    }

    .dashboard-recent-card {
        display: block;
    }

    .dashboard-recent-card img {
        height: 150px;
        border-right: none;
        border-bottom: 1px solid #293229;
    }
}

/* ==================================================
   EMPFEHLUNGSCODE / NÄCHSTER-KAUF-RABATT
================================================== */

.dashboard-referral-card {
    margin-top: 20px;
    padding: 19px;
    background:
        linear-gradient(
            145deg,
            rgba(140, 255, 0, 0.055),
            transparent 65%
        ),
        #101510;
    border: 1px solid #293229;
    border-radius: 12px;
}

.dashboard-referral-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.dashboard-referral-heading > div > span {
    color: #8cff00;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.dashboard-referral-heading h4 {
    margin-top: 6px;
    font-size: 18px;
}

.dashboard-referral-reward {
    flex-shrink: 0;
    padding: 6px 8px;
    color: #8d968d;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid #343c34;
    border-radius: 7px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.7px;
}

.dashboard-referral-reward.available {
    color: #071000;
    background: #8cff00;
    border-color: #8cff00;
    box-shadow: 0 0 20px rgba(140, 255, 0, 0.17);
}

.dashboard-referral-description {
    margin-top: 12px;
    color: #7d867d;
    font-size: 12px;
    line-height: 1.55;
}

.dashboard-referral-label {
    display: block;
    margin-top: 16px;
    margin-bottom: 7px;
    color: #9aa39a;
    font-size: 10px;
    font-weight: 800;
}

.dashboard-referral-copy-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.dashboard-referral-copy-row input {
    min-width: 0;
    padding: 11px 12px;
    color: #e8ede8;
    background: #090d09;
    border: 1px solid #2c352c;
    border-radius: 8px;
    font-family: inherit;
    font-size: 11px;
    outline: none;
}

.dashboard-referral-copy-row input:focus {
    border-color: rgba(140, 255, 0, 0.45);
}

.dashboard-referral-copy-row button {
    padding: 10px 12px;
    color: #071000;
    background: #8cff00;
    border: none;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 900;
    cursor: pointer;
}

.dashboard-referral-copy-message {
    min-height: 17px;
    margin-top: 8px;
    color: #8cff00;
    font-size: 10px;
}

.dashboard-referral-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 9px;
}

.dashboard-referral-stats > div {
    padding: 11px 8px;
    text-align: center;
    background: #0b0f0b;
    border: 1px solid #293229;
    border-radius: 8px;
}

.dashboard-referral-stats strong {
    display: block;
    color: #8cff00;
    font-size: 19px;
}

.dashboard-referral-stats span {
    display: block;
    margin-top: 4px;
    color: #707970;
    font-size: 8px;
    line-height: 1.35;
}

.dashboard-referral-discount {
    margin-top: 12px;
    padding: 13px;
    background: #0b0f0b;
    border: 1px solid #293229;
    border-radius: 9px;
}

.dashboard-referral-discount.available {
    background: rgba(140, 255, 0, 0.065);
    border-color: rgba(140, 255, 0, 0.35);
}

.dashboard-referral-discount > span {
    display: block;
    color: #8cff00;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.dashboard-referral-discount strong {
    display: block;
    margin-top: 6px;
    font-size: 13px;
}

.dashboard-referral-discount small {
    display: block;
    margin-top: 5px;
    color: #687168;
    font-size: 9px;
    line-height: 1.45;
}

/* Fix: Home-Logo darf die Navigation nicht blockieren */
.navbar {
    position: relative;
    z-index: 1000;
}

.logo-container,
.logo {
    pointer-events: none;
}

@media (max-width: 560px) {
    .dashboard-referral-heading {
        flex-direction: column;
    }

    .dashboard-referral-copy-row {
        grid-template-columns: 1fr;
    }

    .dashboard-referral-stats {
        grid-template-columns: 1fr;
    }
}

