@font-face {
    font-family: "Nunito";
    font-weight: 300;
    font-style: normal;
    /*src: url("/assets/fonts/Inter/woff2/Inter-300.woff2") format("woff2"),*/
    /*url("/assets/fonts/Inter/woff/Inter-300.woff") format("woff"),*/
    /*url("/assets/fonts/Inter/otf/Inter-300.otf") format("opentype"),*/
    /*url("/assets/fonts/Inter/ttf/Inter-300.ttf") format("truetype");*/
    src: url("/assets/fonts/Nunito/woff2/Nunito-Regular.woff2") format("woff2"),
    url("/assets/fonts/Nunito/woff/Nunito-Regular.woff") format("woff"),
    url("/assets/fonts/Nunito/otf/Nunito-Regular.otf") format("opentype"),
    url("/assets/fonts/Nunito/ttf/Nunito-Regular.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    font-weight: 400;
    font-style: normal;
    /*src: url("/assets/fonts/Inter/woff2/Inter-400.woff2") format("woff2"),*/
    /*url("/assets/fonts/Inter/woff/Inter-400.woff") format("woff"),*/
    /*url("/assets/fonts/Inter/otf/Inter-400.otf") format("opentype"),*/
    /*url("/assets/fonts/Inter/ttf/Inter-400.ttf") format("truetype");*/
    src: url("/assets/fonts/Nunito/woff2/Nunito-Medium.woff2") format("woff2"),
    url("/assets/fonts/Nunito/woff/Nunito-Medium.woff") format("woff"),
    url("/assets/fonts/Nunito/otf/Nunito-Medium.otf") format("opentype"),
    url("/assets/fonts/Nunito/ttf/Nunito-Medium.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    font-weight: 500;
    font-style: normal;
    /*src: url("/assets/fonts/Inter/woff2/Inter-500.woff2") format("woff2"),*/
    /*url("/assets/fonts/Inter/woff/Inter-500.woff") format("woff"),*/
    /*url("/assets/fonts/Inter/otf/Inter-500.otf") format("opentype"),*/
    /*url("/assets/fonts/Inter/ttf/Inter-500.ttf") format("truetype");*/
    src: url("/assets/fonts/Nunito/woff2/Nunito-Bold.woff2") format("woff2"),
    url("/assets/fonts/Nunito/woff/Nunito-Bold.woff") format("woff"),
    url("/assets/fonts/Nunito/otf/Nunito-Bold.otf") format("opentype"),
    url("/assets/fonts/Nunito/ttf/Nunito-Bold.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    font-weight: 600;
    font-style: normal;
    /*src: url("/assets/fonts/Inter/woff2/Inter-600.woff2") format("woff2"),*/
    /*url("/assets/fonts/Inter/woff/Inter-600.woff") format("woff"),*/
    /*url("/assets/fonts/Inter/otf/Inter-600.otf") format("opentype"),*/
    /*url("/assets/fonts/Inter/ttf/Inter-600.ttf") format("truetype");*/
    src: url("/assets/fonts/Nunito/woff2/Nunito-ExtraBold.woff2") format("woff2"),
    url("/assets/fonts/Nunito/woff/Nunito-ExtraBold.woff") format("woff"),
    url("/assets/fonts/Nunito/otf/Nunito-ExtraBold.otf") format("opentype"),
    url("/assets/fonts/Nunito/ttf/Nunito-ExtraBold.ttf") format("truetype");
    font-display: swap;
}

:root {
    --font-base: "Nunito", system-ui, arial, sans-serif;
    --font-size-base: 18px;

    /* Common Colors */
    --color-primary: #1986B4; /* 00b9bd, 008fd9 */
    --color-primary-hover: #0C4157; /* 189092, 0572ab */
    --color-link: #1986B4; /* 00b9bd, 008fd9 */

    --color-yellow: #ffcc00;

    /* Light Theme */
    --color-bg-light: #f9f9f9;
    --color-text-light: #222222;
    --color-surface-light: #f9f9f9; /* #e3e3e3 */
    --color-surface-in-light: #e9ecef;

    /* Dark Theme */
    --color-bg-dark: #0d1117;
    --color-text-dark: #f1f1f1;
    --color-surface-dark: #0d1117; /* #161b22 */
    --color-surface-in-dark: #141A24;
}

html {
    margin: 0;
    padding: 0;
    transition: background 0.3s ease, background-color 0.3s ease, background 0.3s ease, color 0.3s ease, fill 0.3s ease, stroke 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
body {
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    font-weight: 400;
    margin: 0;
    padding: 0;
    user-select: none;
    display: flex;
    flex-direction: column;
}
html, body {
    position: relative;
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
    overflow-x: hidden;
    cursor: default;
    overscroll-behavior-y: contain;
}
body.scroll-disabled {
    overflow: hidden;
    position: relative;
}
.hide {
    display: none !important;
}
a {
    color: var(--color-link);
    text-decoration: none !important;
    cursor: pointer;
}
a:hover {
    text-decoration: none !important;
    color: var(--color-primary-hover);
}

.page-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
}

.main-container {
    position: relative;
    flex-grow: 1;
    /*max-width: 900px;*/
    margin: 0 auto;
    width: 100%;
}

.main-wrapper {
    position: relative;
    padding: 1rem;
    padding-top: 80px;
}
.small-con {
    max-width: 900px;
    margin: 0 auto;
}
html.light {
    background: var(--color-bg-light);
    color: var(--color-text-light);

    --swiper-pagination-bullet-inactive-color: var(--color-bg-dark);
    --swiper-theme-color: var(--color-primary);
}

html.dark {
    background: var(--color-bg-dark);
    color: var(--color-text-dark);

    --swiper-pagination-bullet-inactive-color: var(--color-bg-light);
    --swiper-theme-color: var(--color-primary);
}

html.dark svg {
    fill: var(--color-text-dark);
}

html.light svg {
    fill: var(--color-text-light);
}
html.light a svg, html.dark a svg {
    fill: var(--color-link);
}

/* -------------------- GLOBAL STYLES -------------------- */
.demo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    color: var(--color-yellow);
    text-align: center;
    padding: 0.7em 75px 0.7em 60px;
    font-weight: bold;
    font-size: 0.85rem;
    height: 58px;

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

    overflow: hidden;
    z-index: 5;

    background: linear-gradient(
            to bottom,
            #0d1117 7%,
            rgba(0, 0, 0, 0) 90%
    );
}

.center {text-align: center;}
/* -------------------- BUTTONS -------------------- */
.btn {
    display: inline-block;
    font-family: var(--font-base);
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: #fff;
}

.btn-sm {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
}

.btn-md {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

.btn-lg {
    font-size: 1.25rem;
    padding: 1rem 2rem;
}

html.dark .btn {
    background-color: var(--color-primary);
    color: #ffffff;
    border: 2px solid var(--color-primary);
}
html.dark .btn:hover {
    background-color: var(--color-primary-hover);
}

html.light .btn {
    background-color: var(--color-primary);
    color: #ffffff;
}
html.light .btn:hover {
    background-color: var(--color-primary-hover);
}

html.light .btn-secondary {
    background-color: var(--color-surface-light);
    color: var(--color-text-light);
    border: 2px solid var(--color-primary);
}

html.dark .btn-secondary {
    background-color: var(--color-surface-dark);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

html.light .btn-secondary:hover {
    background-color: var(--color-surface-light);
}

html.dark .btn-secondary:hover {
    background-color: var(--color-surface-dark);
}

html.light .btn-danger {
    background-color: #dc3545;
    border: 2px solid #dc3545;
    color: #fff;
}

html.light .btn-danger:hover {
    background-color: #c82333;
    border: 2px solid #c82333;
    color: #fff;
}

html.dark .btn-danger {
    background-color: #e74c3c;
    border: 2px solid #e74c3c;
    color: #fff;
}

html.dark .btn-danger:hover {
    background-color: #c0392b;
    border: 2px solid #c0392b;
    color: #fff;
}

.btn:disabled,
.btn[disabled] {
    background-color: #aaa;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}

.t-muted {
    opacity: 0.6;
}

/* -------------------- HEADER -------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header .controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.header .controls-left,
.header .controls-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .logo img{
    height: auto;
    max-height: 38px;
    max-width: 50vw;
}

.header .back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    min-width: 47px;
    height: 47px;
    background: var(--color-surface-in-dark);
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    color: #ffffff;
}
.header .back-button:hover {
    background: var(--color-primary);
}

.header .back-button svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    stroke: #ffffff;
    transition: transform 0.2s ease;
}

html.light .header .back-button {
    background: var(--color-surface-in-light);
}
html.light .header .back-button svg {
    fill: var(--color-text-light);
    stroke: var(--color-text-light);
}

/* -------------------- SWITCH BUTTONS -------------------- */

.switch-container {
    background: var(--color-surface-dark);
    border-radius: 25px;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: background 0.3s ease;
    width: fit-content;
}

.language-switch {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.language-switch .lg-btn {
    margin: 0;
    padding: 8px;
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.language-switch .lg-btn.active {
    background: var(--color-primary);
}

.language-switch .toggle-btn,
.theme-switch .toggle-btn {
    position: relative;
    background: var(--color-surface-dark);
    border: none;
    border-radius: 25px;
    height: 37px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.theme-switch .toggle-btn {
    width: 78px;
}

.toggle-slider {
    position: absolute;
    top: 0px;
    left: 15px;
    width: 37px;
    height: 37px;
    background: var(--color-primary);
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: 1;
}

html.light .toggle-slider {
    transform: translateX(-14px);
}

html.dark .toggle-slider {
    transform: translateX(25px);
}

.theme-switch .icons {
    position: relative;
    display: flex;
    gap: 1.20rem;
    z-index: 99;
}

.theme-switch svg {
    width: 20px;
    height: 20px;
    fill: #f9f9f9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.3;
}

.theme-switch svg:first-child {
    opacity: 1;
    transform: scale(0.9);
    fill: #ffffff;
}

html.light .switch-container,
html.light .toggle-btn {
    background: var(--color-surface-light);
}
html.light .lg-btn:not(.active) {
    color: var(--color-text-light);
}

html.light .theme-switch svg:first-child {
    opacity: 1;
    transform: scale(1.1);
}

html.light .theme-switch svg:last-child {
    opacity: 1;
    transform: scale(0.9);
    fill: var(--color-text-light);
}

html.dark .theme-switch svg:last-child {
    opacity: 1;
    transform: scale(1.1);
}


/* -------------------- QUESTION / TYPES -------------------- */


.qt-btn {
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s ease-in-out;
    background-color: #ddd;
    color: #222;
    min-width: 150px;
}

html.dark .qt-btn {
    background-color: var(--color-surface-dark);
    color: var(--color-text-dark);
}

.qt-btn:hover {
    transform: scale(1.05);
}

.question-card {
    margin: 2rem auto;
    padding: 2rem;
    font-size: 1.5rem;
    background: var(--color-surface-light);
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
}

html.dark .question-card {
    background: var(--color-surface-dark);
    color: var(--color-text-dark);
}

.view-counter {
}

.icon-text {
    display: flex;
    align-items: center; /* 🧡 vertical alignment */
    gap: 0.5rem;          /* optional spacing */
}
.icon-text svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.fade-in {
    animation: fadeIn 1.2s ease-in-out;
}

.question-title {
    margin-bottom: 0;
    font-weight: 600;
}
.question-type {
    margin-top: 0.25rem;
    font-weight: 600;
}

.share-btn {
    padding: 1rem 2rem;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .qt-btn {
        width: 100%;
        font-size: 1.1rem;
    }
}


/* -------------------- QR SCAN -------------------- */

#qr-reader {
    width: 300px;
    margin: 15px auto;
    overflow:hidden;
    border-radius:40px;
}






/* -------------------- BOTTOM SHEET -------------------- */
.bottom-sheet-overlay {
    position: fixed;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.8) 0%,         /* unten leicht dunkel */
            transparent calc(100% - 50px), /* fast ganz oben komplett transparent */
            transparent 100%              /* letzte 5px komplett durchsichtig */
    );
    z-index: 9998;
}
/*.bottom-sheet-overlay::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: rgba(0, 0, 0, 0.4);*/
/*    border-top: 5px solid #ffffff;*/
/*    transition: opacity 0.3s ease;*/
/*}*/

@media (pointer: fine) {
    .bottom-sheet-overlay {
        background: rgba(0, 0, 0, 0.4);
    }
}
.bottom-sheet-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}
.bottom-sheet-overlay.visible .bottom-sheet {
    bottom: 0;
}
.bottom-sheet-overlay .bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 80vh;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    transition: bottom 0.3s ease, transform 0.3s ease;
    z-index: 9999;
}
.bottom-sheet-overlay .bottom-sheet .sheet-header {
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    user-select: none;
}
.bottom-sheet-overlay .bottom-sheet .sheet-header .sheet-drag-indicator {
    width: 60px;
    height: 6px;
    background-color: var(--color-surface-in-light);
    border-radius: 3px;
    margin-bottom: 20px;
}

.bottom-sheet-overlay .bottom-sheet .sheet-content-inner {
    position: relative;
    padding: 0 20px 20px;
    overflow-y: auto;
    max-height: calc(80vh - 80px);
}
.bottom-sheet-overlay .bottom-sheet .sheet-content {
    padding: 1rem;
    overflow-y: auto;
    height: calc(100% - 60px);
}
/*html.dark .bottom-sheet-overlay {*/
/*    border-top: 5px solid var(--color-bg-dark);*/
/*}*/
/*html.light .bottom-sheet-overlay {*/
/*    border-top: 5px solid var(--color-bg-light);*/
/*}*/

html.dark .bottom-sheet {
    background: var(--color-surface-dark);
}
html.light .bottom-sheet {
    background: var(--color-surface-light);
}

html.dark .bottom-sheet-overlay .bottom-sheet .sheet-header .sheet-drag-indicator {
    background-color: var(--color-surface-in-dark);
}

/* -------------------- LIST GROUP -------------------- */

/*.list-group {*/
/*    border-radius: 12px;*/
/*    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;*/
/*    overflow: hidden;*/
/*}*/

/*.list-group-title {*/
/*    padding: 14px 16px;*/
/*    font-size: 13px;*/
/*    font-weight: 600;*/
/*    color: #888;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.5px;*/
/*}*/

/*.list-item {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    padding: 12px 16px;*/
/*    font-size: 16px;*/
/*}*/

/*.list-item:first-of-type {*/
/*    border-top: none;*/
/*}*/

/*.list-item a {*/
/*    color: inherit;*/
/*    text-decoration: none;*/
/*    display: block;*/
/*    width: 100%;*/
/*}*/


/*html.light .list-group {*/
/*    background: var(--color-bg-light);*/
/*}*/
/*html.dark .list-group {*/
/*    background: var(--color-bg-dark);*/
/*}*/

/*html.light .list-item {*/
/*    border-top: 1px solid var(--color-surface-light);*/
/*}*/
/*html.dark .list-item {*/
/*    border-top: 1px solid var(--color-surface-dark);*/
/*}*/

/*html.light .list-group.no-style, html.dark .list-group.no-style {*/
/*    background: none !Important;*/
/*}*/

/*html.light .list-group.no-style .list-item, html.dark .list-group.no-style .list-item {*/
/*    border-top: none !Important;*/
/*}*/

.list-group {
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow: hidden;
}

.list-group-title {
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}
html.dark .list-group-title {
    color: var(--color-text-dark);
}

/* Volle Linie bei .list-group-title */
html.light .list-group-title {
    border-bottom: 1px solid var(--color-surface-light);
}
html.dark .list-group-title {
    border-bottom: 1px solid var(--color-surface-dark);
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    font-size: 16px;
    position: relative;
}

/* Kürzere Border unten, zentriert */
.list-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 90%;
    width: calc(100% - 32px); /* 16px padding on each side */
    transform: translateX(-50%);
    height: 1px;
}

html.light .list-item::after {
    background-color: var(--color-surface-light);
}
html.dark .list-item::after {
    background-color: var(--color-surface-dark);
}

/* Letztes Element ohne Border */
.list-item:last-of-type::after {
    display: none;
}

.list-item a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
}

/* Hintergrundfarben */
html.light .list-group {
    background: var(--color-surface-in-light);
}
html.dark .list-group {
    background: var(--color-surface-in-dark);
}

/* no-style Variante */
html.light .list-group.no-style,
html.dark .list-group.no-style {
    background: none !important;
}

html.light .list-group.no-style .list-item::after,
html.dark .list-group.no-style .list-item::after {
    display: none !important;
}

/* -------------------- EXPLORE PAGE -------------------- */
.explorer-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100% !important;
    right: 0;
    bottom: 0;
}

.explorer-page #explorer-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100% !important;
    right: 0;
    bottom: 0;
    cursor: grabbing;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}
.explorer-page #explorer-swiper.visible {
    opacity: 1;
    visibility: visible;
}

.explorer-page #explorer-swiper .swiper-slide .explorer-content {
    position: relative;
    padding: 0px 20px;
    top: 390px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 0px;
}

.explorer-page #explorer-swiper .swiper-slide .explorer-content h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0px;
    line-height: 1.12;
}

.explorer-page #explorer-swiper .swiper-slide .explorer-footer {
    position: absolute;
    bottom: 0;
    padding-bottom: 30px;
    left: 20px;
    right: 20px;

    /* table-like two columns */
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto; /* left grows, right fits */
    align-items: center;
    column-gap: 12px;
}

.explorer-page #explorer-swiper .swiper-slide .explorer-footer p {
    /* remove default p spacing */
    margin: 0;
}

.explorer-page #explorer-swiper .swiper-slide .explorer-footer .left {
    /* allow ellipsis on long text */
    min-width: 0;                 /* critical for overflow in grid/flex */
}

.explorer-page #explorer-swiper .swiper-slide .explorer-footer .left strong {
    display: block;               /* enable ellipsis on the block */
    overflow: hidden;
    text-overflow: ellipsis;
}

.explorer-page #explorer-swiper .swiper-slide .explorer-footer .right {
    /* keep the counter together on one line */
    white-space: nowrap;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.explorer-page #explorer-swiper .swiper-slide .explorer-footer .right svg {
    /* align icon nicely with text */
    display: inline-block;
    vertical-align: middle;
}

@media (min-width: 900px) {
    .explorer-page #explorer-swiper {
    }
}


:root {
    --base: 0.6rem;
}

.scroll-down {
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    position: fixed;
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%);
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
}

.chevron {
    position: absolute;
    width: calc(var(--base) * 3.5);
    height: calc(var(--base) * 0.8);
    opacity: 0;
    transform: scale(0.3);
    animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
    animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
    animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: white;
}

.chevron:before {
    left: 0.25px;
    transform: skewY(30deg);
}

.chevron:after {
    right: 0.25px;
    width: 50%;
    transform: skewY(-30deg);
}


@keyframes move-chevron {
    25% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
        transform: translateY(calc(var(--base) * 3.8));
    }
    66.6% {
        opacity: 1;
        transform: translateY(calc(var(--base) * 5.2));
    }
    100% {
        opacity: 0;
        transform: translateY(calc(var(--base) * 8)) scale(0.5);
    }
}

@keyframes fadeOutAfter5s {
    0% {
        opacity: 1;
        visibility: visible;
    }
    80% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}



.countdown {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(6px);
}

.countdown .countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown .countdown__value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    padding: 0.4rem 0;
    border-radius: 0.75rem;
    box-shadow: 0 12px 25px rgba(255,255,255, 0.025);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}
.dark .countdown .countdown__value {
    background: var(--color-surface-in-dark);
}
.light .countdown .countdown__value {
    background: var(--color-surface-in-light);
}

.countdown .countdown__label {
    margin-top: 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-dark);
}

.countdown .countdown__separator {
    align-self: self-start;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 6px 0.1rem;
}

@media (max-width: 330px) {
    .countdown {
        gap: 0.35rem;
        padding: 1rem 1.5rem;
    }

    .countdown .countdown__unit {
        min-width: 48px;
    }
    .countdown .countdown__separator {
        margin: 3px 0.1rem;
    }
    .countdown .countdown__value {
        width: 48px;
        font-size: 1.3rem;
    }
}

















.green.circle-container {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
    background: none;
    overflow: hidden;
    z-index: -1;
}
.green.circle-container::before {
    content: "";
    position: absolute;
    height: 350px;
    inset: 0;
    background: linear-gradient(
            to bottom,
            #0d1117 7%,
            rgba(0, 0, 0, 0) 70%
    );
    pointer-events: none;
    z-index: 3;
}
.green.circle-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at center 200px,
            rgba(0, 255, 128, 0.08) 0%,
            rgba(0, 255, 128, 0.04) 40%,
            rgba(13, 17, 23, 0) 60%
    );
    pointer-events: none;
    z-index: -1;
}
.green.circle-container.full-screen .fullscreen-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content:'';
    z-index: 3;
    background: linear-gradient( to top, #0d1117 10%, rgba(0, 0, 0, 0) 90% );
}

.green.circle-container .circle-wrapper {
    position: absolute;
    left: 50%;
    top: -70px;
    transform: translate(-50%, -10%);
    width: min(160%, 500px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(
            to top,
            rgba(0, 215, 63, 0.35) 0%,
            rgba(0, 215, 63, 0.15) 20%,
            rgba(13, 17, 23, 0.4) 50%
    );
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    z-index: 2;
}
.green.circle-container .circle-wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(
            circle at 65% bottom,
            rgba(0, 255, 128, 0.25) 0%,   /* helles Grün in der Mitte unten */
            rgba(0, 255, 128, 0.10) 20%,  /* sanftes Auslaufen */
            rgba(13, 17, 23, 0.0) 50%      /* komplett transparent */
    );
    pointer-events: none;
    z-index: 1;
}
.green.circle-container .circle-wrapper::after {
    content: "";
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(
            ellipse at center,
            rgba(0, 255, 128, 0.15) 0%,   /* helles Grün innen */
            rgba(0, 255, 128, 0.08) 20%,  /* weicher Übergang */
            rgba(0, 255, 128, 0) 60%      /* nach außen komplett transparent */
    );
    pointer-events: none;
}


.green.circle-container .circle-wrapper .circle-inner {
    position: absolute;
    width: 65%;
    height: 65%;
    border-radius: 50%;
    background: linear-gradient(
            to top,
            rgba(0, 215, 63, 0.35) 0%,
            rgba(0, 215, 63, 0.15) 20%,
            rgba(13, 17, 23, 0.4) 50%,
            rgba(13, 17, 23, 0) 90%
    );
}
.green.circle-container .circle-wrapper .circle-inner::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(
            circle at 65% bottom,
            rgba(0, 255, 128, 0.25) 0%,   /* helles Grün in der Mitte unten */
            rgba(0, 255, 128, 0.10) 25%,  /* sanftes Auslaufen */
            rgba( 	13, 17, 23, 0) 50%    /* komplett transparent */
    );
    pointer-events: none;
    z-index: 1;
}

.green.circle-container .circle-wrapper .circle-inner .circle-image {
    position: absolute;
    inset: 25%;
    background-image: url('/assets/images/explorers/green/face_lamp.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; /* skaliert das Bild proportional */
    pointer-events: none; /* verhindert Interaktionen */
    z-index: 5; /* über allen Gradients */
}

