/* Inxed Game Cards */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, calc(100% - 10px)));
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.game-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    padding: 5px;
    color: var(--text-color);
    display: flex;
    flex-direction: row;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    margin: 0 auto;
}

.game-card-text {
    padding: 10px;
    color: var(--text-color);
    width: calc(100% - 360px);
    margin: 2px auto;
}

.game-card-text h3 {
    text-align: left;
    font-size: 1.8rem;
    color: white;
    font-weight: 500;
    margin-bottom: 5px;
}

.game-card img.game-image {
    width: 350px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
}

.game-card .price {
    text-align: left;
    margin: 15px 0;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.game-card .price .amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1da851;
    line-height: 1;
}

.game-card .price .per {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.2;
}


/* UnterstützeUns */
.abo-card h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
    text-align: center;
}

.abo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 500px));
    gap: 20px;
    width: 100%;
    padding: 0 5px;
    justify-content: center;
}

.abo-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    padding: 20px;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}


.abo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(58, 123, 213, 0.3);
}

.abo-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 10px;
}

.abo-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.abo-card p {
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 12px;
}

.abo-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.abo-card ul li::before {
    content: "• ";
    color: var(--accent-color);
}

.abo-card ul li {
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #ccc;
}

.hidden {
    display: none !important;
}

.btn-patreon {
    background-color: #b51249;
}

.btn-roblox {
    background-color: #121215;
}

.btn-patreon:hover {
    background-color: #921038;
}

.btn-coffee {
    background-color: #0084ff;
    color: black;
}

.btn-coffee:hover {
    background-color: #009de6;
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #1da851;
}

.btn-social {
    background-color: #42009b;
}

.btn-social:hover {
    background-color: #310074;
}

.abo-card img.abo-image {
    min-width: 100%;
    aspect-ratio: 16/9;
    /* height: 140px; */
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin: -20px -20px 15px -20px;
}

.abo-card .price {
    text-align: center;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
}

.abo-card .price .amount {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1;
}

.abo-card .price .per {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.2;
}

.hero-unterstuetze {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('/Bild/DN95.webp') center/cover no-repeat;
    /* dein neues Bild */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-unterstuetze::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-unterstuetze .hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    padding: 0 15px;
}

.hero-unterstuetze h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
    color: white;
}

.hero-unterstuetze p {
    font-size: 1.1rem;
    color: #ddd;
}

.game-description-u {
    color: #ccc;
    width: 100%;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding-left: 0.2rem;
    text-align: center;
}

/* Roblox User Card */

.user-card {
    align-items: center;
    gap: 15px;
    padding: 10px;
}

.user-avatar img {
    width: 120px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-name {
    font-size: 1.4rem;
    font-weight: 500;
    color: white;
}

.user-displayname {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
}

.user-created {
    font-size: 0.9rem;
    color: #aaa;
}

.user-profile-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-profile-link img {
    height: 30%;
    max-height: 48px;
    min-height: 32px;
    filter: brightness(0.9);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.user-profile-link:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Mobile */
@media (max-width: 600px) {
    .user-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .user-profile-link {
        align-self: flex-end;
    }
}
