:root {
    --bg: #0b0b0c;
    --card: #151517;
    --text: #f4f4f5;
    --muted: #9ca3af;
    --ring: #2a2a2e;
    --radius: 18px;
    --gap: 28px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    user-select: none;
    -webkit-user-drag: none;
    margin: 0;
    background-color: #111010;
    font-family: Inter;
    overflow-y: auto;

      scrollbar-color: #ffffff40 #111010;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: saturate(120%) blur(13px);
    background: #11101064;
    border-bottom: 1px solid var(--ring);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
}



.toolbar {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap
}

nav a {
    text-decoration: none;
    color: #f4f4f5;
    font-weight: 500;
    padding-left: 13px;
}







/* GPT */

/* Layout */
.container {
    max-width: 1150px;
    margin: 40px auto;
    padding: 0 18px;
}



.card .content {
    padding: 16px;
    padding-top: 0px;
}





/* Grid & Card (wie dein Design) */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.card {
    background: #151517;
    border: 1px solid var(--ring);
    border-radius: 32px;
    overflow: hidden;
    color: #f4f4f5;
}

.thumb {
    margin: 16px;
    border-radius: 16px;
    overflow: hidden;
    /* für runde Ecken beim <img> */
}

.thumb img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.card h3 {
    margin: 1px 0 8px;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: .2px
}

.card p {
    margin: 0 0 18px;
    color: #9ca3af;
    font-weight: 500
}

.btn {
    display: inline-block;
    background: #e9e9eb;
    color: #0a0a0b;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid #d1d1d6
}

.btn:hover {
    background: #ffffff;
}

.btn:active {
    animation: scaleDown .3s ease forwards;
}

@keyframes scaleDown {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.95);
    }
}


.footer p {
    color: #9ca3af73;
    font-size: 14px;
    text-align: center;
    margin-bottom: 40px;
}

p a {
    color: #9ca3af73;
    text-decoration: underline;
}


.ad-banner {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 25px;
    overflow: hidden;
    -webkit-user-drag: none;
}