/* CSS Variables */
:root {
    --rot: #b50000;
    --gold: #f9d71c;
    --weiss: #ffffff;
    --grau: #f5f5f5;
    --schwarz: #333333;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: var(--schwarz);
    background: var(--weiss);
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--rot), #8b0000);
    color: var(--weiss);
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Tab Navigation - HORIZONTAL AUCH AUF MOBILE */
.tab-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2rem 0;
    padding: 0 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-button {
    background: var(--grau);
    border: 2px solid transparent;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--schwarz);
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-button:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.tab-button.active {
    background: var(--rot);
    color: var(--weiss);
    border-color: var(--rot);
}

/* ===== EXAKTES PROGRAM DESIGN WIE IM SCREENSHOT ===== */
.programm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.prog-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    padding: 1.2rem;
    position: relative;
    border: 1px solid #ddd;
}

.prog-card.highlighted {
    border-left: 3px solid #b50000;
}

.highlight-star {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #b50000;
    color: white;
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 0.6rem;
}

/* OBERE REIHE: Datum, Ort, Teilen */
.prog-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.prog-date-time {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.prog-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.prog-time {
    font-size: 0.85rem;
    color: #666;
}

.prog-location-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.prog-location {
    font-size: 0.9rem;
    color: #666;
}

.share-btn {
    background: #b50000;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.share-btn:hover {
    background: #990000;
}

/* ROTE TRENNLINIE */
.prog-divider {
    height: 2px;
    background: #b50000;
    margin: 0.8rem 0;
    border-radius: 1px;
}

/* UNTERE REIHE: Bild, Titel, Beschreibung */
.prog-bottom-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.prog-image-container {
    flex: 0 0 80px;
    height: 80px;
}

.prog-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.prog-image-container img:hover {
    transform: scale(1.05);
}

.prog-text-content {
    flex: 1;
}

.prog-title {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 600;
}

.prog-description {
    margin: 0 0 0.5rem 0;
    color: #555;
    line-height: 1.4;
    font-size: 0.9rem;
}

.prog-price {
    margin: 0;
    color: #b50000;
    font-weight: 500;
    font-size: 0.85rem;
}

/* News Grid */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.news-card {
    background: var(--weiss);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card h3 {
    padding: 1rem;
    color: var(--schwarz);
    font-size: 1.2rem;
}

.city-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--schwarz);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 1rem 1rem;
}

/* Gallery Styles - KORRIGIERT */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gal-item {
    background: var(--weiss);
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gal-item h4 {
    color: var(--rot);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

/* Bilder Styles - FÜR PROGRAMM UND GALERIE GLEICH */
.prog-imgs, .gal-imgs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 1.5rem 0;
}

.program-image, .gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.program-image:hover, .gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Mobile Footer Tabs */
.footer-tabs {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--weiss);
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.footer-tab {
    text-decoration: none;
    color: var(--schwarz);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-tab.active {
    background: var(--rot);
    color: var(--weiss);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 2001;
}

.lightbox-prev, .lightbox-next {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255,255,255,0.4);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Arrow Down Animation */
.arrow-down {
    width: 30px;
    height: 30px;
    margin: 1rem auto 0;
    border-right: 3px solid var(--rot);
    border-bottom: 3px solid var(--rot);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(0, 10px); }
}

/* Google Ads Responsive */
.gad ins {
    display: block;
    margin: 0 auto;
}

/* Schneeflocken Animation */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #e0f7ff;
    font-size: 1rem;
    animation: fall linear infinite;
    user-select: none;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* GDPR Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}
.cookie-banner.active {
    display: block;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cookie-text {
    flex: 1;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
}
.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.cookie-accept {
    background: #b50000;
    color: white;
}
.cookie-reject {
    background: #666;
    color: white;
}
.cookie-privacy {
    color: #b50000;
    text-decoration: none;
    margin-left: 10px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .tab-nav {
        flex-direction: row;
        justify-content: flex-start;
        padding: 1rem 0.5rem;
        margin: 1rem 0;
        gap: 8px;
    }
    
    .tab-button {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .prog-card, .gal-item {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .prog-imgs, .gal-imgs {
        grid-template-columns: 1fr;
    }
    
    .program-image, .gallery-image {
        height: 250px;
    }
    
    .footer-tabs {
        display: flex;
    }
    
    .highlight-star {
        width: 35px;
        height: 35px;
        font-size: 18px;
        top: -12px;
        right: -12px;
    }
    
    /* RESPONSIVE PROGRAM DESIGN */
    .prog-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .prog-location-share {
        width: 100%;
        justify-content: space-between;
    }
    
    .prog-bottom-row {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .prog-image-container {
        align-self: center;
        flex: 0 0 100px;
        height: 100px;
    }
    
    .gad ins {
        min-width: 320px;
        max-width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1.5rem 1rem;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    .prog-card, .gal-item {
        padding: 1rem;
    }
    
    .program-image, .gallery-image {
        height: 200px;
    }
    
    .tab-button {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    /* RESPONSIVE PROGRAM DESIGN */
    .prog-card {
        padding: 1rem;
    }
    
    .prog-location-share {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .share-btn {
        align-self: flex-end;
    }
}

@media (min-width: 769px) {
    .gad ins {
        min-width: 728px;
        max-width: 970px;
    }
}

/* Hover Effects für Price Cards */
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.price-card:hover img {
    transform: scale(1.05);
}

/* Gleiches Styling für alle Karten */
.news-card, .prog-card, .price-card {
    transition: all 0.3s ease;
}

.news-card:hover, .prog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* ===== GOOGLE CMP STYLES ===== */
.cmp-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    display: none;
}

.cmp-banner.active {
    display: block;
}

.cmp-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cmp-text h3 {
    margin: 0 0 8px 0;
    color: #ecf0f1;
    font-size: 1.2rem;
}

.cmp-text p {
    margin: 0;
    color: #bdc3c7;
    line-height: 1.5;
}

.cmp-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cmp-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cmp-btn-accept {
    background: #27ae60;
    color: white;
}

.cmp-btn-accept:hover {
    background: #219a52;
    transform: translateY(-2px);
}

.cmp-btn-reject {
    background: #e74c3c;
    color: white;
}

.cmp-btn-reject:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.cmp-btn-manage {
    background: #3498db;
    color: white;
}

.cmp-btn-manage:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.cmp-btn-save {
    background: #f39c12;
    color: white;
}

.cmp-btn-save:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.cmp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.cmp-modal.active {
    display: flex;
}

.cmp-modal-content {
    background: white;
    color: #2c3e50;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cmp-modal-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 1rem;
}

.cmp-modal-header h3 {
    margin: 0;
    color: #2c3e50;
    flex: 1;
}

.cmp-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #7f8c8d;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmp-close:hover {
    background: #ecf0f1;
    color: #2c3e50;
}

.cmp-settings {
    margin-bottom: 2rem;
}

.cmp-setting-group {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.cmp-setting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cmp-setting-title {
    font-weight: bold;
    color: #2c3e50;
}

.cmp-setting-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cmp-setting-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cmp-setting-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #bdc3c7;
    transition: .4s;
    border-radius: 24px;
}

.cmp-setting-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .cmp-setting-slider {
    background-color: #27ae60;
}

input:checked + .cmp-setting-slider:before {
    transform: translateX(26px);
}

input:disabled + .cmp-setting-slider {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.cmp-setting-description {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.4;
}

.cmp-setting-required {
    border-left-color: #e74c3c;
}

.cmp-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #ecf0f1;
}

.cmp-links {
    display: flex;
    gap: 15px;
}

.cmp-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
}

.cmp-link:hover {
    text-decoration: underline;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .cmp-content {
        gap: 12px;
    }
    
    .cmp-buttons {
        flex-direction: column;
    }
    
    .cmp-btn {
        width: 100%;
        text-align: center;
    }
    
    .cmp-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .cmp-modal-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cmp-links {
        justify-content: center;
    }
}

/* Animation */
@keyframes cmpSlideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cmp-banner.active {
    animation: cmpSlideUp 0.5s ease-out;
}

/* ===== HEADER DISPLAY AD ===== */
.header-ad {
    margin: 0 auto;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 0 0 10px 10px;
    border: 1px solid #e9ecef;
    text-align: center;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .header-ad {
        margin: 0;
        padding: 10px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

/* Desktop Optimization */
@media (min-width: 769px) {
    .header-ad {
        margin: 0 auto;
        padding: 20px;
    }
}

/* ===== ECHT VERTIKALES GEWINNSPIEL ICON ===== */
/* FLOATING RAFFLE ICON - ECHT VERTIKAL (1 Buchstabe pro Zeile) */
.raffle-announcement {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #d60000, #0f7938);
    color: white;
    padding: 8px 4px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(214, 0, 0, 0.3);
    z-index: 10000;
    animation: raffle-pulse 4s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    font-size: 9px;
    width: auto;
    min-width: 25px;
    text-align: center;
    line-height: 1;
}

.raffle-announcement:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(214, 0, 0, 0.5);
    background: linear-gradient(135deg, #e60000, #108a40);
}

.raffle-gift-icon {
    font-size: 12px;
    animation: gift-spin 8s infinite linear;
    margin-bottom: 2px;
}

.raffle-text {
    font-size: 8px;
    font-weight: 700;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    letter-spacing: 0.1px;
    line-height: 1;
}

/* Noch dezenter für Mobile */
@media (max-width: 768px) {
    .raffle-announcement {
        right: 5px;
        padding: 6px 3px;
        border-radius: 8px;
        min-width: 22px;
    }
    
    .raffle-gift-icon {
        font-size: 10px;
    }
    
    .raffle-text {
        font-size: 7px;
    }
}

/* Sehr dezente Animationen */
@keyframes raffle-pulse {
    0% { box-shadow: 0 0 8px rgba(214, 0, 0, 0.2); }
    50% { box-shadow: 0 0 12px rgba(214, 0, 0, 0.4); }
    100% { box-shadow: 0 0 8px rgba(214, 0, 0, 0.2); }
}

@keyframes gift-spin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(2deg) scale(1.02); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(-2deg) scale(1.02); }
    100% { transform: rotate(0deg) scale(1); }
}

/* POPUP STYLING */
.raffle-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

.raffle-popup-content {
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
    border: 5px solid #d60000;
    margin: 20px;
}

.raffle-popup-content h3 {
    color: #d60000;
    margin-bottom: 20px;
    font-size: 28px;
}

.raffle-popup-content p {
    margin: 15px 0;
    font-size: 18px;
    line-height: 1.6;
}

.raffle-popup-close {
    background: linear-gradient(135deg, #d60000, #0f7938);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.raffle-popup-close:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(214, 0, 0, 0.4);
    
/* Ad vor Programm */
.before-program-ad {
    margin: 0 auto 30px auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 0 0 10px 10px;
    border: 1px solid #e9ecef;
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .before-program-ad {
        margin: 0 auto 20px auto;
        padding: 15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

/* ===== FIX FÜR LEERE AD CONTAINER ===== */

/* Ad Container standardmäßig ausblenden wenn keine Ads geladen */
.ad-container:empty,
.ad-container ins[data-ad-status="unfilled"] {
    display: none !important;
}

/* Header Position korrigieren */
header {
    margin-top: 0 !important;
    padding-top: 80px !important;
}

/* Mobile Sticky Ad ausblenden bis Ads geladen */
.sticky-header-ad:not(.ads-loaded) {
    display: none !important;
}

/* Ad Container minimale Höhe entfernen */
.ad-container {
    min-height: 0 !important;
}

/* Ad Container standardmäßig ausblenden */
.ad-container {
    display: none;
}

/* Nur anzeigen wenn Ads geladen oder Platzhalter aktiv */
.ad-container.ads-loaded,
.ad-container .ad-placeholder[style*="display: block"] {
    display: block !important;
}

/* Header Position korrigieren */
header {
    margin-top: 0 !important;
    padding-top: 80px !important;
} 

/* ALLE Ad Container standardmäßig ausblenden */
.ad-container {
    display: none !important;
}

/* Header Position korrigieren */
header {
    margin-top: 0 !important;
    padding-top: 80px !important;
}

/* Mobile Header Widgets Position korrigieren */
.header-top-widgets {
    top: 10px !important;
}

.install-app-container {
    top: 10px !important;
}