* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    color: #e0e0e0;
    margin: 0;
    background: #000000;
}

:root {
    --clr-accent: #00FF00;
    --clr-accent-alpha: rgba(0, 255, 0, 0.6);
}

@layer landing-page {
    @property --_rotation {
        syntax: "<angle>";
        inherits: false;
        initial-value: 0deg;
    }

    @property --_translate-x {
        syntax: "<length-percentage>";
        inherits: false;
        initial-value: 0;
    }

    @property --_translate-y {
        syntax: "<length-percentage>";
        inherits: false;
        initial-value: 0;
    }

    .area {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
        overflow: hidden;
        background: linear-gradient(188deg, rgba(0,0,0,0) 0%, #121212 100%);
    }

    .circles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .circles li {
        position: absolute;
        display: block;
        list-style: none;
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
        animation: animate 25s linear infinite;
        bottom: -150px;
    }

    .circles li:nth-child(1) {
        left: 25%;
        width: 80px;
        height: 80px;
        animation-delay: 0s;
    }

    .circles li:nth-child(2) {
        left: 10%;
        width: 20px;
        height: 20px;
        animation-delay: 2s;
        animation-duration: 12s;
    }

    .circles li:nth-child(3) {
        left: 70%;
        width: 20px;
        height: 20px;
        animation-delay: 4s;
    }

    .circles li:nth-child(4) {
        left: 40%;
        width: 60px;
        height: 60px;
        animation-delay: 0s;
        animation-duration: 18s;
    }

    .circles li:nth-child(5) {
        left: 65%;
        width: 20px;
        height: 20px;
        animation-delay: 0s;
    }

    .circles li:nth-child(6) {
        left: 75%;
        width: 110px;
        height: 110px;
        animation-delay: 3s;
    }

    .circles li:nth-child(7) {
        left: 35%;
        width: 150px;
        height: 150px;
        animation-delay: 7s;
    }

    .circles li:nth-child(8) {
        left: 50%;
        width: 25px;
        height: 25px;
        animation-delay: 15s;
        animation-duration: 45s;
    }

    .circles li:nth-child(9) {
        left: 20%;
        width: 15px;
        height: 15px;
        animation-delay: 2s;
        animation-duration: 35s;
    }

    .circles li:nth-child(10) {
        left: 85%;
        width: 150px;
        height: 150px;
        animation-delay: 0s;
        animation-duration: 11s;
    }

    @keyframes animate {
        0% {
            transform: translateY(0) rotate(0deg);
            opacity: 1;
            border-radius: 0;
        }
        100% {
            transform: translateY(-1000px) rotate(720deg);
            opacity: 0;
            border-radius: 50%;
        }
    }

    .signs-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        place-content: center;
        grid-template-areas: "child";
        position: absolute;
        width: 525px;
        height: 525px;
    }

    .signs-list:has(.signs-item:hover) .signs-item {
        animation-play-state: paused;
    }

    .signs-list-left {
        left: -360.5px;
        top: 50px;
        z-index: 1;
    }

    .signs-list-right {
        right: -262.5px;
        top: 50px;
        z-index: 1;
    }

    .signs-item {
        --_circle-size: 105px;
        --_offset: 262.5px;
        --_degrees: 0deg;
        --_rotation: 0deg;
        --_translate-x: calc(cos(var(--_degrees)) * var(--_offset));
        --_translate-y: calc(sin(var(--_degrees)) * var(--_offset));
        grid-area: child;
        aspect-ratio: 1;
        width: var(--_circle-size);
        height: var(--_circle-size);
        border-radius: 50%;
        display: grid;
        place-content: center;
        position: absolute;
        background-color: transparent;
        outline: 2px solid var(--clr-accent-alpha);
        transition: all 500ms;
        transform: rotate(var(--_rotation))
            translate(var(--_translate-x), var(--_translate-y))
            rotate(calc(-1 * var(--_rotation)));
        animation: rotate-item 40s linear infinite;
        cursor: pointer;
    }

    .signs-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid var(--clr-accent);
    }

    @keyframes rotate-item {
        from {
            --_rotation: 0deg;
        }
        to {
            --_rotation: 360deg;
        }
    }

    @media (max-width: 768px) {
        .area {
            height: 400px;
        }

        .signs-list-left,
        .signs-list-right {
            width: 350px;
            height: 350px;
            top: 100px;
            display: none;
        }

        .signs-list-left {
            left: -175px;
        }

        .signs-list-right {
            right: -175px;
        }

        .signs-item {
            --_circle-size: 70px;
            --_offset: 175px;
        }
    }

    @media (max-width: 480px) {
        .area {
            height: 300px;
        }

        .signs-list-left,
        .signs-list-right {
            width: 262.5px;
            height: 262.5px;
            top: 20px;
            display: none;
        }

        .signs-list-left {
            left: -150.25px;
        }

        .signs-list-right {
            right: -131.25px;
        }

        .signs-item {
            --_circle-size: 52.5px;
            --_offset: 131.25px;
        }
    }
}

.header {
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    background-color: #121212
}


.main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #121212;
    position: relative;
    max-width: 100%; /* Begrenzt die Breite des Containers */
    overflow-x: hidden; /* Verhindert horizontales Scrollen im main-content */
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.social-link {
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #00FF00;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #00FF00;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 1000;
    transform: translateY(-50%);
}

.stats-bar {
    position: relative;
    z-index: 1000;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 0 10px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #00FF00;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #b0b0b0;
    font-family: 'Orbitron', sans-serif;
}

.wallet-notice {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    padding: 15px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
}

.wallet-notice p {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
}

.wallet-notice a {
    color: #00FF00;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.wallet-notice a:hover {
    color: #ffffff;
}

.youtube-section {
    background: #141414;
    width: 100%;
    padding: 40px 0;
    text-align: center;
    z-index: 5;
    margin-top: 20px;
}

.youtube-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(30, 30, 30, 0), rgb(30, 30, 30));
    z-index: 4;
    pointer-events: none;
}

.youtube-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.youtube-video {
    flex: 1;
    margin: 0 10px;
}

.youtube-video iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.partner-section {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    z-index: 5;
    margin-top: 20px;
}

.partner-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
    align-items: center;
}

.partner-image {
    width: 100%;
    max-width: 240px;
    max-height: 100px;
    min-height: 100px;
    object-fit: contain;
}

.recommendation-bar {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1800px;
    margin: 20px auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.recommendation-box {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(149deg, rgb(36, 49, 47) 0%, rgba(30, 30, 30, 1) 53%);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.recommendation-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.recommendation-box h3 {
    font-size: 16px;
    color: #00FF00;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.recommendation-box .token-item {
    margin: 0;
    padding: 10px;
    background: none;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.recommendation-box .token-image-column {
    flex: 0 0 auto;
}

.recommendation-box .token-info-column {
    flex: 1;
    text-align: left;
}

.recommendation-box .token-name {
    font-size: 14px;
}

.recommendation-box .token-symbol {
    font-size: 10px;
    margin-left: 5px;
}

.recommendation-box .token-details {
    font-size: 11px;
}

.token-section {
    width: 100%;
    background-color: #0c0c0c;
    padding: 50px 0;
    z-index: 4;
    margin-top: 20px;
}

.token-lists-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.token-list-wrapper,
.kol-transactions-wrapper {
    flex: 1;
    min-width: 300px;
}

.token-list-wrapper h2,
.kol-transactions-wrapper h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #00FF00;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

#tokenList,
#topRoiList,
#kolTransactionsList {
    max-height: 500px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#tokenList::-webkit-scrollbar,
#topRoiList::-webkit-scrollbar,
#kolTransactionsList::-webkit-scrollbar {
    display: none;
}

.token-item,
.kol-transaction-item {
    display: flex;
    align-items: center;
    background: linear-gradient(149deg, rgb(36, 49, 47) 0%, rgba(30, 30, 30, 1) 53%);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.token-item:hover,
.kol-transaction-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.token-columns,
.kol-transaction-columns {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.token-image-column,
.kol-image-column {
    flex: 0 0 auto;
}

.token-image,
.kol-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
}

.token-image-placeholder,
.kol-image-placeholder {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
}

.token-info-column,
.kol-info-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.token-name,
.kol-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.token-symbol,
.kol-type {
    font-size: 11px;
    color: #00FF00;
    margin-left: 5px;
    font-family: 'Inter', sans-serif;
}

.kol-type.buy-text {
    color: #00b300;
    font-weight: bold;
}

.kol-type.sell-text {
    color: #ff3333;
    font-weight: bold;
}

.kol-type.swap-text {
    color: #a855f7;
    font-weight: bold;
}

.token-details,
.kol-details {
    display: inline-flex;
    gap: 10px;
    font-size: 12px;
    color: #b0b0b0;
    font-family: 'Inter', sans-serif;
}

.market-cap span,
.dev-bought span,
.kol-details span {
    color: #00FF00;
}

.token-link-column,
.kol-link-column {
    flex: 0 0 auto;
}

.dex-button-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px;
    background: rgba(50, 50, 50, 0.5);
    border-radius: 0 0 8px 8px;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.dex-button {
    padding: 4px 6px;
    background: linear-gradient(149deg, rgb(36, 49, 47) 0%, rgba(30, 30, 30, 1) 53%);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.dex-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 6px rgba(0, 179, 0, 0.9);
}

.view-button {
    padding: 12px 20px;
    background: linear-gradient(149deg, #00b300, #008000);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 179, 0, 0.7);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.view-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 179, 0, 0.9);
}

.kol-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.kol-count i {
    color: #00FF00;
}

.footer {
    background: linear-gradient(149deg, rgb(36, 49, 47) 0%, rgba(30, 30, 30, 1) 53%);
    width: 100%;
    padding: 40px 0;
    text-align: left;
    z-index: 5;
    margin-top: 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    font-size: 12px;
}

.footer-logo-column {
    flex: 0 0 300px;
    text-align: center;
    position: relative;
}

.footer-logo-column::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #333333;
    opacity: 0.5;
}

.footer-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social-icon {
    color: #ffffff;
    font-size: 30px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-icon:hover {
    color: #00FF00;
    transform: scale(1.1);
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.footer-social-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h3 {
    font-size: 15px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column h3 i {
    font-size: 16px;
    color: #00FF00;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column a:hover {
    color: #00FF00;
    transform: scale(1.05);
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.action-bar {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0turn;
    inherits: false;
}

.action-box {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(149deg, rgb(36, 49, 47) 0%, rgba(30, 30, 30, 1) 53%);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    background-image: linear-gradient(149deg, rgb(36, 49, 47) 0%, rgba(30, 30, 30, 1) 53%),
        conic-gradient(
            from var(--gradient-angle),
            #00FF00 0%,
            #00FF00 10%,
            transparent 15%,
            transparent 85%,
            #00FF00 90%,
            #00FF00 100%
        );
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    animation: gradient-angle 3s linear infinite;
}

.action-box:hover {
    transform: scale(1.05);
}

@keyframes gradient-angle {
    to {
        --gradient-angle: 1turn;
    }
}

.action-icon {
    font-size: 30px;
    color: #00FF00;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.action-box h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.action-box p {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.action-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(149deg, #00b300, #008000);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 179, 0, 0.7);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.action-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 179, 0, 0.9);
}

.widget-section {
    width: 100%;
    background: #000000ff; /* Schwarzer Hintergrund für den gesamten Abschnitt */
    position: relative;
    z-index: 0;
    padding: 80px 0;
}

.widget-section::before,
.widget-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    background: #121212;
    z-index: 1;
}

.widget-section::before {
    top: -49px;
    transform: skewY(3deg);
}

.widget-section::after {
    bottom: -49px;
    transform: skewY(-3deg);
}

.widget-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.widget-content {
    flex: 1;
    max-width: 500px;
    color: #e0e0e0;
}

.widget-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
}

.widget-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.widget-carousel {
    flex: 1;
    max-width: 600px; /* Gleiche Breite wie Höhe */
}

.widget-carousel iframe {
    width: 600px; /* Feste Breite */
    height: 600px; /* Feste Höhe, gleich wie Breite */
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .widget-container {
        flex-direction: column;
        gap: 20px;
    }

    .widget-content,
    .widget-carousel {
        max-width: 100%;
    }

    .widget-content h2 {
        font-size: 24px;
    }

    .widget-content p {
        font-size: 16px;
    }

    .widget-carousel iframe {
        width: 480px;
        height: 480px; /* Angepasste Größe für kleinere Bildschirme */
    }
}

@media (max-width: 480px) {
    .widget-section {
        padding: 80px 0;
    }

    .widget-content h2 {
        font-size: 20px;
    }

    .widget-content p {
        font-size: 14px;
    }

    .widget-carousel iframe {
        width: 480px;
        height: 480px; /* Angepasste Größe für kleinere Bildschirme */
    }
}

@media (max-width: 768px) {
    .partner-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 15px;
    }

    .partner-image {
        max-width: 150px;
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .partner-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, auto);
        gap: 10px;
    }

    .partner-image {
        max-width: 120px;
        max-height: 60px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .navbar {
        position: fixed;
        top: 0;
        height: 70px;
        width: 100%;
        padding: 10px;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .header {
        padding-top: 60px;
        height: 300px;
    }

    .social-links {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
    }

    .social-link {
        font-size: 30px;
    }

    .hamburger {
        display: block !important;
        font-size: 35px;
        color: #ffffff;
        padding: 10px;
        z-index: 1001;
        position: absolute;
        right: 20px;
        top: 50%;
        z-index: 1000;
        transform: translateY(-50%);
    }

    .nav-links {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
        z-index: 1000;
        transition: transform 0.3s ease;
        transform: translateY(-100%);
    }

    .nav-links.active {
        display: flex !important;
        transform: translateY(0);
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links li a {
        font-size: 24px;
        text-align: center;
        padding: 10px;
        width: 100%;
        transition: color 0.3s ease, transform 0.2s ease;
    }

    .nav-links li a:hover {
        color: #00FF00;
        transform: scale(1.1);
    }

    .info-section h1 {
        font-size: clamp(21px, 5vw, 31px);
        padding: 0 10px;
    }

    .stats-bar {
        max-width: 100%;
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }

    .stat-item {
        padding: 5px 0;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 12px;
    }

    .wallet-notice {
        max-width: 100%;
        padding: 10px;
    }

    .wallet-notice p {
        font-size: 14px;
    }

    .youtube-container {
        flex-direction: column;
        max-width: 100%;
    }

    .youtube-video {
        margin: 10px 0;
    }

    .youtube-video iframe {
        height: 180px;
    }

    .partner-container {
        flex-direction: column;
        max-width: 100%;
    }

    .partner-image {
        height: 80px;
        margin: 10px 0;
        max-width: 300px;
    }

    .recommendation-bar {
        max-width: 100%;
        flex-direction: column;
        padding: 0 10px;
    }

    .recommendation-box {
        min-width: 100%;
    }

    .token-lists-container {
        max-width: 100%;
        flex-direction: column;
        padding: 0 10px;
    }

    .token-list-wrapper {
        display: none;
    }

    .kol-transactions-wrapper {
        min-width: 100%;
        max-width: 100%;
    }

    .token-item,
    .kol-transaction-item {
        padding: 10px;
        margin: 8px 0;
    }

    .token-columns,
    .kol-transaction-columns {
        flex-direction: row;
        gap: 10px;
        text-align: left;
    }

    .token-name,
    .kol-name {
        font-size: 14px;
    }

    .token-symbol,
    .kol-type {
        font-size: 10px;
    }

    .view-button {
        font-size: 12px;
        padding: 10px 15px;
    }

    .token-details,
    .kol-details {
        flex-direction: row;
        gap: 10px;
        text-align: left;
    }

    .token-image,
    .kol-image {
        width: 32px;
        height: 32px;
    }

    .footer-container {
        flex-direction: column;
        max-width: 100%;
        padding: 0 10px;
        justify-content: center;
        align-items: center;
    }

    .footer-column {
        min-width: 100%;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo-column {
        flex: 1;
        min-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        max-width: 200px;
    }

    .footer-logo-column::after {
        display: none;
    }

    .footer-social-icons {
        gap: 20px;
        display: flex;
        justify-content: center;
    }

    .footer-social-icon {
        font-size: 30px;
    }

    .footer-social-column {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column h3 {
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-column h3 i {
        font-size: 14px;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .footer-column li {
        margin-bottom: 10px;
        width: 100%;
    }

    .footer-column a {
        display: inline-block;
        text-align: center;
    }

    .action-bar {
        max-width: 100%;
        flex-direction: column;
        padding: 0 10px;
        z-index: 0;
    }

    .action-box {
        min-width: 100%;
    }

    .partner-section {
        width: 100%;
        padding: 20px 0;
        overflow: hidden;
        position: relative;
        display: block;
    }

    .partner-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        width: max-content !important;
        animation: slide-mobile 100s linear infinite;
        padding: 0;
        margin: 0;
    }

    .partner-section:hover .partner-container {
        animation-play-state: paused;
    }

    .partner-image {
        width: 200vw;
        height: 200px;
        min-width: 20vw;
        max-width: 50vw;
        margin: 0;
        box-sizing: border-box;
        object-fit: contain;
        flex: none;
        display: inline-block;
        min-height: 100px;
    }

    .signs-list-left,
    .signs-list-right {
        width: 150px;
        height: 150px;
        top: 100px;
        display: none;
    }

    .signs-item {
        --_circle-size: 40px;
    }
}

@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .nav-links {
        /* Wichtig: !important hier nur wenn wirklich nötig */
        position: fixed;
        inset: 70px 0 0 0;           /* unter der Navbar */
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li a {
        font-size: 1.6rem;
        padding: 0.8rem 2rem;
        width: 100%;
        text-align: center;
    }

    /* Social-Links können bleiben oder auch ins Menü wandern */
    .social-links {
        position: static;
        margin-top: 3rem;
        gap: 2.5rem;
        font-size: 2.2rem;
    }

    /* Optional: Hamburger zu X umwandeln */
    .hamburger.active::before {
        content: "×";
        font-size: 2.8rem;
        line-height: 1;
    }
}

@media (max-width: 480px) {
    .hamburger {
        font-size: 30px;
        padding: 8px;
        z-index: 1000;
    }

    .nav-links li a {
        font-size: 20px;
    }

    .social-link {
        font-size: 26px;
    }

    .footer-container {
        flex-direction: column;
        max-width: 100%;
        padding: 0 10px;
        justify-content: center;
        align-items: center;
    }

    .footer-column {
        min-width: 100%;
        margin-bottom: 20px;
        justify-content: center;
        align-items: center;
    }

    .footer-column h3 {
        font-size: 18px;
        justify-content: center;
        align-items: center;
    }

    .footer-column a {
        justify-content: center;
        align-items: center;
    }

    .partner-image {
        height: 60px;
    }
}
/*
vars
*/
:root {
		--carousel-transition-duration: 250ms;
		--carousel-transition-ease: ease-out;
		--carousel-bg-color-rgb: 0, 0, 0;
		--carousel-shadow-color-rgb: 128, 128, 128;
		--carousel-item-width: 11.5rem;
		--carousel-item-height: 17.5rem;
		--carousel-item-hover-effect: 1.075;
		--carousel-item-reflection-blur: 0.25rem;
		--carousel-item-empty-color-rgb: 255, 255, 255;
		--carousel-item-glow-color-rgb: 255, 255, 255;
		--carousel-item-glow-size: 5rem;
		--carousel-diameter: 50rem;
		--carousel-3d-perspective: 1000px;
		--carousel-3d-perspective-origin: 50% 20%;
		--carousel-control-button-width: 1.25rem;
		--carousel-control-button-height: 4rem;
		--carousel-control-color-rgb: 255, 255, 255;
		--carousel-animation-duration: 25s;
		--carousel-animation-play-state: running;
		--carousel-direction-animation-play-state: paused;
}

.carousel {
		--_diameter: var(--carousel-diameter);
		--_radius: calc(var(--_diameter) / 2);
		--_item-width: var(--carousel-item-width);
		--_item-height: var(--carousel-item-height);
		perspective: var(--carousel-3d-perspective);
		perspective-origin: var(--carousel-3d-perspective-origin);
		width: var(--_diameter);
		height: var(--_diameter);
        z-index: 10;
        height: 650px;
            max-width: 100%; /* Verhindert Überschreiten der Viewport-Breite *//
    z-index: 10;
    pointer-events: none; /* Verhindert Klicks auf das Karussell */
    position: relative;
    margin-left: auto;
    margin-right: auto; /* Zentriert das Karussell */
}

.carousel .carousel-control-button {
		--_width: var(--carousel-control-button-width);
		--_height: var(--carousel-control-button-height);
		z-index: 1;
		width: var(--_width);
		height: var(--_height);
		background-color: rgb(var(--carousel-control-color-rgb));
		opacity: 0.2;
		transition: opacity var(--carousel-transition-duration) var(--carousel-transition-ease);
		position: absolute;
}
.carousel .carousel-control-button:hover {
		opacity: 0.4;
}
.carousel .carousel-control-button:has(input:checked) {
		opacity: 0.8;
}

.carousel .carousel-control-button input {
		-webkit-appearance: none;
		appearance: none;
		opacity: 0;
		width: 100%;
		height: 100%;
		cursor: pointer;
}

.carousel .carousel-control-button.left {
		clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
		top: calc(var(--_radius) - var(--_height) / 2);
		left: 0;
}
.carousel:has(.carousel-control-button.left input:checked) {
		--carousel-direction-animation-play-state: running;
}

.carousel .carousel-control-button.right {
		clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
		top: calc(var(--_radius) - var(--_height) / 2);
		right: 0;
}
.carousel:has(.carousel-control-button.right input:checked) {
		--carousel-direction-animation-play-state: paused;
}

.carousel .carousel-rotation-direction {
		--_direction-animation-play-state: var(--carousel-direction-animation-play-state);
		--_z: calc(var(--_radius) * -1);
		transform: translateZ(var(--_z));
		transform-style: preserve-3d;
		animation: carousel-rotation-reverse calc(var(--carousel-animation-duration) / 2) reverse linear infinite var(--_direction-animation-play-state);
		transition: all var(--carousel-transition-duration) var(--carousel-transition-ease);
}

@keyframes carousel-rotation-reverse {
		from {transform: translateZ(var(--_z)) rotateY(0deg);}
		to {transform: translateZ(var(--_z)) rotateY(360deg);}
}

@keyframes carousel-rotation-normal {
		from {transform: rotateY(0deg);}
		to {transform: rotateY(360deg);}
}

.carousel .carousel-item-wrapper {
		transform-style: inherit;
		width: inherit;
		height: inherit;
		list-style-type: none;
		position: relative;
		animation: carousel-rotation-normal var(--carousel-animation-duration) normal linear infinite var(--carousel-animation-play-state);
		transition: all var(--carousel-transition-duration) var(--carousel-transition-ease);
}

.carousel .carousel-rotation-direction:has(.carousel-item:hover) {
		--carousel-animation-play-state: paused;
		--_direction-animation-play-state: paused;
}

.carousel .carousel-item {
		--_width: var(--_item-width);
		--_height: var(--_item-height);
		--_rotation: calc(360 / var(--_num-elements) * var(--_index) * 1deg);
		left: calc(var(--_radius) - var(--_item-width) / 2);
		top: calc(var(--_radius) - var(--_item-height) / 2);
		transform: rotateY(var(--_rotation)) translateZ(var(--_radius));
		transform-style: inherit;
		width: var(--_width);
		height: var(--_height);
		transition: all var(--carousel-transition-duration) var(--carousel-transition-ease);
		box-shadow: 0 0 var(--carousel-item-glow-size) transparent;
		position: absolute;
}

.carousel .carousel-item:hover {
		box-shadow: 0 0 var(--carousel-item-glow-size) rgb(var(--carousel-item-glow-color-rgb));
		transform: rotateY(var(--_rotation)) translateZ(calc(var(--_radius) * var(--carousel-item-hover-effect)));
}

.carousel .carousel-item a {
		display: block;
		width: inherit;
		height: inherit;
		text-indent: -9999px;
		background-color: rgba(var(--carousel-item-empty-color-rgb), 0.5);
		background-image: var(--_image-url);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		transition: filter var(--carousel-transition-duration) var(--carousel-transition-ease);
		filter: grayscale(20%);
}

.carousel .carousel-item:hover a {
		filter: grayscale(0%);
}

.carousel .carousel-item::before {
		content: '';
		width: inherit;
		height: inherit;
		background-color: rgba(var(--carousel-item-empty-color-rgb), 0.5);
		background-image: 
				linear-gradient(to top, rgba(var(--carousel-bg-color-rgb), 0.25) 0%, rgba(var(--carousel-bg-color-rgb), 1.0) 75%), 
				var(--_image-url);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		pointer-events: none;
		filter: blur(var(--carousel-item-reflection-blur)) grayscale(10%);
		transition: filter var(--carousel-transition-duration) var(--carousel-transition-ease);
		transform-style: inherit;
		transform-origin: center bottom;
		transform: rotateX(90deg) rotateZ(180deg) rotateY(180deg);
		position: absolute;
}

.carousel .carousel-item:hover::before {
		filter: blur(var(--carousel-item-reflection-blur)) grayscale(0%);
}

.carousel .carousel-ground {
		--_width: var(--_diameter);
		--_height: var(--_diameter);
		--_rotation: 90deg;
		left: calc(var(--_radius) - var(--_width) / 2);
		top: calc(var(--_radius) - var(--_height) / 2);
		transform: rotateX(var(--_rotation)) translateZ(calc(var(--_item-height) / -2));
		width: var(--_width);
		height: var(--_height);
		border-radius: 50%;
		background: radial-gradient(rgba(var(--carousel-shadow-color-rgb), 0.75) 15% , rgba(var(--carousel-bg-color-rgb), 0) 60%);
		opacity: 0.5;
		transition: opacity var(--carousel-transition-duration) var(--carousel-transition-ease);
		position: absolute;
}

.carousel .carousel-item-wrapper:has(.carousel-item:hover) .carousel-ground {
		opacity: 0.75;
}

.info-section {
    margin: 100px;
    margin-bottom: 250px;
    text-align: center;
    z-index: 20; /* Hoher z-index, um über dem Karussell zu liegen */
    position: relative; /* Aktiviert z-index */
    margin-top: 200px;
}

.info-section h1 {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 0 0 2px rgba(0, 255, 0, 0.8);
}

.nft-info {
    font-size: 18px;
    color: #b0b0b0;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    text-align: center;
    margin-top: 50px;
}

.nft-highlight {
    font-size: 36px; /* Noch größere Schriftgröße für 'Join our exclusive community' */
    font-weight: 700;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 10px;
    margin-top: 100px;
}

.nft-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    z-index: 21; /* Höherer z-index für die Buttons */
    position: relative; /* Aktiviert z-index */
}

.nft-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(149deg, #00b300, #008000);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 179, 0, 0.7);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    z-index: 21;
    pointer-events: auto; /* Explizit klickbar */
}

.nft-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 179, 0, 0.9);
}

.nft-discord {
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 21;
    pointer-events: auto; /* Explizit klickbar */
}

.nft-discord:hover {
    color: #00FF00;
    transform: scale(1.1);
}

/* Anpassung für das Karussell */
.carousel {
    --_diameter: var(--carousel-diameter);
    --_radius: calc(var(--_diameter) / 2);
    --_item-width: var(--carousel-item-width);
    --_item-height: var(--carousel-item-height);
    perspective: var(--carousel-3d-perspective);
    perspective-origin: var(--carousel-3d-perspective-origin);
    width: var(--_diameter);
    height: var(--_diameter);
    z-index: 10;
    pointer-events: none; /* Verhindert Klicks auf das Karussell */
    height: 655px;
    margin-top: -180px;
    margin-bottom: 240px;
}

.carousel .carousel-item {
    pointer-events: auto; /* Erlaubt Klicks auf die Karussell-Elemente */
}

.carousel .carousel-control-button {
    pointer-events: auto; /* Erlaubt Klicks auf die Steuerungsbuttons */
}

.nft-section {
    margin-bottom: -180px;
    width: 100%;
    background-color: #000000
}
.nft-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    background: #121212;
    z-index: 1;
    margin-top: -50px;
    transform: skewY(-3deg);
}

/* Media Queries für Responsivität */
@media (max-width: 768px) {
    .info-section {
        margin: 100px 10px;
        margin-bottom: 200px;
    }

    .info-section h1 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .nft-section {
        margin-bottom: 0px;
        width: 100%;
        background-color: #000000
    }

    .nft-actions {
        margin-bottom: 40px;
    }

    .nft-info {
        font-size: 16px;
        padding: 0 10px;
    }

    .nft-highlight {
        font-size: 32px; /* Angepasste Größe für kleinere Bildschirme */
    }

    .nft-button {
        font-size: 12px;
        padding: 8px 16px;
    }

    .nft-discord {
        font-size: 20px;
    }
    .carousel {
        display: none; 
    }
}

@media (max-width: 480px) {
    .info-section {
        margin: 80px 10px;
        margin-bottom: 150px;
    }

    .info-section h1 {
        margin-bottom: 15px;
    }

    .nft-info {
        font-size: 14px;
    }

    .nft-highlight {
        font-size: 28px; /* Angepasste Größe für sehr kleine Bildschirme */
    }

    .nft-button {
        font-size: 12px;
        padding: 8px 12px;
    }

    .nft-discord {
        font-size: 18px;
    }
    .carousel {
        display: none; 
    }
}
