/* --- Generelle Stile für alle Seiten --- */
html, body {
    margin: 0;
    padding: 0;
    background-image: url('media/Goldene Spotlights und begeisterte Menge.png');
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    color: white;
}

/* Header Styling */
header {
    background: #333;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: gold;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

/* Hover-Effekt für Links */
nav ul li a:hover,
nav ul li a.active {
    color: white;
}

/* --- Inhalt (Content) --- */
.content {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 0 auto;
    padding: 150px 20px 20px;
    text-align: center;
}

/* Partner-Seite spezifisch */
body.page-partner .parallax {
    height: 60%;
    background-position: center 0%;
}

body.page-partner .content {
    padding: 250px 20px 20px;
}

/* Partner Container (Horizontales Layout) */
.partner-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 0 auto 30px;
}

.partner-box {
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.partner-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.partner-box h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #fff;
}

.partner-box p {
    font-size: 1em;
    color: #ddd;
    margin-bottom: 15px;
}

body.page-coop .text-box {
    background: rgba(0, 0, 0, 0.7);  /* Kooperationen - Hintergrund */
}

body.page-coop .content {
    padding: 230px 20px 20px;  /* Kooperationen - Abstand oben */
}

body.page-shop .text-box {
    background: rgba(0, 0, 0, 0.7);  /* Shop - Hintergrund */
}

body.page-shop .content {
    padding: 120px 20px 20px;  /* Shop - Abstand oben */
}

body.page-contact .text-box {
    background: rgba(0, 0, 0, 0.7);  /* Kontakt - Hintergrund */
}

body.page-contact .content {
    padding: 130px 20px 20px;  /* Kontakt - Abstand oben */
}

body.page-impressum .text-box {
    background: rgba(0, 0, 0, 0.7);  /* Impressum - Hintergrund */
}

body.page-impressum .content {
    padding: 140px 20px 20px;  /* Impressum - Abstand oben */
}

/* --- Buttons --- */
button {
    background: #FFD700;
    color: #222;
    font-weight: bold;
    padding: 12px;
    font-size: 1.1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #e5c000;
}

/* --- Social Media Links --- */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links img {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.2);
    opacity: 0.8;
    cursor: pointer;
}

/* --- Footer --- */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 50px;
}

/* --- Parallax (Hintergrund) --- */
.parallax {
    background-image: url('media/Goldene Spotlights und begeisterte Menge.png');
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh; /* Vollbild */
}

/* Für die Partner-Seite: Parallax-Hintergrund verfeinern */
body.page-partner .parallax {
    height: 60%; /* Anpassen für die Partner-Seite */
    background-position: center 0%; /* Position nach oben verschieben */
}

/* --- Styling für das Kontaktformular und Kooperationsformular --- */
.contact-form.text-box,
.coop-form.text-box {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7); /* Halbtransparenter Hintergrund */
    border-radius: 15px;
    color: white;
    text-align: center;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.coop-form input,
.coop-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    font-size: 1em;
}

.contact-form button,
.coop-form button {
    background-color: #FFD700;
    color: #000;
    border: none;
    padding: 12px 30px;
    font-size: 1.2em;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover,
.coop-form button:hover {
    background-color: #FFCC00;
}

/* Form-Group Styling */
.coop-form .form-group {
    margin-bottom: 15px;
}

.coop-form .form-group label {
    display: block;
    font-size: 1.1em;
    margin-bottom: 5px;
    color: #fff;
}

/* Checklist Styling für Haken-Symbole */
.checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.checklist li {
    position: relative;
    padding-left: 30px;
    margin: 10px 0;
    font-size: 1.2em;
    color: #fff;
}

.checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #FFD700; /* Goldene Haken */
    font-size: 1.2em;
}

/* --- Social Media-Icons --- */
.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    position: relative;
    z-index: 10;
}

.social-icons img {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
    opacity: 0.8;
    cursor: pointer;
}

/* --- Paypal Button --- */
a.paypal {
    color: white; /* Weiße Schriftfarbe */
    text-decoration: none; /* Entfernt den Unterstrich */
    transition: color 0.3s ease; /* Sanfter Farbübergang beim Hover */
}

a.paypal:hover {
    color: #FFD700; /* Goldene Farbe beim Hover */
}

.donate-button {
    margin-top: 20px;
    text-align: center;
}

.donate-button input[type="image"] {
    max-width: 200px;
    height: auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.donate-button input[type="image"]:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* --- Shop-Seite --- */
.shop-intro {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 15px;
    max-width: 900px;
    margin: 50px auto;
    color: #fff;
    text-align: center;
}

.shop-intro h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.shop-intro ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.shop-intro ul li {
    margin: 10px 0;
}

.shop-intro .btn-shop {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #FFD700;
    color: #222;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s;
}

.shop-intro .btn-shop:hover {
    transform: scale(1.05);
}

/* --- Anpassungen für mobile Geräte --- */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .content {
        padding: 120px 20px 20px;
    }

    .social-links {
        flex-direction: column;
    }

    .social-links img {
        width: 80px; 
    }

    .donate-button input[type="image"] {
        max-width: 120px;
    }

    .shop-intro {
        padding: 15px;
    }
}

/* Media Query für Handys (max-width: 480px) */
@media (max-width: 480px) {
    body {
        padding: 5px;
    }

    nav ul {
        text-align: center;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .content {
        padding: 100px 20px 20px;
    }

    .shop-intro {
        padding: 10px;
    }

    .social-links img {
        width: 50px;
    }

    .contact-form,
    .coop-form {
        width: 100%;
    }
}


/* Minispiele-Seite */
body.page-minispiele .content {
    padding: 150px 20px 20px;
}

.minispiele-list.text-box {
    max-width: 900px;
    margin: 50px auto;
}

.game-item {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: left;
}

.game-item h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.game-item p {
    font-size: 1.1em;
    color: #fff;
    margin-bottom: 15px;
}

.btn-game {
    background: #FFD700;
    color: #222;
    font-weight: bold;
    padding: 12px 25px;
    font-size: 1.1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-game:hover:not(:disabled) {
    background: #FFCC00;
    transform: scale(1.05);
}

.btn-game:disabled {
    background: #666;
    cursor: not-allowed;
}

/* --- Generelle Stile für alle Seiten --- */
html, body {
    margin: 0;
    padding: 0;
    background-image: url('media/Goldene Spotlights und begeisterte Menge.png');
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

/* Header Styling */
header {
    background: #333;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: gold;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: white;
}

/* Inhalt (Content) */
.content {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 0 auto;
    padding: 150px 20px 20px;
    text-align: center;
}

/* Textboxen */
.text-box {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 30px;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.text-box h1,
.text-box h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
}

.text-box p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 20px;
}

/* Buttons */
button {
    background: #FFD700;
    color: #222;
    font-weight: bold;
    padding: 12px;
    font-size: 1.1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #e5c000;
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links img {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.2);
    opacity: 0.8;
    cursor: pointer;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 50px;
}

/* Parallax (Hintergrund) */
.parallax {
    background-image: url('media/Goldene Spotlights und begeisterte Menge.png');
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

/* Paypal Button */
.donate-button {
    margin-top: 20px;
    text-align: center;
}

.donate-button input[type="image"] {
    max-width: 200px;
    height: auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.donate-button input[type="image"]:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Minispiele-Seite */
body.page-minispiele .content {
    padding: 150px 20px 20px;
}

.minispiele-list.text-box {
    max-width: 900px;
    margin: 50px auto;
}

.game-item {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: left;
}

.game-item h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.game-item p {
    font-size: 1.1em;
    color: #fff;
    margin-bottom: 15px;
}

.btn-game {
    background: #FFD700;
    color: #222;
    font-weight: bold;
    padding: 12px 25px;
    font-size: 1.1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-game:hover:not(:disabled) {
    background: #FFCC00;
    transform: scale(1.05);
}

.btn-game:disabled {
    background: #666;
    cursor: not-allowed;
}

/* Catch the Logo Spiel */
.game-container.text-box {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    color: white;
    text-align: center;
}

#game-canvas {
    width: 100%;
    height: 400px;
    background: rgb(133, 0, 0);
    border-radius: 8px;
    margin: 20px 0;
    display: block;
    visibility: visible;
    opacity: 1;
}

#game-ui {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.2em;
}

#game-ui p {
    margin: 0;
    color: #FFD700;
}

#game-ui span {
    color: #fff;
}

/* Responsivität für Spiel-Canvas */
@media (max-width: 768px) {
    #game-canvas {
        height: 300px;
    }
}

@media (max-width: 480px) {
    #game-canvas {
        height: 200px;
    }
    .game-item {
        padding: 10px;
    }
    .game-container.text-box {
        padding: 15px;
    }
}
.viewport {
    display: block;
    position: relative;
    width: 800px;
    height: 400px;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0 auto;
    background: #000000;
}

.viewport:before,
.viewport:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    background: #000000;
    z-index: 10;
}

.viewport:before {
    left: 0;
}

.viewport:after {
    right: 0;
}

.game {
    position: absolute;
    top: 50%;
    right: 15%;
    left: 15%;
    transform: translateY(-50%);
}

.rows {
    width: 100%;
}

.row {
    height: 100px;
    position: relative;
}

.row.active .columns {
    border: 2px solid #fff;
}

.columns {
    background-color: #FDCBC4;
    background-size: 300% 100%;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    width: 100%;
    height: 100%;
}

.columns-top {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/233661/mario-top.svg');
}

.columns-center {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/233661/mario-center.svg');
}

.columns-bottom {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/233661/mario-bottom.svg');
}

.results {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 1s ease;
    color: #B53121;
    font-size: 48px;
    text-shadow: 2px 2px 2px #fff;
    font-family: 'VT323', sans-serif;
}

.results.shown {
    transform: translateY(0);
}

.helper {
    position: absolute;
    bottom: 10px;
    z-index: 100;
    color: #fff;
    text-align: center;
    left: 0;
    right: 0;
    pointer-events: none;
    font-size: 24px;
    opacity: 0.5;
    font-family: 'VT323', sans-serif;
}

#slot-ui {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

#slot-ui p {
    font-size: 18px;
    margin: 0;
    color: #ffdddd;
}

@keyframes ltr-transition-0 {
    0% { background-position: 0vw; }
    100% { background-position: 44.4444vw; }
}

@keyframes ltr-transition-1 {
    0% { background-position: 44.4444vw; }
    100% { background-position: 88.8888vw; }
}

@keyframes ltr-transition-2 {
    0% { background-position: 88.8888vw; }
    100% { background-position: 133.3333vw; }
}

@keyframes rtl-transition-0 {
    0% { background-position: -44.4444vw; }
    100% { background-position: -88.8888vw; }
}

@keyframes rtl-transition-1 {
    0% { background-position: -133.3333vw; }
    100% { background-position: -177.7777vw; }
}

@keyframes rtl-transition-2 {
    0% { background-position: -222.2222vw; }
    100% { background-position: -266.6666vw; }
}

/* Inhalt (Content) */
.content {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 0 auto;
    padding: 150px 20px 20px;
    text-align: center;
    min-height: 100vh; /* Sicherstellen, dass der Footer nicht überlagert wird */
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 100px; /* Mehr Abstand, um Überlappung zu vermeiden */
}

/* Breakout Styling */
#breakout {
    max-width: 95%;
    margin: 20px auto;
  }
  
  #breakout-canvas {
    width: 100%;
    max-width: 900px;
    height: auto; /* Seitenverhältnis bleibt erhalten */
  }
  

#breakout-ui {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.2em;
}

#breakout-ui p {
    margin: 0;
    color: #FFD700; /* Gold, wie bei anderen Spielen */
}

#breakout-ui span {
    color: #fff; /* Weiß für Werte */
}

#breakout-start, #breakout-restart {
    margin: 10px auto;
}

/* Responsive Anpassungen für kleinere Bildschirme */
@media (max-width: 768px) {
    #breakout {
        max-width: 100%;
    }
    #breakout-canvas {
        width: 100%;
        height: auto; /* Seitenverhältnis wird durch JS gehandhabt */
    }
}

@media (max-width: 480px) {
    #breakout {
        max-width: 100%;
    }
    #breakout-canvas {
        width: 100%;
        height: auto;
    }
    #breakout-ui {
        font-size: 1em;
    }
}




/* Nur Tic Tac Toe Stile, restliche Stile aus vorheriger Version unverändert */
#tic-tac-doom {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 100%;
    position: relative;
    z-index: 15; /* Höherer z-index, um Überlappung zu vermeiden */
    border: 2px solid green; /* Temporär für Debugging */
}

#tic-tac-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    min-height: 700px; /* Erhöht für mehr Platz */
    padding: 20px;
    box-sizing: border-box;
    overflow: visible;
    border: 2px solid blue; /* Temporär für Debugging */
}

#tic-tac-header {
    display: none;
    justify-content: center;
    margin-bottom: 20px;
    z-index: 1;
}

.dramatic-text {
    font-family: 'Trade Winds', cursive;
    font-size: 3rem;
    color: #ff4500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#game-configuration {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    z-index: 2;
}

#identity-label {
    font-family: 'VT323', monospace;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

#identity-selection {
    display: flex;
    gap: 30px;
}

.identity-cell {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 3px solid #000;
    font-family: 'VT323', monospace;
    font-size: 2.5rem;
    color: #000; /* Textfarbe auf Schwarz */
    cursor: pointer;
    transition: background-color 0.3s;
}

.identity-cell:hover {
    background-color: #f0f0f0;
}

#game-grid {
    display: none;
    flex-direction: column;
    gap: 10px;
    min-height: 320px;
    z-index: 5;
    position: relative; /* Sicherstellen, dass das Gitter sichtbar bleibt */
    border: 2px solid red; /* Temporär für Debugging */
}

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

.cell {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 3px solid #000;
    font-family: 'VT323', monospace;
    font-size: 3rem;
    color: #000; /* Textfarbe auf Schwarz */
    cursor: pointer;
    box-sizing: border-box;
}

.game-cell:hover {
    background-color: #f0f0f0;
}

.cell-selected {
    background-color: #d3d3d3;
    cursor: default;
    color: #000; /* Textfarbe bleibt Schwarz */
}

.cell-win {
    background-color: #90ee90;
    color: #000; /* Textfarbe bleibt Schwarz */
}

.computer-threat {
    margin-top: 20px;
    text-align: center;
}

#computer-threat-text {
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    color: #ff4500;
}

#game-over {
    display: none;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    min-height: 200px;
}

#game-end-heading {
    font-family: 'Trade Winds', cursive;
    font-size: 2.5rem;
    color: #ff4500;
    margin-bottom: 15px;
}

#game-end-subheading {
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.game-btn {
    padding: 12px 24px;
    background-color: #ff4500;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
    pointer-events: auto;
    z-index: 11;
}

.game-btn:hover {
    background-color: #cc3700;
}

#tic-tac-ui {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

#tic-tac-ui p {
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
}

/* Responsive Anpassungen */
@media screen and (max-width: 768px) {
    #tic-tac-container {
        max-width: 600px;
        min-height: 550px;
    }

    .cell {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .identity-cell {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .dramatic-text {
        font-size: 2.5rem;
    }

    .content {
        padding: 120px 20px 20px;
    }

    #game-end-heading {
        font-size: 2rem;
    }

    #game-grid {
        min-height: 260px;
    }
}

@media screen and (max-width: 480px) {
    #tic-tac-container {
        max-width: 100%;
        min-height: 450px;
        padding: 10px;
    }

    .cell {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .identity-cell {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .dramatic-text {
        font-size: 2rem;
    }

    #game-end-heading {
        font-size: 1.8rem;
    }

    .game-btn {
        padding: 10px 20px;
        font-size: 1.2rem;
    }

    #game-grid {
        min-height: 200px;
    }

    #tic-tac-ui {
        max-width: 300px;
    }
}


@media (max-width: 768px) {
    /* Partner-Container: single-column */
    .partner-container {
      flex-direction: column !important;
      align-items: center !important;
      gap: 15px !important;
    }
    .partner-box {
      max-width: 90% !important;
      margin: 10px auto !important;
      padding: 15px !important;
    }
  
    /* Content-Padding reduzieren */
    .content {
      padding: 120px 10px 20px !important;
    }
  
    /* Social-Links nebeneinander halten */
    .social-links {
      flex-direction: row !important;
      justify-content: center !important;
    }
    .social-links img {
      width: 60px !important;
      height: 60px !important;
      margin: 0 8px !important;
    }
  
    /* Donate-Button verkleinern */
    .donate-button input[type="image"] {
      max-width: 120px !important;
    }
  
    /* Footer-Abstand */
    footer {
      margin-top: 30px !important;
    }
  }
  

  @media (max-width: 480px) {
    /* Partner-Box volle Breite */
    .partner-box {
      max-width: 100% !important;
      padding: 12px !important;
    }
  
    /* Noch kleinere Social-Icons */
    .social-links img {
      width: 50px !important;
      height: 50px !important;
      margin: 0 6px !important;
    }
  
    /* Content-Padding weiter reduzieren */
    .content {
      padding: 100px 5px 15px !important;
    }
  }
  /* ====== Responsive Kontakt- & Kooperationsformulare ====== */
@media (max-width: 768px) {
    .contact-form.text-box,
    .coop-form.text-box {
      width: 100%;
      padding: 20px 15px;
      margin: 15px auto;
    }
  
    .contact-form .form-group,
    .coop-form .form-group {
      display: block;
      width: 100%;
      margin-bottom: 15px;
    }
  
    .contact-form input,
    .contact-form textarea,
    .coop-form input,
    .coop-form textarea {
      width: 100%;
      box-sizing: border-box;
    }
  
    .contact-form button,
    .coop-form button {
      width: 100%;
      padding: 12px;
      font-size: 1em;
    }
  }
  
  @media (max-width: 480px) {
    .contact-form.text-box,
    .coop-form.text-box {
      padding: 15px 10px;
    }
  
    .contact-form button,
    .coop-form button {
      font-size: 0.9em;
    }
  }
  
/* OpusClip Container Styling */
.opus-container {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.opus-container .partner-box {
    flex: 1 1 100% !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.opus-container .partner-img {
    max-width: 300px !important;
    height: auto !important;
    margin: 0 auto !important;
}

@media (max-width: 768px) {
    .opus-container .partner-box {
        max-width: 90% !important;
    }
    .opus-container .partner-img {
        max-width: 250px !important;
    }
}

@media (max-width: 480px) {
    .opus-container .partner-box {
        max-width: 100% !important;
    }
    .opus-container .partner-img {
        max-width: 200px !important;
    }
}

/* Affiliate Box Styling */
.affiliate-box {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(51,51,51,0.9) 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,215,0,0.3);
    text-align: center;
}

.affiliate-box .affiliate-img {
    max-width: 250px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    transition: transform 0.3s ease;
}

.affiliate-box:hover .affiliate-img {
    transform: scale(1.05);
}

.affiliate-box h2 {
    color: #FFD700;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.affiliate-box p {
    color: #fff;
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.affiliate-link {
    display: inline-block;
    background: #FFD700;
    color: #222;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.affiliate-link:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .affiliate-box {
        margin: 30px 15px;
        padding: 20px;
    }
    
    .affiliate-box .affiliate-img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .affiliate-box {
        margin: 20px 10px;
        padding: 15px;
    }
    
    .affiliate-box .affiliate-img {
        max-width: 150px;
    }
    
    .affiliate-box h2 {
        font-size: 1.5em;
    }
    
    .affiliate-box p {
        font-size: 1.1em;
    }
}

/* OpusClip Impressum Styling */
.opus-impressum {
    margin: 30px auto;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.opus-impressum p {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.2em;
    color: #ffffff;
    line-height: 1.6;
    margin: 15px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.opus-impressum img {
    max-width: 200px;
    height: auto;
    margin: 10px auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.opus-impressum a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

.opus-impressum a:hover {
    color: #FFD700;
}

.opus-impressum a:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .opus-impressum img {
        max-width: 180px;
    }
    .opus-impressum p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .opus-impressum img {
        max-width: 150px;
    }
    .opus-impressum p {
        font-size: 1em;
    }
}

/* Radio Page Styling */
.page-radio .radio-box {
    max-width: 800px;
    margin: 50px auto;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(51,51,51,0.9) 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.radio-box h1 {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.radio-box h2 {
    font-size: 1.8em;
    color: #fff;
    margin-bottom: 30px;
    font-weight: normal;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.radio-content {
    text-align: left;
}

.radio-content p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #fff;
}

.radio-cta {
    background: rgba(255,215,0,0.1);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border: 1px solid rgba(255,215,0,0.3);
}

.radio-cta p {
    margin-bottom: 15px;
    font-size: 1.3em;
}

.btn-radio {
    display: inline-block;
    background: #FFD700;
    color: #222;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-radio:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.radio-note {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.radio-note p {
    font-size: 1.1em;
    margin: 0;
    color: #FFD700;
}

@media (max-width: 768px) {
    .page-radio .radio-box {
        margin: 30px 15px;
        padding: 25px;
    }

    .radio-box h1 {
        font-size: 2.2em;
    }

    .radio-box h2 {
        font-size: 1.5em;
    }

    .radio-content p {
        font-size: 1.1em;
    }

    .radio-cta {
        padding: 20px;
    }

    .radio-cta p {
        font-size: 1.2em;
    }

    .btn-radio {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-radio .radio-box {
        margin: 20px 10px;
        padding: 20px;
    }

    .radio-box h1 {
        font-size: 2em;
    }

    .radio-box h2 {
        font-size: 1.3em;
    }

    .radio-content p {
        font-size: 1em;
    }

    .radio-cta {
        padding: 15px;
    }

    .radio-cta p {
        font-size: 1.1em;
    }

    .btn-radio {
        padding: 10px 20px;
        font-size: 1em;
        width: 100%;
        text-align: center;
    }
}
  
/* Kooperations-Seite Styling */
.benefits-section {
    margin: 30px 0;
}

.benefit-item {
    background: rgba(255,215,0,0.1);
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.benefit-item h4 {
    color: #FFD700;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.benefit-item p {
    margin: 0;
    font-size: 1.1em;
    line-height: 1.5;
}

.services-list {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.services-list li {
    margin: 10px 0;
    font-size: 1.1em;
    color: #fff;
}

@media (max-width: 768px) {
    .benefit-item {
        padding: 15px;
        margin: 10px 0;
    }
    
    .benefit-item h4 {
        font-size: 1.2em;
    }
    
    .benefit-item p {
        font-size: 1em;
    }
    
    .services-list {
        padding: 15px;
    }
}

/* Radio Player Styling */
.radio-player-section {
    margin: 40px auto;
    max-width: 900px;
}

.radio-player-section h2 {
    color: #FFD700;
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
}

.radio-player-container {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.radio-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.radio-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.radio-img:hover {
    transform: scale(1.02);
}

.radio-iframe-container {
    flex: 1;
    min-width: 275px;
    text-align: center;
}

.radio-iframe-container iframe {
    max-width: 100%;
}

@media (max-width: 768px) {
    .radio-player-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .radio-image {
        min-width: auto;
    }
    
    .radio-iframe-container {
        min-width: auto;
    }
    
    .radio-iframe-container iframe {
        width: 100% !important;
        max-width: 275px !important;
        height: 365px !important;
    }
    
    .radio-player-section h2 {
        font-size: 1.7em;
    }
}

@media (max-width: 480px) {
    .radio-player-section {
        margin: 30px auto;
    }
    
    .radio-iframe-container iframe {
        width: 100% !important;
        max-width: 250px !important;
        height: 320px !important;
    }
    
    .radio-player-section h2 {
        font-size: 1.5em;
    }
}
  

  
/* Application Form Styles */
.application-form-section {
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.application-form-section h2 {
    color: #FFD700;
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
}

.application-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.application-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.application-form {
    margin-top: 25px;
}

.application-form h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin: 25px 0 15px 0;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #fff;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="url"],
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #FFD700;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 1);
}

.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
    color: #fff;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label:hover {
    color: #FFD700;
}

.application-form button[type="submit"] {
    background: #FFD700;
    color: #222;
    font-weight: bold;
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
    width: 100%;
    max-width: 300px;
}

.application-form button[type="submit"]:hover {
    background: #e5c000;
    transform: translateY(-2px);
}

/* Responsive Design for Application Form */
@media (max-width: 768px) {
    .application-form-section {
        padding: 20px;
        margin-top: 30px;
    }
    
    .application-form-section h2 {
        font-size: 1.8em;
    }
    
    .application-form h3 {
        font-size: 1.3em;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="number"],
    .form-group input[type="url"],
    .form-group select {
        padding: 10px;
        font-size: 0.9em;
    }
    
    .application-form button[type="submit"] {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .application-form-section {
        padding: 15px;
        margin-top: 20px;
    }
    
    .application-form-section h2 {
        font-size: 1.5em;
    }
    
    .application-form h3 {
        font-size: 1.2em;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.9em;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="number"],
    .form-group input[type="url"],
    .form-group select {
        padding: 8px;
        font-size: 0.85em;
    }
    
    .checkbox-label {
        font-size: 0.85em;
    }
    
    .application-form button[type="submit"] {
        padding: 10px 20px;
        font-size: 1em;
    }
}
  

  