/*
Theme Name: NeuCasino
Version: 1.3.2
Beschreibung: Modernes, responsives Theme für QuickWin Casino
*/

/* Grundlegende Einstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.spielwelt-seite {
    background-color: #0a0a12;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffd700;
}

img {
    max-width: 100%;
    height: auto;
}

/* Überschriften und Text */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(90deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    color: #ffd700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff3131, #ffd700);
    margin: 15px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
    font-size: 16px;
    line-height: 1.7;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

li {
    margin-bottom: 0.5rem;
}

strong {
    color: #ffffff;
    font-weight: 700;
}

/* Header-Bereich */
.kopfzeile {
    background: linear-gradient(180deg, #01030a, #1a1f2e 73%, #232732 93%);
    padding: 15px 30px;
    display: flex;
    background-image: url('../../uploads/2025/04/karbon-hintergrund-fein.svg');
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff3131;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.firmenlogo {
    display: flex;
    align-items: center;
}

.firmenlogo img {
    max-height: 60px;
    transition: transform 0.3s ease;
}

.firmenlogo img:hover {
    transform: scale(1.05);
}

.navigation-elemente {
    display: flex;
    align-items: center;
    gap: 20px;
}

.suche-leiste {
    position: relative;
    margin-right: 20px;
}

.suche-leiste i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    cursor: pointer;
    transition: color 0.3s ease;
}

.suche-leiste i:hover {
    color: #ffd700;
}

.anmeldung-tasten {
    display: flex;
    gap: 10px;
}

.anmelden-taste {
    background-color: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.anmelden-taste:hover {
    background-color: #222;
    border-color: #666;
    transform: translateY(-2px);
}

.registrieren-taste {
    background: linear-gradient(90deg, #ffd700, #ff9d00);
    border: none;
    color: #000;
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.registrieren-taste:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

/* Hauptnavigation */
.hauptnavigation {
    background-color: #1a1a22;
    display: flex;
    justify-content: center;
    padding: 6px 0;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navigationspunkt {
    padding: 10px 24px;
    margin: 0 6px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navigationspunkt a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.navigationspunkt.aktiv {
    background-color: #ff3131;
}

.navigationspunkt:not(.aktiv):hover {
    background-color: #2a2a32;
}

.reiter.aktiv {
    background-color: #ff3131;
    color: white;
}

.reiter:not(.aktiv):hover {
    background-color: #2a2a32;
}

/* Banner-Bereich */
.banner-bereich {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a0a 0%, #2a0a1a 100%);
    padding: 40px 0;
}

.banner-hintergrund {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background: url('../../uploads/2025/04/quickwin-9-f1-casinos.webp') no-repeat center center;
    opacity: 0.3;
    z-index: 1;
    animation: pulsierende-animation 10s infinite alternate;
}

@keyframes pulsierende-animation {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.05);
        opacity: 0.4;
    }
}

.banner-inhalt {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.banner-aktion {
    background-color: rgba(255, 49, 49, 0.8);
    border-radius: 5px;
    padding: 10px 28px;
    width: fit-content;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 49, 49, 0.3);
    transform: skewX(-10deg);
}

.banner-beschreibung {
    max-width: 800px;
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid #ff3131;
}

.banner-beschreibung p {
    margin-bottom: 15px;
}

.action-button {
    background: linear-gradient(90deg, #ffd700, #ff9d00);
    border: none;
    border-radius: 30px;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    width: fit-content;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.action-button:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.action-button:hover:after {
    opacity: 1;
    animation: schimmer-effekt 1.5s infinite;
}

@keyframes schimmer-effekt {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.renn-auto {
    position: absolute;
    bottom: -50px;
    right: -100px;
    width: 600px;
    height: 300px;
    background: url('../../uploads/2025/04/hmd-2.webp') no-repeat center center;
    background-size: contain;
    z-index: 2;
    transform: rotate(-5deg);
    animation: schwebe-animation 4s ease-in-out infinite;
}

@keyframes schwebe-animation {
    0%, 100% {
        transform: rotate(-5deg) translateY(0px);
    }
    50% {
        transform: rotate(-5deg) translateY(-15px);
    }
}

/* Vorteil-Bereich */
.vorteil-bereich {
    background-color: #0f0f18;
    padding: 80px 0;
    border-top: 4px solid #ff3131;
    position: relative;
}

.vorteil-bereich:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.45;
    pointer-events: none;
}

.vorteil-raster {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.vorteil-box {
    background: linear-gradient(145deg, #151520, #1a1a25);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vorteil-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 49, 49, 0.2);
}

.vorteil-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff3131, #ffd700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.vorteil-box:hover::after {
    transform: scaleX(1);
}

.vorteil-symbol {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff3131;
    transition: transform 0.3s ease;
}

.vorteil-box:hover .vorteil-symbol {
    transform: scale(1.1);
}

.vorteil-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffd700;
}

.vorteil-box p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.5;
}

/* Mobile App Bereich */
.mobilapp-bereich {
    background-color: #0a0a12;
    padding: 80px 0;
    border-top: 1px solid #222;
    position: relative;
}

.mobilapp-bereich:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff3131, transparent);
}

.funktionalitaeten-liste {
    list-style-type: none;
    margin: 20px 0;
    padding-left: 0;
}

.funktionalitaeten-liste li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #ccc;
}

.funktionalitaeten-liste li:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ff3131;
}

.plattform-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.plattform-karte {
    background: linear-gradient(145deg, #151520, #1a1a25);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.plattform-karte:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
}

.ios {
    border-top: 4px solid #007aff;
}

.android {
    border-top: 4px solid #a4c639;
}

.plattform-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.plattform-karte:hover .plattform-icon {
    transform: scale(1.1);
}

.ios .plattform-icon {
    color: #007aff;
}

.android .plattform-icon {
    color: #a4c639;
}

.plattform-karte h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.plattform-karte p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.plattform-button {
    background: linear-gradient(90deg, #ff3131, #ff6a00);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    margin-top: auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 5px 15px rgba(255, 49, 49, 0.3);
    align-self: center;
}

.plattform-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 49, 49, 0.4);
    color: white;
}

.ios .plattform-button {
    background: linear-gradient(90deg, #007aff, #00c2ff);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
}

.ios .plattform-button:hover {
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.4);
}

.android .plattform-button {
    background: linear-gradient(90deg, #a4c639, #8bc34a);
    box-shadow: 0 5px 15px rgba(164, 198, 57, 0.3);
}

.android .plattform-button:hover {
    box-shadow: 0 8px 20px rgba(164, 198, 57, 0.4);
}

/* Bonus-Bereich */
.bonus-bereich {
    background-color: #0a0a12;
    padding: 80px 0;
    border-top: 1px solid #222;
    position: relative;
}

.bonus-bereich:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    pointer-events: none;
}

.bonus-highlight {
    background: linear-gradient(145deg, #1d0a0a, #2a0a0a);
    border-radius: 15px;
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 49, 49, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 49, 49, 0.3);
}

.bonus-highlight:before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0) 70%);
    top: -50%;
    left: -50%;
    animation: rotations-animation 10s infinite linear;
}

@keyframes rotations-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.bonus-tag {
    background-color: #ff3131;
    color: white;
    font-weight: bold;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: skewX(-10deg);
}

.bonus-summe {
    font-size: 36px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.bonus-button {
    background: linear-gradient(90deg, #ffd700, #ff9d00);
    border: none;
    border-radius: 30px;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}

.bonus-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.bonus-inhalte {
    max-width: 1000px;
    margin: 0 auto;
    color: #ccc;
    font-size: 16px;
    line-height: 1.7;
}

.bonus-infobox {
    background: linear-gradient(145deg, #151520, #1a1a25);
    border-radius: 10px;
    padding: 25px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bonus-infobox:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.2);
}

.bonus-infobox:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff3131, #ffd700);
}

.bonus-infobox h3 {
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.bonus-infobox h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #ff3131;
    border-radius: 2px;
}

.bonus-infobox p {
    margin-bottom: 15px;
}

.bonus-infobox ul, .bonus-infobox ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.bonus-infobox li {
    margin-bottom: 8px;
    color: #ccc;
}

.vorteil-aufzaehlung {
    list-style-type: none;
    padding-left: 5px;
    margin-left: 0;
}

.vorteil-aufzaehlung li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.vorteil-aufzaehlung li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ff3131;
}

/* Sportwetten-Bereich */
.sportwetten-bereich {
    background-color: #0f0f18;
    padding: 80px 0;
    border-top: 1px solid #222;
    position: relative;
}

.sportwetten-bereich:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
    pointer-events: none;
}

.sportwetten-inhalte {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.sportoption-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.sportoption {
    background: linear-gradient(145deg, #151520, #1a1a25);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sportoption:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 49, 49, 0.2);
}

.sportoption-icon {
    font-size: 30px;
    color: #ff3131;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.sportoption:hover .sportoption-icon {
    transform: scale(1.1);
}

.sportoption h4 {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 10px;
}

.sportwetten-bonus {
    background: linear-gradient(145deg, #1a0a0a, #2a0a0a);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 49, 49, 0.2);
}

.sportwetten-bonus:before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 49, 49, 0.2) 0%, rgba(255, 49, 49, 0) 70%);
    top: -150px;
    right: -150px;
}

.sportwetten-bonus h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.bonus-wert {
    font-size: 28px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.sportwetten-button {
    background: linear-gradient(90deg, #ff3131, #ff6a00);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 49, 49, 0.3);
    display: inline-block;
    margin-top: 20px;
    text-transform: uppercase;
    text-decoration: none;
}

.sportwetten-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 49, 49, 0.4);
    color: white;
}

/* Zahlungen-Bereich */
.zahlungen-bereich {
    background-color: #0a0a12;
    padding: 80px 0;
    border-top: 1px solid #222;
    position: relative;
}

.zahlungen-tabs {
    max-width: 1000px;
    margin: 40px auto;
    background: linear-gradient(145deg, #151520, #1a1a25);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-navigation {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-taste {
    flex: 1;
    background: none;
    border: none;
    padding: 20px;
    color: #ccc;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-taste i {
    font-size: 20px;
}

.tab-taste.aktiv {
    background: linear-gradient(to bottom, rgba(255, 49, 49, 0.1), transparent);
    color: #ffd700;
    box-shadow: inset 0 3px 0 #ff3131;
}

.tab-taste:hover:not(.aktiv) {
    background-color: rgba(255, 255, 255, 0.05);
}

.tab-inhalt {
    padding: 40px;
}

.tab-panel {
    display: none;
    animation: einblenden-animation 0.5s ease-in-out;
}

.tab-panel.aktiv {
    display: block;
}

@keyframes einblenden-animation {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zahlungen-liste {
    list-style-type: none;
    padding-left: 0;
}

.zahlungen-liste li {
    margin-bottom: 15px;
    color: #ccc;
    position: relative;
    padding-left: 30px;
    border-left: 2px solid rgba(255, 49, 49, 0.3);
    padding-left: 20px;
    margin-left: 10px;
}

.zahlungen-liste li:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: -12px;
    top: 2px;
    color: #ff3131;
    background: #151520;
    border-radius: 50%;
    padding: 0 2px;
}

/* Login-Bereich */
.login-bereich {
    background-color: #0f0f18;
    padding: 80px 0;
    border-top: 1px solid #222;
    position: relative;
}

.login-bereich:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}

.login-schritte-container {
    margin: 40px 0;
}

.login-schritte {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.login-schritt {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(145deg, #151520, #1a1a25);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.login-schritt:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff3131, #ffd700);
    transition: width 0.3s ease;
}

.login-schritt:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 49, 49, 0.2);
}

.login-schritt:hover:after {
    width: 100%;
}

.schritt-nummer {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff3131, #ff6a00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 49, 49, 0.3);
    color: #fff;
}

.schritt-inhalt h4 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 20px;
}

.login-screenshots {
    margin: 40px 0;
    background: linear-gradient(145deg, #151520, #1a1a25);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.screenshot-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.screenshot-box {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.login-screenshot {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid rgba(255, 49, 49, 0.3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.screenshot-box:hover .login-screenshot {
    border-color: rgba(255, 215, 0, 0.4);
}

.screenshot-unterschrift {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 18, 0.8);
    color: #ffd700;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.screenshot-info {
    color: #ccc;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 20px;
    font-style: italic;
}

.zoom-hinweis {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(10, 10, 18, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-box:hover .zoom-hinweis {
    opacity: 1;
}

.bild-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
}

.modal-inhalt {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin-top: 2%;
    border: 3px solid #ff3131;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: zoom-animation 0.3s;
}

@keyframes zoom-animation {
    from {transform: scale(0.1)} 
    to {transform: scale(1)}
}

.modal-schliessen {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.modal-schliessen:hover,
.modal-schliessen:focus {
    color: #ff3131;
    text-decoration: none;
}

.verifizierung-panel {
    max-width: 1000px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
    background: linear-gradient(145deg, #151520, #1a1a25);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.verifizierung-inhalt h3 {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.verifizierung-inhalt h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #ff3131;
    border-radius: 2px;
}

.verifizierung-inhalt p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.verifizierung-inhalt strong {
    color: #ffd700;
}

.verifizierung-bild {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dokument-symbol {
    font-size: 70px;
    color: #ccc;
    margin: 10px 0;
    opacity: 0.8;
    transition: transform 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.dokument-symbol:hover {
    transform: scale(1.1);
    color: #ffd700;
    opacity: 1;
}

.verifizierung-badge {
    background: linear-gradient(90deg, #ff3131, #ff6a00);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(255, 49, 49, 0.3);
}

.verifizierung-badge i {
    font-size: 18px;
}

/* Support-Bereich */
.support-bereich {
    background-color: #0a0a12;
    padding: 80px 0;
    border-top: 1px solid #222;
    position: relative;
}

.support-bereich:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}

.support-tabelle-container {
    overflow-x: auto;
    margin: 30px 0;
}

.support-tabelle {
    width: 100%;
    border-collapse: collapse;
    background: rgba(20, 20, 35, 0.5);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.support-tabelle td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    transition: background-color 0.3s ease;
}

.support-tabelle tr:first-child td {
    background: rgba(20, 20, 35, 0.7);
    color: #ffd700;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.support-tabelle tr:last-child td {
    border-bottom: none;
}

.support-tabelle tr:hover td {
    background-color: rgba(30, 30, 45, 0.5);
}

.support-liste {
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0;
}

.support-liste li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #ccc;
}

.support-liste li:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ff3131;
}

/* Sicherheit-Bereich */
.sicherheit-bereich {
    background-color: #0f0f18;
    padding: 80px 0;
    border-top: 1px solid #222;
    position: relative;
}

.sicherheit-bereich:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}

.sicherheit-tabelle-container {
    overflow-x: auto;
    margin: 30px 0;
}

.sicherheit-tabelle {
    width: 100%;
    border-collapse: collapse;
    background: rgba(20, 20, 35, 0.5);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sicherheit-tabelle td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    transition: background-color 0.3s ease;
}

.sicherheit-tabelle tr:first-child td {
    background: rgba(20, 20, 35, 0.7);
    color: #ffd700;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.sicherheit-tabelle tr:last-child td {
    border-bottom: none;
}

.sicherheit-tabelle tr:hover td {
    background-color: rgba(30, 30, 45, 0.5);
}

/* Bewertung-Bereich */
.bewertung-bereich {
    background-color: #0a0a12;
    padding: 80px 0;
    border-top: 1px solid #222;
    position: relative;
}

.bewertung-bereich:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}

.bewertung-tabelle-container {
    overflow-x: auto;
    margin: 30px 0;
}

.bewertung-tabelle {
    width: 100%;
    border-collapse: collapse;
    background: rgba(20, 20, 35, 0.5);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.bewertung-tabelle td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    transition: background-color 0.3s ease;
}

.bewertung-tabelle tr:first-child td {
    background: rgba(20, 20, 35, 0.7);
    color: #ffd700;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.bewertung-tabelle tr:last-child td {
    border-bottom: none;
}

.bewertung-tabelle tr:hover td {
    background-color: rgba(30, 30, 45, 0.5);
}

.spieler-stimmen {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stimme-karte {
    background: linear-gradient(145deg, #151520, #1a1a25);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stimme-karte:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.2);
}

.stimme-karte:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff3131, #ffd700);
}

.bewertung-sterne {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 15px;
}

.bewertung-text {
    color: #ccc;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.bewertung-text:before {
    content: '\201C';
    font-size: 36px;
    font-family: Georgia, serif;
    position: absolute;
    left: 0;
    top: -15px;
    color: rgba(255, 49, 49, 0.5);
}

.bewerter {
    color: #888;
    font-size: 14px;
    text-align: right;
    font-weight: 600;
}

/* Fazit-Bereich */
.fazit-bereich {
    background-color: #0f0f18;
    padding: 80px 0;
    border-top: 1px solid #222;
    position: relative;
}

.fazit-bereich:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}

.bewertung-zusammenfassung {
    max-width: 800px;
    margin: 40px auto;
    background: linear-gradient(145deg, #151520, #1a1a25);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bewertung-aspekt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bewertung-aspekt:last-child {
    border-bottom: none;
}

.aspekt-name {
    font-weight: bold;
    color: #fff;
}

.bewertung-wert {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stern-container {
    display: flex;
    gap: 2px;
}

.stern-container i {
    font-size: 18px;
}

.voll {
    color: #ffd700;
}

.halb {
    position: relative;
    color: #444;
}

.halb:before {
    content: '\f005';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #ffd700;
}

.leer {
    color: #444;
}

.bewertung-kommentar {
    color: #999;
    font-size: 14px;
    font-style: italic;
}

/* Bonus-Hervorhebung */
.bonus-hervorhebung {
    background: linear-gradient(145deg, #1d0a0a, #2a0a0a);
    border-radius: 15px;
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 49, 49, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 49, 49, 0.3);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.bonus-hervorhebung:hover {
    transform: scale(1.02);
}

.bonus-hervorhebung:before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0) 70%);
    top: -50%;
    left: -50%;
    animation: rotations-animation 10s infinite linear;
}

.bonus-badge {
    background-color: #ff3131;
    color: white;
    font-weight: bold;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: skewX(-10deg);
}

.bonus-betrag {
    font-size: 36px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.bonus-taste {
    background: linear-gradient(90deg, #ffd700, #ff9d00);
    border: none;
    border-radius: 30px;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}

.bonus-taste:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Social Media Teilen */
.sozial-teilen {
    margin: 40px 0;
    text-align: center;
    background: linear-gradient(145deg, #151520, #1a1a25);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.teilen-titel {
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ccc;
    font-size: 18px;
    position: relative;
    display: inline-block;
}

.teilen-titel:before,
.teilen-titel:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, #ff3131, #ffd700);
}

.teilen-titel:before {
    left: -40px;
}

.teilen-titel:after {
    right: -40px;
}

.teilen-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.sozial-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.sozial-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
.fusszeile {
    background-color: #0a0a0e;
    padding: 50px 0;
    border-top: 1px solid #222;
    color: #777;
    position: relative;
}

.fusszeile:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}

.fuss-logo {
    text-align: center;
    margin-bottom: 30px;
}

.fuss-info {
    max-width: 1000px;
    margin: 0 auto;
}

.fuss-markierungen {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.alters-beschrankung {
    display: flex;
    align-items: center;
    gap: 15px;
}

.alters-badge {
    width: 40px;
    height: 40px;
    background-color: #ff3131;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(255, 49, 49, 0.3);
}

.alters-text {
    color: #999;
    font-size: 14px;
}

.sicherheits-markierungen {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.sicherheits-markierung {
    background: rgba(20, 20, 35, 0.7);
    border-radius: 20px;
    padding: 8px 15px;
    color: #999;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.sicherheits-markierung:hover {
    background: rgba(30, 30, 45, 0.7);
    transform: translateY(-2px);
}

.sicherheits-markierung i {
    color: #ff3131;
}

.rechtliche-info {
    text-align: center;
    margin-bottom: 30px;
}

.rechtliche-info p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.verantwortung-link {
    color: #ff3131;
    text-decoration: none;
    transition: color 0.3s ease;
}

.verantwortung-link:hover {
    color: #ffd700;
    text-decoration: underline;
}

.zahlungs-methoden {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #222;
}

.zahlungs-titel {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.zahlungs-titel:before,
.zahlungs-titel:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.zahlungs-titel:before {
    left: -30px;
}

.zahlungs-titel:after {
    right: -30px;
}

.zahlungs-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.zahlungs-icon {
    width: 45px;
    height: 45px;
    background: #151520;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #999;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.zahlungs-icon:hover {
    color: #ffd700;
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .renn-auto {
        right: -200px;
        transform: scale(0.8) rotate(-5deg);
    }

    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .plattform-container,
    .sportwetten-inhalte {
        grid-template-columns: 1fr;
    }
    
    .verifizierung-panel {
        grid-template-columns: 1fr;
    }
    
    .sportoption-grid {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .kopfzeile {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .navigation-elemente {
        width: 100%;
        justify-content: space-between;
    }
    
    .suche-leiste {
        display: none;
    }
    
    .banner-inhalt {
        padding: 60px 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .renn-auto {
        display: none;
    }
    
    .vorteil-raster,
    .sportoption-grid {
        grid-template-columns: 1fr;
    }
    
    .hauptnavigation {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 0;
    }
    
    .hauptnavigation .navigationspunkt {
        white-space: nowrap;
    }
    
    .tab-inhalt {
        padding: 20px;
    }
    
    .tab-taste {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .tab-taste i {
        font-size: 16px;
    }
    
    .verifizierung-bild {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        padding: 20px 0;
    }
    
    .dokument-symbol {
        font-size: 50px;
    }
    
    .fuss-markierungen {
        flex-direction: column;
        gap: 20px;
    }
    
    .sicherheits-markierungen {
        justify-content: center;
    }
    
    .teilen-icons {
        flex-wrap: wrap;
    }
    
    .bonus-highlight {
        padding: 30px 20px;
    }
    
    .bonus-summe {
        font-size: 28px;
    }
    
    .bonus-infobox {
        padding: 20px;
    }
     .hauptnavigation {
        display: flex;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .hauptnavigation::-webkit-scrollbar {
        display: none;
    }
    
    .navigationspunkt {
        padding: 8px 16px;
        margin: 0 4px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .navigationspunkt a {
        font-size: 13px;
    }
    
    .hauptnavigation:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 30px;
        height: 100%;
        background: linear-gradient(to right, transparent, #1a1a22);
        pointer-events: none;
    }
    
    .hauptnavigation:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 30px;
        height: 100%;
        background: linear-gradient(to left, transparent, #1a1a22);
        pointer-events: none;
        z-index: 1;
    }
    .anmeldung-tasten {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
    }
    
    .navigation-elemente {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .kopfzeile {
        padding: 15px 10px;
    }
    
    .anmelden-taste, 
    .registrieren-taste {
        min-width: 120px;
        text-align: center;
    }
    @media (max-width: 768px) {
    .bewertung-zusammenfassung {
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .bewertung-aspekt {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }
    
    .aspekt-name {
        margin-bottom: 8px;
        font-size: 16px;
    }
    
    .bewertung-wert {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }
    
    .bewertung-kommentar {
        font-size: 13px;
        margin-top: 5px;
    }
    
    .stern-container {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .anmeldung-tasten {
        gap: 5px;
    }
    
    .anmelden-taste, 
    .registrieren-taste {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .action-button, 
    .bonus-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .dokument-symbol {
        font-size: 40px;
    }
    
    .alters-badge {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .alters-text {
        font-size: 12px;
    }
    
    .sicherheits-markierung {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .rechtliche-info p {
        font-size: 12px;
    }
     .navigationspunkt {
        padding: 6px 12px;
    }
    
    .navigationspunkt a {
        font-size: 12px;
        letter-spacing: 0;
    }
     .anmeldung-tasten {
        gap: 10px;
        width: 100%;
    }
    
    .anmelden-taste, 
    .registrieren-taste {
        flex: 1;
        padding: 10px 15px;
        font-size: 14px;
    }
    .bewertung-zusammenfassung {
        padding: 15px 12px;
    }
    
    .bewertung-wert {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .bewertung-kommentar {
        width: 100%;
    }
    
    .stern-container i {
        font-size: 16px;
    }
}