/* ===========================
   FONTS.CSS
   =========================== */

/* Google Fonts – Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

/* Standard Schriftklasse (optional) */
body,
input,
textarea,
button {
    font-family: 'Inter', sans-serif;
}


/* ===================================
   BASE.CSS – SA AUTOMATEN
   Grundfarben, Schrift, Buttons, Reset
   =================================== */

:root {
    /* Farben */
    --color-primary: #7ba832;
    --color-primary-dark: #577c25;
    --color-secondary: #e67e22;
    --color-light: #f4f8f2;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text: #222222;
    --color-muted: #888888;
    --color-error: #c0392b;

    /* Typografie */
    --font-base: 'Inter', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    /* Abstände */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 60px;

    /* Radius & Schatten */
    --radius: 6px;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 18px rgba(0, 0, 0, 0.1);
}

/* =====================
   Reset
===================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-light);
    overflow-x: hidden;
}

/* =====================
   Überschriften & Text
===================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
    color: var(--color-primary-dark);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

/* =====================
   Buttons
===================== */
.btn {
    display: inline-block;
    background-color: var(--color-primary);
    color: #fff;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--color-primary-dark);
}

.btn.secondary {
    background-color: var(--color-secondary);
}

.btn.small {
    padding: 6px 12px;
    font-size: 0.9rem;
}

/* =====================
   Hilfsklassen
===================== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mt-lg {
    margin-top: var(--space-lg);
}

/* ===================================
   ANIMATIONS.CSS – SA AUTOMATEN
   Basis-Keyframes & Sichtbarkeit
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseZoom {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Sichtbarkeitsklassen */
.visible {
    opacity: 1 !important;
    transform: none !important;
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ===================================
   LAYOUT.CSS – SA AUTOMATEN
   Globale Layout-Gitter & Struktur
   =================================== */

/* =====================
   Section-Spacings
===================== */
.section {
    padding: var(--space-lg) 10%;
    background-color: var(--color-white);
}

.section.alt {
    background-color: var(--color-light);
}

/* =====================
   Media-Block (Bild & Text)
===================== */
.media-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.media-block.reverse {
    flex-direction: row-reverse;
}

.media-img,
.media-text {
    flex: 1;
    min-width: 0;
}

.media-img img {
    width: 100%;
    height: auto;
    display: block;
}


/* =====================
   Grid 3-Spalten & 2-Spalten
===================== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

/* =====================
   Responsive Layout
===================== */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .media-block,
    .media-block.reverse {
        flex-direction: column;
    }
}

    .media-text,
    .media-img {
        text-align: center;
    }

    .section {
        padding: var(--space-md);
    }
}

/* ===================================
   DATENSCHUTZ.CSS – SA Automaten
   =================================== */

.datenschutz-section {
    background-color: var(--color-light);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.datenschutz-heading {
    text-align: center;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-lg);
}

.info-box {
    background: #fff;
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.info-box h3 {
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: var(--space-xs);
    font-size: 1.2rem;
}

.info-box p {
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.info-box ul {
    list-style: disc;
    margin-left: 1rem;
    margin-bottom: var(--space-sm);
}

.back-button {
    text-align: center;
    margin-top: var(--space-lg);
}

.disclaimer-section {
    background-color: var(--color-light);
    padding: var(--space-xl) 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-lg);
}

.info-box {
    background: #fff;
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.info-box h3 {
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: var(--space-xs);
    font-size: 1.2rem;
}

.back-button {
    text-align: center;
    margin-top: var(--space-lg);
}

/* ===================================
   FOOTER.CSS – SA AUTOMATEN
   Footer-Styling & Animation
   =================================== */

.site-footer {
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: var(--space-lg) 10%;
    font-size: 0.95rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    align-items: center;
}

.footer-links nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: underline;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius);
}

.footer-badge img {
    height: 32px;
    width: auto;
    animation: pulseZoom 3s ease-in-out infinite;
}

.footer-badge span {
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .footer-content {
        text-align: center;
    }

    .footer-links nav {
        justify-content: center;
    }

    .footer-badge {
        flex-direction: column;
        text-align: center;
    }
}
/* ===================================
   HERO – SA Automaten GmbH
   =================================== */

.hero {
    background: url('../images/header-bg.png') center/cover no-repeat;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 600px;
    animation: fadeIn 1.5s ease-out forwards;
    opacity: 0;
}

.logo {
    max-width: 180px;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    color: #ffffffcc;
}

.btn {
    background-color: var(--color-primary);
    padding: 12px 24px;
    border-radius: var(--radius);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: var(--color-primary-dark);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .logo {
        max-width: 140px;
    }
}

.impressum-section {
    background-color: var(--color-light);
    padding: var(--space-xl) 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-lg);
}

p {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    line-height: var(--line-height-base);
}

.back-button {
    text-align: center;
    margin-top: var(--space-lg);
}

/* ===================================
   KONTAKT.CSS – SA AUTOMATEN
   Kontaktformular & Formularfelder
   =================================== */

.kontakt-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.kontakt-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--color-text);
}

.kontakt-form input,
.kontakt-form textarea,
.kontakt-form select {
    width: 100%;
    padding: var(--space-sm);
    margin-bottom: var(--space-md);
    border: 1px solid #ccc;
    border-radius: var(--radius);
    font-family: var(--font-base);
    font-size: 1rem;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus,
.kontakt-form select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(123, 168, 50, 0.15);
}

.kontakt-form button,
.kontakt-form .btn {
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    padding: var(--space-sm);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.3s ease;
}

.kontakt-form button:hover {
    background: var(--color-primary-dark);
}

/* Fehlernachricht */
.form-error {
    color: var(--color-error);
    font-size: 0.9rem;
    margin-top: -10px;
    margin-bottom: var(--space-sm);
}

/* Responsive */
@media (max-width: 768px) {
    .kontakt-form {
        padding: var(--space-md);
    }
}

.kontakt-section {
    background-color: var(--color-light);
    padding: var(--space-xl) 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-lg);
}

.kontakt-form {
    background: #fff;
    padding: var(--space-md);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-lg);
}

.kontakt-form input,
.kontakt-form textarea {
    width: 100%;
    padding: var(--space-sm);
    margin-bottom: var(--space-md);
    border: 1px solid #ccc;
    border-radius: var(--radius);
    font-family: inherit;
}

.info p {
    margin-bottom: var(--space-sm);
}

.back-button {
    text-align: center;
    margin-top: var(--space-lg);
}

/* ===================================
   LEISTUNGEN SECTION – SA Automaten
   =================================== */

.leistungen-section {
    background-color: var(--color-white);
    padding: var(--space-xl) 0;
}

.leistungen-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.leistungen-wrapper.reverse {
    flex-direction: row-reverse;
}

.leistungen-text {
    flex: 1 1 400px;
}

.leistungen-text h2 {
    color: var(--color-primary-dark);
    margin-bottom: var(--space-md);
}

.leistungen-list {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.leistungen-list li {
    margin-bottom: var(--space-sm);
    padding-left: 1.5rem;
    position: relative;
}

.leistungen-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.leistungen-image {
    flex: 1 1 300px;
    text-align: center;
}

.leistungen-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .leistungen-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .leistungen-text {
        padding-top: var(--space-md);
    }

    .leistungen-list li {
        padding-left: 0;
    }

    .leistungen-list li::before {
        display: none;
    }
}

/* ===================================
   OASIS SECTION – SA Automaten
   =================================== */

.oasis-section {
    background-color: var(--color-light);
    padding: var(--space-xl) 0;
}

.oasis-wrapper {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.oasis-text {
    flex: 1 1 400px;
}

.oasis-text h2 {
    color: var(--color-primary-dark);
    margin-bottom: var(--space-md);
}

.oasis-text p {
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.oasis-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    background-color: #fff;
    padding: var(--space-sm);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.oasis-badge img {
    width: 50px;
    height: auto;
}

.oasis-image {
    flex: 1 1 300px;
    text-align: center;
}

.oasis-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.btn.small {
    font-size: 0.9rem;
    padding: 10px 20px;
}

@media (max-width: 768px) {
    .oasis-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .oasis-text {
        order: 2;
    }

    .oasis-image {
        order: 1;
        margin-bottom: var(--space-md);
    }

    .oasis-badge {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
   SECTION: SCHLIESSZEITEN
   =================================== */

#schliesszeiten {
    background-color: var(--color-light);
    padding: var(--space-xl) 10%;
}

#schliesszeiten h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--color-primary-dark);
}

#schliesszeiten p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: var(--line-height-base);
    margin-bottom: var(--space-sm);
}

.schliessliste {
    list-style: none;
    padding-left: 0;
    margin: var(--space-md) 0;
}

.schliessliste li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
    position: relative;
    padding-left: 1.4em;
}

.schliessliste li::before {
    content: "🔒";
    position: absolute;
    left: 0;
    top: 0;
}

.small-note {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-top: var(--space-sm);
}

/* Icon Animation */
.animated-icon {
    margin-bottom: var(--space-sm);
}

.media-img,
.media-text {
    flex: 1 1 50%;
    text-align: left;
}

@media (max-width: 768px) {
    .media-img,
    .media-text {
        flex: unset;
        text-align: center;
    }
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .media-block {
        flex-direction: column;
        text-align: center;
    }

    .media-block.reverse {
        flex-direction: column-reverse;
    }

    .media-text {
        text-align: center;
    }

    .schliessliste li {
        text-align: left;
        padding-left: 1.4em;
    }
}

/* ===================================
   SECTION: SPIELERSCHUTZ / OASIS
   =================================== */

#oasis-sperre {
    background-color: #f4fdf4;
    border-top: 5px solid var(--color-primary);
    padding: var(--space-xl) var(--space-md);
}

#oasis-sperre h2 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
}

#oasis-sperre p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: var(--line-height-base);
    margin-bottom: var(--space-sm);
}

/* Hinweisbox (Badge) */
.oasis-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background-color: #eaffea;
    padding: var(--space-sm);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.oasis-badge img {
    height: 48px;
    width: auto;
}

.oasis-badge-text {
    font-size: 0.95rem;
    color: var(--color-text);
}

/* Kleine Button-Variante */
.btn.small {
    font-size: 0.9rem;
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn.small:hover {
    background-color: var(--color-primary-dark);
}

/* Responsive Layout */
@media (max-width: 768px) {
    .media-block {
        flex-direction: column;
        text-align: center;
    }

    .media-block.reverse {
        flex-direction: column-reverse;
    }

    .media-img {
        order: -1;
        margin-bottom: var(--space-sm);
    }

    .media-text {
        flex: unset;
        text-align: center;
    }

    .oasis-badge {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===================================
   STANDORTE – Spielhallenübersicht
   =================================== */

.standorte-section {
    background-color: var(--color-light);
    padding: var(--space-xl) 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.location-card {
    background-color: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
}

.slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.location-info {
    padding: var(--space-md);
}

.location-info h3 {
    color: var(--color-primary-dark);
    margin-bottom: var(--space-sm);
}

.location-info p {
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.location-info a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.age-warning {
    color: #c62828;
    font-weight: bold;
}

@media (max-width: 768px) {
    .slide {
        aspect-ratio: 16/9;
    }
}

/* ===================================
   VORTEILE SECTION – SA Automaten
   =================================== */

.vorteile-section {
    background-color: var(--color-light);
    padding: var(--space-xl) 0;
}

.vorteile-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.vorteile-image {
    flex: 1 1 300px;
    text-align: center;
}

.vorteile-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.vorteile-text {
    flex: 1 1 400px;
}

.vorteile-text h2 {
    color: var(--color-primary-dark);
    margin-bottom: var(--space-md);
}

.vorteile-list {
    list-style: none;
    padding-left: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.vorteile-list li {
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: 1.5rem;
}

.vorteile-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

@media (max-width: 768px) {
    .vorteile-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .vorteile-text {
        padding-top: var(--space-md);
    }

    .vorteile-list li {
        padding-left: 0;
    }

    .vorteile-list li::before {
        display: none;
    }
}

.zutritt-section {
    background-color: var(--color-light);
    padding: var(--space-xl) 0;
}


.zutritt-image,
.zutritt-text {
    flex: 1 1 400px;
}

.zutritt-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.animated-icon {
    margin-bottom: var(--space-md);
}

.zutritt-text h2 {
    color: var(--color-primary-dark);
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
}

.zutritt-text p {
    margin-bottom: var(--space-sm);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {

    .animated-icon {
        text-align: center;
    }
}

/* ===================================
   PAGE: SPIELERSCHUTZ – UNTERSEITE
   =================================== */

#spielerschutz-2 {
    background: #f9f9ff;
    border-top: 5px solid var(--color-primary);
    padding: var(--space-xl) var(--space-sm);
    text-align: center;
}

#spielerschutz-2 h2 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
}

#spielerschutz-2 p {
    font-size: 1rem;
    color: var(--color-text);
    max-width: 800px;
    margin: 0 auto var(--space-sm);
    line-height: var(--line-height-base);
}

.schutz-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.schutz-box {
    flex: 1 1 300px;
    background: #f4f9f7;
    padding: var(--space-md);
    border-left: 5px solid var(--color-primary);
    border-radius: var(--radius);
}

/* Hinweisfeld */
.spielerschutz-hinweis {
    background: #fff6e9;
    border-left: 6px solid var(--color-secondary);
    padding: var(--space-sm) var(--space-md);
    font-size: 1rem;
    color: var(--color-text);
    margin: var(--space-md) auto;
    max-width: 900px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.spielerschutz-hinweis a {
    color: var(--color-secondary);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.spielerschutz-hinweis a:hover {
    color: #c0392b;
    text-decoration: none;
}

/* Badge Animation */
.spielerschutz-badge {
    display: inline-block;
    margin-top: var(--space-sm);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: bold;
    font-size: 0.95rem;
    animation: pulseBadge 2s infinite ease-in-out;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); opacity: 0.95; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Mobile */
@media (max-width: 768px) {
    .spielerschutz-hinweis {
        font-size: 0.95rem;
        padding: 12px 15px;
    }

    #spielerschutz-hinweis p {
        font-size: 0.95rem;
    }
}

/* ===================================
   SPIELERSCHUTZ-HINWEIS
   =================================== */

.spielerschutz-hinweis-box {
    background-color: #fff8e1;
    color: #5d4037;
    padding: var(--space-sm) var(--space-md);
    border-left: 5px solid #ff9800;
    border-radius: var(--radius);
    margin: var(--space-md) auto;
    max-width: 900px;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
}

.spielerschutz-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.spielerschutz-hinweis-box a {
    color: #e65100;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.spielerschutz-hinweis-box a:hover {
    color: #bf360c;
    text-decoration: none;
}

@media (max-width: 768px) {
    .spielerschutz-hinweis-box {
        font-size: 0.95rem;
        padding: 12px 15px;
        flex-direction: column;
        text-align: center;
    }

    .spielerschutz-icon {
        margin-bottom: 5px;
    }
}
