:root {
    --color-bg: #0b0c10;
    --color-bg-soft: #14151a;
    --color-surface: #1c1d24;
    --color-surface-raised: #282a36;
    --color-text: #e0e2e6;
    --color-text-muted: #9ba0a6;
    --color-accent: #D40DFF;
    --color-accent-hover: #b00add;
    --color-accent-soft: rgba(212, 13, 255, 0.15);
    --color-border: #2b2d38;
    --color-border-accent: rgba(212, 13, 255, 0.4);
    
    --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-stack);
    line-height: 1.65;
    font-size: 17px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover, a:focus {
    color: var(--color-text);
    text-shadow: 0 0 8px var(--color-accent-soft);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(34px, 5vw, 56px);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(26px, 4vw, 36px);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
    display: inline-block;
}

h2::after {
    content: '';
    display: block;
    width: 40%;
    height: 3px;
    background: var(--color-accent);
    margin-top: 0.5rem;
}

h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1.5rem;
    max-width: 800px;
    overflow-wrap: anywhere;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    max-width: 800px;
}

li {
    margin-bottom: 0.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

blockquote {
    border-left: 4px solid var(--color-accent);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--color-bg-soft);
    font-style: italic;
    font-size: 1.1rem;
    max-width: 800px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-accent);
    color: #fff;
    padding: 8px;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}


.top-status-bar {
    background: var(--color-surface);
    color: var(--color-text-muted);
    font-size: 0.8rem;
    padding: 4px 20px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.status-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge-18 {
    background: var(--color-accent);
    color: #fff;
    font-weight: bold;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.site-header {
    background: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    object-fit: contain;
    display: block;
    max-height: 55px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-list a:hover {
    color: var(--color-accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    position: absolute;
    transition: 0.3s ease;
}

.burger-btn span:nth-child(1) { top: 0; }
.burger-btn span:nth-child(2) { top: 11px; }
.burger-btn span:nth-child(3) { bottom: 0; }

.burger-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.burger-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}


.cta-btn {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid var(--color-accent);
    cursor: pointer;
}

.cta-btn:hover, .cta-btn:focus {
    background: var(--color-accent-hover);
    color: #fff;
    box-shadow: 0 0 15px var(--color-accent-soft);
    text-shadow: none;
}

.cta-btn.outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.cta-btn.outline:hover {
    border-color: var(--color-accent);
    background: var(--color-bg-soft);
}

.cta-btn.small {
    padding: 8px 16px;
    font-size: 0.9rem;
}


main {
    flex: 1;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}


.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    gap: 40px;
}

.inner-hero {
    padding: 40px 20px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-tags {
    margin-bottom: 1rem;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-tag {
    background: var(--color-surface);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--color-accent);
    border: 1px solid var(--color-border);
}

.status-chip {
    background: var(--color-accent-soft);
    color: var(--color-accent);
    padding: 6px 12px;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
    border: 1px solid var(--color-border-accent);
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.stream-status-hint {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    max-height: 500px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.stream-image img {
    width: 100%;
    max-height: auto;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--color-accent);
    filter: blur(100px);
    opacity: 0.2;
    z-index: 1;
    border-radius: 50%;
}


.casino-offers {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 2rem 0;
}

.offer-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; 
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    margin-top: 15px; 
}

.offer-card.hidden-offer {
    display: none;
}

.offer-card:hover {
    border-color: var(--color-border-accent);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #333;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    z-index: 2;
}

.offer-card.featured {
    border-color: var(--color-accent);
    box-shadow: 0 0 15px var(--color-accent-soft);
}

.offer-card.featured .offer-badge {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.offer-logo-wrap {
    width: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-soft);
    padding: 10px;
    border-radius: var(--radius-sm);
    height: 70px;
}

.offer-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.offer-bonus-wrap {
    flex: 1;
    min-width: 150px;
}

.bonus-primary {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
}

.bonus-secondary {
    color: var(--color-accent);
    font-weight: bold;
    font-size: 0.9rem;
}

.offer-features {
    flex: 1.5;
}

.offer-features ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.offer-features li {
    margin-bottom: 2px;
    display: flex;
    align-items: center;
}

.offer-features li::before {
    content: "✓";
    color: var(--color-accent);
    margin-right: 8px;
    font-weight: bold;
}

.offer-payments {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    width: 140px;
}

.payment-icon {
    height: 20px;
    max-width: 35px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
    border-radius: 2px;
}

.payment-more {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: bold;
}

.offer-cta-wrap {
    text-align: center;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.more-info-toggle {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 2px;
}

.more-info-toggle:hover {
    color: #fff;
}

.offer-more-info {
    flex-basis: 100%;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--color-border);
    animation: fadeIn 0.3s ease;
}

.offer-footer-note {
    text-align: center;
    margin-top: 10px;
    font-size: 0.85rem;
}

.rg-link {
    color: var(--color-text-muted);
    text-decoration: underline;
}


.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.topic-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 25px;
    border-radius: var(--radius-md);
    transition: background 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.topic-card:hover {
    background: var(--color-surface-raised);
    border-color: var(--color-border-accent);
}

.topic-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.topic-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    flex-grow: 1;
}

.topic-card a {
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}


.platform-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin: 2rem 0;
}

.platform-card {
    background: var(--color-bg-soft);
    padding: 20px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-border);
}

.platform-card:hover {
    border-left-color: var(--color-accent);
}

.platform-card h3 {
    margin-top: 0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.platform-card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--color-text-muted);
}


.faq-section {
    margin-top: 4rem;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-item h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #fff;
}

.faq-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
    padding-left: 15px;
    border-left: 2px solid var(--color-border);
}


table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    max-width: 800px;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

th {
    background: var(--color-surface-raised);
    font-weight: bold;
    color: #fff;
    width: 30%;
}

tr:last-child th, tr:last-child td {
    border-bottom: none;
}

.stream-overview {
    overflow-x: auto;
}


.site-footer {
    background: var(--color-bg-soft);
    border-top: 1px solid var(--color-border);
    padding: 60px 20px 20px;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--color-text);
}

.footer-logo {
    margin-bottom: 1rem;
}

.disclaimer, .affiliate-notice {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    line-height: 1.4;
}

.footer-18 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 15px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}


.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.age-gate-overlay.active {
    visibility: visible;
    opacity: 1;
}

.age-gate-modal {
    background: var(--color-surface);
    border: 1px solid var(--color-border-accent);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.age-gate-logo {
    margin: 0 auto 20px;
    display: block;
}

.age-gate-icon {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.age-gate-modal h2 {
    margin-top: 0;
    border-bottom: none;
}

.age-gate-modal p {
    margin: 0 auto 30px;
    color: var(--color-text-muted);
}

.age-gate-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-gate-actions .cta-btn {
    min-width: 150px;
}


@media (max-width: 1024px) {
    .offer-card {
        flex-wrap: wrap;
    }
    .offer-features {
        flex: 100%;
        order: 3;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(28px, 6vw, 42px);
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero-tags, .hero-actions {
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .offer-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .offer-logo-wrap {
        width: 100%;
        height: 80px;
    }
    
    .offer-payments {
        width: 100%;
        order: 4;
    }
    
    .offer-cta-wrap {
        width: 100%;
        order: 5;
    }
    
    .offer-cta-wrap .cta-btn {
        width: 100%;
    }
    
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
    }
    
    .burger-btn {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-surface);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        display: none;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .nav-list li {
        padding: 10px 0;
        border-bottom: 1px solid var(--color-border);
    }
    
    table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
        white-space: normal;
    }
    
    table {
        background: transparent;
        border: none;
    }
    
    tr {
        margin-bottom: 1rem;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-sm);
        background: var(--color-surface);
        overflow: hidden;
    }
    
    th {
        background: var(--color-surface-raised);
        border-bottom: 1px solid var(--color-border);
        padding: 12px 15px;
    }
    
    td {
        padding: 12px 15px;
        border-bottom: none;
    }
    
    .status-sep {
        display: none;
    }
    
    .status-inner {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
    
    .age-gate-actions {
        flex-direction: column;
    }
    
    .age-gate-actions .cta-btn {
        width: 100%;
    }
}

.sticky-bonus-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-accent);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.5);
    transition: background 0.3s, transform 0.3s;
}
.sticky-bonus-btn:hover {
    background: #b300db;
    color: #fff;
}
body {
    padding-bottom: 60px; 
}
@media (min-width: 768px) {
    .sticky-bonus-btn {
        width: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        border-radius: 30px;
        padding: 15px 40px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    }
}
#casino-angebote {
    scroll-margin-top: 80px;
}


.filter-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}
.filter-btn {
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    background: var(--color-surface-raised);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}
.casino-offers-new__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: start;
}
.casino-offers-new__card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
}
.casino-offers-new__card:hover {
    border-color: var(--card-accent);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05), inset 0 0 10px var(--card-accent);
}
.casino-offers-new__badge-rank {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--card-accent);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}
.casino-offers-new__logo-wrap {
    display: block;
    margin: 10px auto;
}
.casino-offers-new__logo {
    max-width: 140px;
    height: 60px;
    object-fit: contain;
}
.willkommenspaket-text {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.casino-offers-new__title {
    display: none; 
}
.casino-offers-new__bonus-box {
    background: var(--color-surface-raised);
    border-radius: var(--radius-md);
    padding: 15px;
    margin-bottom: 20px;
    border-top: 2px solid var(--card-accent);
}
.casino-offers-new__bonus-highlight {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}
.casino-offers-new__freespins {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: #eee;
}
.casino-offers-new__btn {
    display: block;
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: bold;
    text-align: center;
    transition: opacity 0.2s;
    margin-bottom: 15px;
}
.casino-offers-new__btn:hover {
    opacity: 0.9;
}
.casino-offers-new__details-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    padding: 10px;
}
.casino-offers-new__accordion {
    text-align: left;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--color-border);
}
.casino-preview-img {
    width: 100%;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}
.accordion-section {
    margin-bottom: 15px;
}
.accordion-section h4 {
    font-size: 14px;
    color: var(--card-accent);
    margin-bottom: 8px;
}
.accordion-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.accordion-section ul:not(.payment-list) li {
    font-size: 13px;
    color: #ccc;
    padding-left: 15px;
    position: relative;
    margin-bottom: 4px;
}
.accordion-section ul:not(.payment-list) li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--card-accent);
}
.payment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.payment-list li {
    background: #ffffff;
    border-radius: 4px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    min-width: 40px;
}
.payment-list li img {
    max-height: 20px;
    max-width: 50px;
    object-fit: contain;
}
