:root {
    --accent: #00b4ff;
    --accent2: #b91c1c;
    --bg: #0a0a0d;
    --text: #eaeaea;
    --muted: #9e9e9e;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Poppins', sans-serif; }

body { background: var(--bg); color: var(--text); overflow-x: hidden; }

/* HEADER */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
header img { height: 60px; }
nav a {
    color: var(--text); text-decoration: none; margin: 0 15px;
    font-weight: 500; transition: 0.3s;
}
nav a:hover { color: var(--accent); }

/* ===== HERO SECTION (deluxe) ===== */
.hero {
    position: relative;
    height: 50vh; /* 🔥 halb so hoch */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(10, 10, 15, 0.95)),
    url('../images/titel1.png') center/cover no-repeat;
    background-attachment: fixed;
}

/* Damit der Text weiter harmonisch bleibt */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
}
/* dezente Textur / Overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(0,180,255,0.25) 0%, transparent 70%),
    url('../images/noise-texture.png');
    mix-blend-mode: screen;
    opacity: 0.2;
    z-index: 1;
}


.hero p a {
    color: var(--accent);
    text-decoration: none;
    transition: 0.3s;
}

.hero p a:hover {
    color: #fff;
    text-shadow: 0 0 15px var(--accent);
}

/* animierter Glow-Effekt */
@keyframes glowText {
    0%,100% { text-shadow: 0 0 25px rgba(0,180,255,0.6), 0 0 50px rgba(0,180,255,0.3); }
    50% { text-shadow: 0 0 50px rgba(0,180,255,1), 0 0 90px rgba(0,180,255,0.7); }
}

/* responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1rem; }
}
/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border-radius: 50px;
    background: var(--accent); /* 💙 nur Blau statt Verlauf */
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(0,180,255,0.3);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0,180,255,0.6);
    background: #09c5ff; /* leicht helleres Blau beim Hover */
}

/* GENERIC SECTIONS */
section { padding: 100px 10%; }
h2 { text-align: center; font-size: 2.2rem; color: var(--accent); margin-bottom: 30px; }
.trust p { max-width: 900px; margin: 0 auto; line-height: 1.7; text-align: center; }

/* RULES (verbessert mit gleichmäßigen Karten und Bildskalierung) */
#rules {
    padding: 100px 10%;
    background: linear-gradient(180deg, #0a0a0d 0%, #101014 100%);
    border-radius: 15px;
}

#rules h2 {
    text-align: center;
    color: var(--accent);
    margin-bottom: 70px;
    font-size: 2.2rem;
}

.rule-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 50px;
}

.rule-block.reverse {
    flex-direction: row-reverse;
}

.rule-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 50px;
}

.rule-block.reverse {
    flex-direction: row-reverse;
}

.rule-image img {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 16 / 10; /* sorgt für gleiche Höhe */
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 0 25px rgba(0,180,255,0.15);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.rule-text {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rule-text h3 {
    color: var(--accent);
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.rule-text p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Hover Effekte */
.rule-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 35px rgba(0,180,255,0.25);
}

/* Mobile Ansicht */
@media (max-width: 900px) {
    .rule-block,
    .rule-block.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .rule-image img {
        max-width: 100%;
        aspect-ratio: auto;
    }
}

@media (max-width: 900px) {
    .rule-block,
    .rule-block.reverse {
        flex-direction: column;
        text-align: center;
    }
    .rule-image img {
        max-width: 100%;
    }
}

.partners img {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    margin-top: 30px;
    object-fit: cover;
    object-position: center;
    background: #0a0a0d; /* gleicht dunklen Hintergrund an */
    display: block;
    box-shadow: 0 0 25px rgba(0,180,255,0.15);
    border: 1px solid rgba(255,255,255,0.05);
}

/* PARTNERS SECTION */
#partners {
    background: linear-gradient(180deg, #0a0a0d 0%, #101014 100%);
    border-radius: 15px;
    padding: 100px 10%;
    margin: 80px auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#partners h2 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 40px;
}

.partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.partners p {
    max-width: 800px;
    line-height: 1.8;
    color: var(--muted);
}

.partners img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    margin-top: 40px;
    object-fit: cover;
    object-position: center;
    background: #0a0a0d;
    display: block;
    box-shadow: 0 0 25px rgba(0,180,255,0.15);
    border: 1px solid rgba(255,255,255,0.05);
    filter: brightness(0.92) contrast(1.1); /* dunkler & satter */
    transition: all 0.3s ease;
}

.partners img:hover {
    transform: scale(1.02);
    filter: brightness(1.05) contrast(1.2);
    box-shadow: 0 0 35px rgba(0,180,255,0.25);
}

.partners .btn {
    margin-top: 25px;
}

/* PARTNER SECTION – Text links, Bild rechts */
#partners {
    background: linear-gradient(180deg, #0a0a0d 0%, #101014 100%);
    border-radius: 15px;
    padding: 100px 10%;
    margin: 80px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap; /* sorgt für mobile Umbruch */
}

#partners .partners {
    flex: 1 1 500px;
    max-width: 600px;
    text-align: left;
}

#partners .partners h2 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: left;
}

#partners .partners p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

#partners img {
    flex: 1 1 500px;
    max-width: 600px;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 0 25px rgba(0,180,255,0.15);
    border: 1px solid rgba(255,255,255,0.05);
    filter: brightness(0.92) contrast(1.05);
    transition: all 0.3s ease;
}

#partners img:hover {
    transform: scale(1.02);
    filter: brightness(1.05) contrast(1.2);
}

/* Responsive – Bild unter Text ab Tablet */
@media (max-width: 900px) {
    #partners {
        flex-direction: column;
        text-align: center;
    }
    #partners .partners {
        text-align: center;
    }
}
/* FOOTER */
footer {
    background: #070709; padding: 40px 10%; text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}
footer a { color: var(--muted); margin: 0 10px; text-decoration: none; }
footer a:hover { color: var(--accent); }
footer p { color: var(--muted); margin-top: 10px; }

/* ANIMATIONS */
@keyframes pulseAccent {
    0%,100% { text-shadow: 0 0 20px rgba(0,180,255,0.5); }
    50% { text-shadow: 0 0 40px rgba(0,180,255,0.9); }
}

@media (max-width:768px){
    .hero h1{font-size:2.3rem;}
    header{flex-direction:column;gap:10px;}
    nav{flex-wrap:wrap;justify-content:center;}
}
/* PARTNER SECTION (Text links, Bild rechts) */
#partners {
    background: linear-gradient(180deg, #0a0a0d 0%, #101014 100%);
    padding: 100px 10%;
    border-radius: 15px;
    margin: 80px auto;
}

.partner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

.partner-text {
    flex: 1 1 500px;
    max-width: 600px;
    text-align: left;
}

.partner-text h2 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 25px;
}

.partner-text p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.partner-text ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.partner-text ul li {
    color: var(--text);
    font-weight: 500;
    padding-left: 20px;
    position: relative;
}

.partner-text ul li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.partner-image {
    flex: 1 1 500px;
    max-width: 600px;
}

.partner-image img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 0 25px rgba(0,180,255,0.15);
    border: 1px solid rgba(255,255,255,0.05);
    filter: brightness(0.95) contrast(1.05);
    transition: all 0.3s ease;
}

.partner-image img:hover {
    transform: scale(1.03);
    filter: brightness(1.05) contrast(1.15);
}

/* Responsive */
@media (max-width: 900px) {
    .partner-container {
        flex-direction: column;
        text-align: center;
    }
    .partner-text {
        text-align: center;
    }
}
/* ===== Rechtliches / Datenschutz Seiten ===== */
.legal-content {
    padding: 120px 10%;
    background: var(--custom-bg, #0a0a0d);
    color: var(--custom-text, #eaeaea);
    line-height: 1.8;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
    color: var(--custom-accent, #00b4ff);
    margin-top: 40px;
    margin-bottom: 15px;
    font-family: 'Ethnocentric', sans-serif;
    text-shadow: 0 0 25px rgba(0,180,255,0.3);
}

.legal-content p,
.legal-content li {
    color: var(--custom-text, #cfcfcf);
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--custom-accent, #00b4ff);
    text-decoration: none;
    transition: 0.3s;
}
.legal-content a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--custom-accent, #00b4ff);
}

.legal-content table {
    border-collapse: collapse;
    width: 100%;
    margin: 25px 0;
    border: 1px solid rgba(255,255,255,0.05);
}

.legal-content table td {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 15px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 80px 6%;
    }
}
/* ===== FAQ Styling ===== */
.faq-content {
    text-align: center;
    padding: 100px 10%;
}

.faq-content h2 {
    color: var(--accent, #00b4ff);
    font-size: 2rem;
    margin-bottom: 40px;
    font-family: 'Ethnocentric', sans-serif;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.faq-item {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text, #eaeaea);
    padding: 18px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.faq-item:hover {
    color: #fff;
    border-color: var(--accent, #00b4ff);
    box-shadow: 0 0 25px rgba(0,180,255,0.3);
    transform: translateY(-3px);
}

.faq-note {
    font-size: 0.95rem;
    color: var(--muted, #9e9e9e);
}

.faq-note a {
    color: var(--accent, #00b4ff);
    text-decoration: none;
}

.faq-note a:hover {
    text-shadow: 0 0 10px var(--accent, #00b4ff);
}
/* ===== Einzelne FAQ-Seiten ===== */
.faq-article {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 10%;
    color: var(--text);
    text-align: left;
    line-height: 1.8;
}

.faq-article h2 {
    color: var(--accent);
    font-family: 'Ethnocentric', sans-serif;
    margin-bottom: 25px;
    font-size: 2rem;
    text-align: center;
}

.faq-article p {
    font-size: 1rem;
    color: var(--muted);
}

.faq-article .btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 25px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-article .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0,180,255,0.4);
}
/* ===== INFO SECTION ===== */
.info-section {
    padding: 100px 10%;
    background: linear-gradient(180deg, #0a0a0d 0%, #101014 100%);
    border-radius: 15px;
    margin: 80px auto;
    text-align: center;
}

.info-section h2 {
    color: var(--accent);
    font-family: 'Ethnocentric', sans-serif;
    margin-bottom: 60px;
    font-size: 2rem;
    text-shadow: 0 0 25px rgba(0,180,255,0.3);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-content: center;
}

.info-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0,180,255,0.05);
}

.info-box:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 0 35px rgba(0,180,255,0.2);
}

.info-box h3 {
    color: var(--accent);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.info-box p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .info-section {
        padding: 80px 6%;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-content: center;
    align-items: start;
}

/* sorgt dafür, dass letzte Karte zentriert wird */
.info-grid::after {
    content: "";
    flex: auto;
}
/* ===== PARTNER FORM ===== */
.partner-form-section {
    padding: 100px 10%;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0d 0%, #101014 100%);
    border-radius: 15px;
    margin: 80px auto;
}

.partner-form-section h2 {
    color: var(--accent);
    font-family: 'Ethnocentric', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.partner-form-section p {
    color: var(--muted);
    margin-bottom: 40px;
}

.partner-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.partner-form .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-form input,
.partner-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.partner-form input:focus,
.partner-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0,180,255,0.3);
    outline: none;
}

.partner-form label {
    display: block;
    color: var(--text);
    font-weight: 500;
    margin: 20px 0 10px;
}

.checkbox-group label {
    display: inline-block;
    margin-right: 20px;
    color: var(--muted);
    cursor: pointer;
}

.partner-form .btn {
    display: block;
    width: 100%;
    margin-top: 25px;
    text-align: center;
}

.form-note {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .partner-form .form-row {
        flex-direction: column;
    }
}
/* ===== Partner Showcase ===== */
.partner-showcase {
    padding: 100px 10%;
    background: linear-gradient(180deg, #0a0a0d 0%, #101014 100%);
    text-align: center;
}

.partner-showcase h2 {
    color: var(--accent);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-family: 'Ethnocentric', sans-serif;
    text-shadow: 0 0 25px rgba(0,180,255,0.3);
}

.partner-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-items: center;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px 20px;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0,180,255,0.1);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0,180,255,0.3);
    border-color: rgba(0,180,255,0.3);
}

.partner-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(1.1) contrast(1.1);
}

.partner-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.partner-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.btn.small {
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: 30px;
}

/* ===== Partner Map ===== */
.partner-map {
    padding: 100px 10%;
    background: linear-gradient(180deg, #0a0a0d 0%, #101014 100%);
    text-align: center;
}

.partner-map h2 {
    color: var(--accent);
    font-family: 'Ethnocentric', sans-serif;
    margin-bottom: 10px;
}

.partner-map p {
    color: var(--muted);
    margin-bottom: 40px;
}

#map {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 25px rgba(0,180,255,0.1);
}
/* ===== Support Page ===== */
.support-intro {
    padding: 100px 10%;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0d 0%, #101014 100%);
}

.support-intro h2 {
    color: var(--accent);
    font-family: 'Ethnocentric', sans-serif;
    margin-bottom: 20px;
}

.support-intro p {
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.support-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.support-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    width: 300px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(0,180,255,0.05);
}

.support-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(0,180,255,0.2);
    border-color: rgba(0,180,255,0.3);
}

.support-card img {
    width: 80px;
    margin-bottom: 20px;
    filter: brightness(1.2) contrast(1.2);
}

.support-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.support-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.support-form-section {
    background: #0a0a0d;
    padding: 100px 10%;
    text-align: center;
}

.support-form {
    max-width: 700px;
    margin: 0 auto;
}

.support-form input,
.support-form select,
.support-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 15px;
}

.support-form .form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.support-form select {
    color: var(--muted);
}

.support-form textarea {
    resize: none;
}

.support-form .btn {
    margin-top: 15px;
}
.support-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.support-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--accent);
    filter: drop-shadow(0 0 10px rgba(0,180,255,0.4));
    transition: all 0.3s ease;
}

.support-card:hover .support-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0,180,255,0.7));
}
.support-options {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.support-card {
    flex: 1 1 280px;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(0,180,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.support-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(0,180,255,0.3);
    border-color: rgba(0,180,255,0.4);
}

.support-card h3 {
    margin: 15px 0 10px;
    font-weight: 600;
    color: #fff;
}

.support-card p {
    flex-grow: 1;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Mobile Anpassung */
@media (max-width: 900px) {
    .support-options {
        flex-direction: column;
        align-items: center;
    }
    .support-card {
        width: 100%;
        max-width: 420px;
    }
}
.support-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--accent);
    filter: drop-shadow(0 0 10px rgba(0,180,255,0.4));
    transition: all 0.3s ease;
}

.support-card:hover .support-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0,180,255,0.8));
}
img:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 0 60px rgba(0,180,255,0.6);
}
/* ======================================
   📱 Mobile Fixes & Zentrierung (by Prinzessin)
   ====================================== */

/* ✅ Hero-Bereich – mehr Luft & bessere Mitte */
.hero {
    height: 80vh; /* war 50vh – mehr Raum für Text */
    background-attachment: scroll; /* verhindert Gequetschtheit auf Mobile */
    background-position: center center;
    background-size: cover;
    padding: 0 5%;
}

.hero h1 {
    font-family: 'Ethnocentric', sans-serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 0.6rem;
}

.hero p {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
    text-align: center;
    color: #ccc;
}

/* ✅ Zentriere alle Haupt-Sektionen */
section, .trust, .partner-container, .rule-block, .info-section, .support-intro {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
}

/* ✅ Mobile Navigation Fix */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 10px 5%;
    }
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    nav a {
        font-size: 0.9rem;
        margin: 5px;
    }
}

/* ✅ Hero Responsive */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 60vh;
        padding-top: 100px;
        padding-bottom: 80px;
        background-attachment: scroll;
        background-position: center top;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

/* ✅ Abstand zwischen Sektionen */
section {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* ✅ Zentrierte Trust-Section */
.trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

/* ✅ Bilder nicht gequetscht auf Handy */
.trust img,
.rule-image img,
.partner-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* ✅ Partnerbereich mittig */
.partner-container {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.partner-text {
    text-align: center;
}

/* ✅ Kleine Footer-Optimierung */
footer {
    padding: 60px 5%;
    font-size: 0.9rem;
}
/* =====================================
   👑 Fix: Hero-Start sichtbar unter Header
   ===================================== */

/* Header bleibt fixiert, aber Hero berücksichtigt Höhe */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 🔧 Hero rückt automatisch unter den Header */
.hero {
    margin-top: 90px; /* etwa Höhe des Headers */
    height: calc(80vh - 90px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

/* Mobile – Header kleiner, Abstand angepasst */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 8px;
        padding: 10px 5%;
    }
    .hero {
        margin-top: 110px; /* Header etwas höher bei 2-reihiger Navigation */
        height: auto;
        min-height: 70vh;
        padding: 60px 5% 80px;
    }
}
/* ======================================
   💙 Footer & EVC License Fix (by Prinzessin)
   ====================================== */

/* Footer-Container bleibt schön mittig */
footer {
    background: #070709;
    padding: 60px 5%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Lizenzbild wird nie zu groß */
footer .license {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

footer .license img {
    max-width: 280px; /* war zu groß auf Mobile */
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0,180,255,0.2);
    transition: all 0.3s ease;
}

footer .license img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(0,180,255,0.4);
}

/* Footer-Links schön gestaffelt */
footer .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

footer .links a {
    color: var(--muted);
    text-decoration: none;
    transition: 0.3s;
}

footer .links a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
}

/* ✅ Mobile Ansicht */
@media (max-width: 768px) {
    footer .license img {
        max-width: 220px;
    }

    footer .links {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        font-size: 0.9rem;
    }
}
/* ==========================================
   👑 Mobile Fix: Trust / Warum DR-CODING zentrieren
   ========================================== */
@media (max-width: 900px) {
    .trust {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 60px 8% !important;
    }

    .trust-image {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .trust-image img {
        max-width: 90%;
        height: auto;
        transform: rotate(0deg); /* kein Schiefstand auf Handy */
    }

    .trust-text {
        order: 2;
        max-width: 600px;
        text-align: center;
    }

    .trust-text h2 {
        font-size: 1.9rem;
        color: var(--accent);
        margin-bottom: 15px;
    }

    .trust-text p {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--text);
        text-align: center;
    }
}
/* =====================================
   👑 Mobile Fix: Konfigurator mittig & ohne Seitenrand
   ===================================== */
#konfigurator {
    overflow-x: hidden !important;
}

#konfigurator iframe {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    border: none;
}

/* Entfernt mögliche Überbreite durch Padding auf kleinen Screens */
@media (max-width: 768px) {
    #konfigurator {
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: center !important;
    }

    #konfigurator h2,
    #konfigurator p {
        padding: 0 6%;
        text-align: center;
    }
}
/* ======================================
   👑 Einheitlicher Button-Stil (blau)
   ====================================== */
.btn,
.faq-article .btn,
.partner-form .btn,
.support-form .btn {
    background: var(--accent, #00b4ff) !important;
    color: #fff !important;
    border: none !important;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(0,180,255,0.35);
    transition: all 0.3s ease;
}

/* Hover-Effekt */
.btn:hover,
.faq-article .btn:hover,
.partner-form .btn:hover,
.support-form .btn:hover {
    background: #09c5ff !important;
    box-shadow: 0 0 30px rgba(0,180,255,0.6);
    transform: scale(1.05);
}

/* Optionaler sanfter Glow (nur falls du’s magst 💫) */
.btn:active {
    transform: scale(0.97);
    box-shadow: 0 0 15px rgba(0,180,255,0.4) inset;
}
/* ===== Regeln-Section (sauber zentriert) ===== */
#rules {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 10%;
}

/* Jeder Block = 2 Spalten, mittig ausgerichtet */
.rule-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
    margin: 80px 0;
}

/* Variante mit Bild rechts */
.rule-block.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

/* Bild-Container & Bild */
.rule-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.rule-image img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 0 28px rgba(0,180,255,0.18);
}

/* Text-Block */
.rule-text h3 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 14px;
    color: #00b4ff;
}
.rule-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cfd3d6;
}

/* Extra Abstand zwischen den drei Blöcken (optional) */
#rules .rule-block + .rule-block {
    margin-top: 100px;
}

/* Mobile/Tablet: untereinander stapeln */
@media (max-width: 980px) {
    .rule-block,
    .rule-block.reverse {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: left;
    }
    /* Reihenfolge: Text vor Bild – sieht auf Mobile meist besser aus */
    .rule-block .rule-text { order: 1; }
    .rule-block .rule-image { order: 2; }
    .rule-block.reverse .rule-text { order: 1; }
    .rule-block.reverse .rule-image { order: 2; }

    .rule-text h3 { font-size: 1.7rem; }
    .rule-text p { font-size: 1rem; }
}
.rule-image img {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    box-shadow: 0 0 28px rgba(0,180,255,0.18);
    transition: transform 0.4s ease;
}

.rule-image img:hover {
    transform: scale(1.02);
}

/* Mobile: Bilder nicht zu hoch ziehen */
@media (max-width: 980px) {
    .rule-image img {
        width: 100%;
        height: auto;
        max-height: 360px;
        object-fit: cover;
        border-radius: 14px;
    }
}

