/*
Theme Name: Spielwelt
Version: 1.3.2
Beschreibung: Modernes, responsives Theme für QuickWin Casino mit einzigartigem Design
*/

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

.spielwelt-body {
    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 */
.hauptkopf {
    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);
}

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

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

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

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

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

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

.suchleiste i:hover {
    color: #ffd700;
}

.authtasten {
    display: flex;
    gap: 10px;
}

.anmelden-btn {
    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-btn:hover {
    background-color: #222;
    border-color: #666;
    transform: translateY(-2px);
}

.registrieren-btn {
    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-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

/* Menü-Tabs */
.menuleiste {
    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);
}

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

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

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

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

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

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

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

.helden-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background: url('../../uploads/2025/04/quickwin-8-rpm-casinos.webp') no-repeat center center;
    opacity: 0.3;
    z-index: 1;
    animation: pulsieren 10s infinite alternate;
}

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

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

.helden-promo {
    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);
}

.helden-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;
}

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

.aktions-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);
    width: fit-content;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.aktions-taste: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;
}

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

.aktions-taste:hover:after {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

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

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

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

/* Funktionen-Sektion */
.funktionen-sektion {
    background-color: #0f0f18;
    padding: 80px 0;
    border-top: 4px solid #ff3131;
    position: relative;
}

.funktionen-sektion:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../uploads/2025/04/pattern-car.png') repeat;
    opacity: 0.45;
    pointer-events: none;
}

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

.highlight-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);
}

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

.highlight-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;
}

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

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

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

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

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

.zusammenfassung {
    text-align: center;
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto;
    color: #ddd;
    padding: 20px;
    background: rgba(255, 49, 49, 0.05);
    border-radius: 10px;
    border-left: 3px solid #ffd700;
}

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

.bonus-sektion:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('../../uploads/2025/04/bonus-pattern.png') repeat; */
    opacity: 0.02;
    pointer-events: none;
}

.featured-bonus {
    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);
}

.featured-bonus: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: rotieren 10s infinite linear;
}

@keyframes rotieren {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.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);
}

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

.bonus-karte {
    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-karte:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.2);
}

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

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

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

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

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

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

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

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

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

/* App-Sektion */
.app-sektion {
    background-color: #0a0a12;
    padding: 80px 0;
    border-top: 1px solid #222;
    position: relative;
}

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

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

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

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

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

.plattform-box {
    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-box: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-symbol {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

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

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

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

.plattform-cta {
    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-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 49, 49, 0.4);
    color: white;
}

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

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

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

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

/* Sport-Sektion */
.sport-sektion {
    background-color: #0f0f18;
    padding: 80px 0;
    border-top: 1px solid #222;
    position: relative;
}

.sport-sektion:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../uploads/2025/04/sport-pattern.svg') repeat;
    opacity: 0.25;
    pointer-events: none;
}

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

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

.sport-feature {
    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);
}

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

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

.sport-feature:hover .sport-symbol {
    transform: scale(1.1);
}

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

.sport-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);
}

.sport-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;
}

.sport-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);
}

.sport-cta {
    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;
}

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

/* Zahlungs-Sektion */
.zahlung-sektion {
    background-color: #0a0a12;
    padding: 80px 0;
    border-top: 1px solid #222;
    position: relative;
}

.zahlung-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-btn {
    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-btn i {
    font-size: 20px;
}

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

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

.tab-inhalt {
    padding: 40px;
}

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

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

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

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

.zahlung-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;
}

.zahlung-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-Sektion */
.login-sektion {
    background-color: #0f0f18;
    padding: 80px 0;
    border-top: 1px solid #222;
    position: relative;
}

.login-sektion:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  /*  background: url('../../uploads/2025/04/login-pattern.png') repeat; */
    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;
}

.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;
}

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

.sicherheit-sektion:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background: url('../../uploads/2025/04/security-pattern.png') repeat; */
    opacity: 0.05;
    pointer-events: none;
}

.sicherheit-tabelle {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    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);
}

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

.support-sektion:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background: url('../../uploads/2025/04/support-pattern.png') repeat; */
    opacity: 0.05;
    pointer-events: none;
}

.support-tabelle {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    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-vorteile {
    background: linear-gradient(145deg, #151520, #1a1a25);
    border-radius: 10px;
    padding: 25px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Bewertungen-Sektion */
.bewertungen-sektion {
    background-color: #0a0a12;
    padding: 80px 0;
    border-top: 1px solid #222;
    position: relative;
}

.bewertungen-sektion:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background: url('../../uploads/2025/04/reviews-pattern.png') repeat; */
    opacity: 0.05;
    pointer-events: none;
}

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

.bewertung-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);
}

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

.bewertung-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-Sektion */
.fazit-sektion {
    background-color: #0f0f18;
    padding: 80px 0;
    border-top: 1px solid #222;
    position: relative;
}

.fazit-sektion:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background: url('../../uploads/2025/04/conclusion-pattern.png') repeat; */
    opacity: 0.05;
    pointer-events: none;
}

.fazit-tabelle {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    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);
}

.fazit-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;
}

.fazit-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;
}

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

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

.bewertung-cell {
    color: #ffd700;
    font-size: 20px;
    letter-spacing: 2px;
}

.stern-voll {
    color: #ffd700;
}

.stern-halb {
    position: relative;
    display: inline-block;
    color: #ffd700;
}

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

.stern-leer {
    color: #444;
}

/* Bonus-Highlight */
.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);
    transform: scale(1);
    transition: transform 0.3s ease;
}

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

.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: rotieren 10s infinite linear;
}

/* Social Media Teilen */
.social-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;
}

.social-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);
}

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

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

.hauptfuss:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background: url('../../uploads/2025/04/footer-pattern.png') repeat; */
    opacity: 0.05;
    pointer-events: none;
}

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

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

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

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

.alter-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);
}

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

.sicherheit-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.sicherheit-badge {
    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;
}

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

.sicherheit-badge i {
    color: #ff3131;
}

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

.rechtl-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;
}

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

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

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

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

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

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

.zahlung-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);
}

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

/* Hilfsklassen */
.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(90deg, #ff3131, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

/* Barrierefreiheit */
a:focus, button:focus {
    outline: 2px solid #ff3131;
    outline-offset: 2px;
}

/* Mediaqueries für Responsivität */
@media (max-width: 1200px) {
    .rennwagen {
        right: -200px;
        transform: scale(0.8) rotate(-5deg);
    }

    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .app-plattformen,
    .sport-inhalt {
        grid-template-columns: 1fr;
    }
    
    .verifizierung-panel {
        grid-template-columns: 1fr;
    }
    
    .sport-features {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hauptkopf {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .nav-elemente {
        width: 100%;
        justify-content: space-between;
    }
    
    .suchleiste {
        display: none;
    }
    
    .helden-inhalt {
        padding: 60px 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .rennwagen {
        display: none;
    }
    
    .highlights-raster,
    .sport-features {
        grid-template-columns: 1fr;
    }
    
    .menuleiste {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 0;
    }
    
    .menuleiste .menupunkt {
        white-space: nowrap;
    }
    
    .app-sektion, 
    .bonus-sektion, 
    .zahlung-sektion, 
    .sport-sektion, 
    .bewertungen-sektion {
        padding: 60px 15px;
    }
    
    .plattform-box {
        padding: 30px;
    }
    
    .tab-inhalt {
        padding: 20px;
    }
    
    .tab-btn {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .tab-btn i {
        font-size: 16px;
    }
    
    .verifizierung-bild {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        padding: 20px 0;
    }
    
    .dokument-symbol {
        font-size: 50px;
    }
    
    .fuss-badges {
        flex-direction: column;
        gap: 20px;
    }
    
    .sicherheit-badges {
        justify-content: center;
    }
    
    .teilen-icons {
        flex-wrap: wrap;
    }
    
    .featured-bonus {
        padding: 30px 20px;
    }
    
    .bonus-betrag {
        font-size: 28px;
    }
    
    .bonus-karte {
        padding: 20px;
    }
    .menuleiste {
        display: flex;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .menuleiste::-webkit-scrollbar {
        display: none;
    }
    
    .menupunkt {
        padding: 8px 16px;
        margin: 0 4px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .menupunkt a {
        font-size: 13px;
    }
    
    .menuleiste:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 30px;
        height: 100%;
        background: linear-gradient(to right, transparent, #1a1a22);
        pointer-events: none;
    }
    
    .menuleiste: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;
    }
}

@media (max-width: 480px) {
    .authtasten {
        gap: 5px;
    }
    
    .anmelden-btn, 
    .registrieren-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .aktions-taste, 
    .bonus-taste {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .dokument-symbol {
        font-size: 40px;
    }
    
    .sicherheit-tabelle td, 
    .bewertungen-tabelle td,
    .support-tabelle td,
    .fazit-tabelle td {
        padding: 10px;
        font-size: 14px;
    }
    
    .alter-badge {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .alter-text {
        font-size: 12px;
    }
    
    .sicherheit-badge {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .rechtl-info p {
        font-size: 12px;
    }
    .menupunkt {
        padding: 6px 12px;
    }
    
    .menupunkt a {
        font-size: 12px;
        letter-spacing: 0;
    }
}
.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;
}

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

.screenshot-caption {
    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;
}

@media (max-width: 768px) {
    .screenshot-container {
        flex-direction: column;
    }
    
    .screenshot-box {
        max-width: 100%;
    }
}
.zoom-hint {
    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-hint {
    opacity: 1;
}


.image-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-content {
    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 0.3s;
}

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

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

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

@media (max-width: 768px) {
    .screenshot-container {
        flex-direction: column;
    }
    
    .screenshot-box {
        max-width: 100%;
    }
    
    .modal-content {
        width: 95%;
    }
}