/* © HorrorJunk */
/* coded by nya & suzunay */

html {
    scrollbar-gutter: stable !important;
    overflow-y: scroll;
}

body,
html {
    margin: 0;
    color: #ffffff;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Poppins', 'Fredoka', sans-serif !important;
}

body {
    background-color: #080c18 !important;
}

.py-4 {
    background-color: transparent;
}

/* ──────────────────────────────────────────────────────────────
   2. ADVERTISING BAR
   ────────────────────────────────────────────────────────────── */

.advertising-bar {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.98) 0%, rgba(11, 17, 32, 0.95) 100%);
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 20px;
    width: 100%;
    z-index: 999;
    position: relative;
}

.gif-container {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.advertising-bar a {
    display: inline-block;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    border-radius: 16px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.advertising-bar a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(200, 200, 200, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advertising-bar a:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.advertising-bar a:hover::before {
    opacity: 1;
}

.advertising-gif {
    max-width: 100%;
    height: 70px;
    border-radius: 12px;
    object-fit: contain;
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    filter: brightness(0.95) contrast(1.05);
}

.advertising-bar a:hover .advertising-gif {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.02);
}

/* ──────────────────────────────────────────────────────────────
   3. BOOTSTRAP MODAL OVERRIDES
   ────────────────────────────────────────────────────────────── */

.modal-content {
    background: var(--modal-bg, #1f2937);
    border: 1px solid var(--modal-border, #27344A);
    box-shadow: none;
    animation: slideIn .4s ease-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px) scale(.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    border-bottom: none;
    background: linear-gradient(135deg, rgba(0, 163, 255, .3), transparent);
    background-color: #1f2936;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
}

.btn-close {
    position: relative;
    width: 32px;
    height: 32px;
    opacity: .7;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    padding: 8px;
    transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
    background-image: none;
}

.btn-close::before,
.btn-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: #fff;
    transform-origin: center;
}

.btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
    background: rgba(255, 255, 255, .2);
}

.modal-body {
    padding: 20px;
    background-color: #1f2936;
}

.modal-body p {
    margin: 10px 0;
    font-size: 13px;
}

.modal-body .btn {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    padding: 10px;
    border-radius: 8px;
}

.modal-body select {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    border-radius: 8px;
    background-color: #1f2937;
    color: #ffffff;
    border: 1px solid #27344A;
}

.modal-footer {
    background-color: #1f2936;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal-close:hover {
    background: rgba(220, 53, 69, 0.5) !important;
}

.copy-button {
    cursor: pointer;
    margin-left: 10px;
    font-size: 16px;
    color: #ffffff;
    transition: color 0.3s;
}

.copy-button:hover {
    color: #27344A;
}

.copy-button.copied {
    color: #27344A;
    animation: pulse 0.5s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        margin: auto;
    }
}

/* ──────────────────────────────────────────────────────────────
   4. SWEETALERT2 DARK THEME
   ────────────────────────────────────────────────────────────── */

.swal2-popup {
    background: linear-gradient(145deg, #1F2937 0%, #111827 100%) !important;
    border: 1px solid rgba(0, 163, 255, 0.3) !important;
    border-radius: 24px !important;
    box-shadow:
        0 20px 8px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    color: var(--text-primary, #ffffff) !important;
    font-family: 'Inter', sans-serif !important;
    padding: 2rem !important;
    position: relative;
    overflow: hidden;
}

.swal2-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 163, 255, 0.5), transparent);
    animation: shimmer 3s 1;
    will-change: transform;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.swal2-title {
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: .5rem !important;
}

.swal2-html-container {
    color: var(--text-secondary, #e0e0e0) !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin: 1.5rem 0 !important;
}

.swal2-icon {
    margin: 1.5rem auto !important;
    border-color: transparent !important;
}

.swal2-icon.swal2-success {
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.1), rgba(0, 163, 255, 0.05)) !important;
    border-radius: 50%;
}

.swal2-icon.swal2-success .swal2-success-line {
    background-color: var(--success-color, #00a3ff) !important;
}

.swal2-icon.swal2-error {
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.1), rgba(0, 163, 255, 0.05)) !important;
    border-radius: 50%;
}

.swal2-icon.swal2-warning {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(96, 165, 250, 0.05)) !important;
    border-radius: 50%;
}

.swal2-icon.swal2-info {
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.1), rgba(0, 163, 255, 0.05)) !important;
    border-radius: 50%;
}

.swal2-icon.swal2-question {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.1), rgba(108, 117, 125, 0.05)) !important;
    border-radius: 50%;
}

.swal2-confirm {
    background: rgba(0, 163, 255, 0.12) !important;
    color: #00a3ff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
    box-shadow: none !important;
}

.swal2-confirm:hover {
    background: rgba(0, 163, 255, 0.2) !important;
    transform: translateY(-1px) !important;
    box-shadow: none !important;
}

.swal2-cancel {
    background: rgba(255, 255, 255, 0.06) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
    box-shadow: none !important;
}

.swal2-cancel:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
    box-shadow: none !important;
}

.swal2-deny {
    background: rgba(239, 68, 68, 0.12) !important;
    color: #ef4444 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
    box-shadow: none !important;
}

.swal2-deny:hover {
    background: rgba(239, 68, 68, 0.2) !important;
    transform: translateY(-1px) !important;
    box-shadow: none !important;
}

.swal2-actions {
    gap: 12px !important;
    margin-top: 1.5rem !important;
}

/* ──────────────────────────────────────────────────────────────
   5. GLOBAL BUTTON STYLES
   ────────────────────────────────────────────────────────────── */

.btn-custom,
.btn-primary:not(.swal2-confirm):not(.swal2-cancel):not(.swal2-deny),
.btn-secondary:not(.swal2-confirm):not(.swal2-cancel):not(.swal2-deny),
.btn-success:not(.swal2-confirm):not(.swal2-cancel):not(.swal2-deny),
.btn-danger:not(.swal2-confirm):not(.swal2-cancel):not(.swal2-deny),
.btn-warning:not(.swal2-confirm):not(.swal2-cancel):not(.swal2-deny),
.btn-info:not(.swal2-confirm):not(.swal2-cancel):not(.swal2-deny),
.btn-read-mobile,
.btn-details,
.btn-open-modal,
.action-btn,
.play-btn:not(.play-trigger):not(.control-btn),
.stats-btn,
.report-btn,
.btn-add:not(.points-add-btn),
.btn-remove,
.btn-privacy,
.btn-share,
.filter-btn,
.view-btn,
.btn-info,
button.btn:not(.btn-close):not(.swal2-confirm):not(.swal2-cancel):not(.swal2-deny),
a.btn:not(.btn-close),
input[type="submit"].btn,
input[type="button"].btn {
    background: rgba(0, 163, 255, 0.12) !important;
    color: #00a3ff !important;
    border: none !important;
    padding: 8px 16px !important;
    font-size: .82rem !important;
    font-weight: 600 !important;
    border-radius: 7px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: background .2s ease, color .2s ease, transform .2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 90px !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.btn-custom:hover,
.btn-primary:hover:not(.swal2-confirm):not(.swal2-cancel):not(.swal2-deny),
.btn-secondary:hover:not(.swal2-confirm):not(.swal2-cancel):not(.swal2-deny),
.btn-success:hover:not(.swal2-confirm):not(.swal2-cancel):not(.swal2-deny),
.btn-danger:hover:not(.swal2-confirm):not(.swal2-cancel):not(.swal2-deny),
.btn-warning:hover:not(.swal2-confirm):not(.swal2-cancel):not(.swal2-deny),
.btn-info:hover:not(.swal2-confirm):not(.swal2-cancel):not(.swal2-deny),
.btn-read-mobile:hover,
.btn-details:hover,
.btn-open-modal:hover,
.action-btn:hover,
.play-btn:hover:not(.play-trigger):not(.control-btn),
.stats-btn:hover,
.report-btn:hover,
.btn-add:hover:not(.points-add-btn),
.btn-remove:hover,
.btn-privacy:hover,
.btn-share:hover,
.filter-btn:hover,
.view-btn:hover,
.btn-info:hover,
button.btn:hover:not(.btn-close):not(.swal2-confirm):not(.swal2-cancel):not(.swal2-deny),
a.btn:hover:not(.btn-close),
input[type="submit"].btn:hover,
input[type="button"].btn:hover {
    background: rgba(0, 163, 255, 0.2) !important;
    color: #00a3ff !important;
    transform: translateY(-1px) !important;
}

.btn-danger,
.btn-remove,
.reject-button {
    background: rgba(239, 68, 68, 0.12) !important;
    color: #ef4444 !important;
}

.btn-danger:hover,
.btn-remove:hover,
.reject-button:hover {
    background: rgba(239, 68, 68, 0.2) !important;
}

.btn-success,
.btn-add:not(.points-add-btn),
.accept-button {
    background: rgba(34, 197, 94, 0.12) !important;
    color: #22c55e !important;
}

.btn-success:hover,
.btn-add:hover:not(.points-add-btn),
.accept-button:hover {
    background: rgba(34, 197, 94, 0.2) !important;
}

.btn-secondary,
.btn-share,
.btn-info,
.report-btn {
    background: rgba(255, 255, 255, 0.06) !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.btn-secondary:hover,
.btn-share:hover,
.btn-info:hover,
.report-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .swal2-popup {
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }

    .swal2-title {
        font-size: 1.5rem !important;
    }

    .swal2-html-container {
        font-size: 0.9rem !important;
    }

    .swal2-confirm,
    .swal2-cancel,
    .swal2-deny {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
}

/* ──────────────────────────────────────────────────────────────
   6. TOAST NOTIFICATIONS
   ────────────────────────────────────────────────────────────── */

#toast-container {
    position: fixed;
    z-index: 9999;
}

#toast-container>div {
    opacity: 0.95;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    background: linear-gradient(145deg, #1F2937 0%, #111827 100%);
    border: 1px solid rgba(0, 163, 255, 0.3);
    color: #ffffff;
    padding: 15px 20px;
    min-width: 300px;
    max-width: 400px;
    font-family: 'Inter', sans-serif;
}

#toast-container>.toast-success {
    background: linear-gradient(145deg, rgba(0, 163, 255, 0.9) 0%, rgba(0, 163, 255, 0.7) 100%);
    border-color: rgba(0, 163, 255, 0.3);
}

#toast-container>.toast-error {
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.9) 0%, rgba(239, 68, 68, 0.7) 100%);
    border-color: rgba(239, 68, 68, 0.3);
}

#toast-container>.toast-info {
    background: linear-gradient(145deg, rgba(0, 163, 255, 0.9) 0%, rgba(0, 163, 255, 0.7) 100%);
    border-color: rgba(0, 163, 255, 0.3);
}

#toast-container>.toast-warning {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.9) 0%, rgba(251, 191, 36, 0.7) 100%);
    border-color: rgba(251, 191, 36, 0.3);
}

.toast-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.toast-message {
    font-size: 14px;
    line-height: 1.4;
}

.toast-close-button {
    color: #ffffff;
    opacity: 0.8;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.5;
}

.toast-close-button:hover {
    opacity: 1;
}

#toast-container.toast-top-right {
    top: 80px;
    right: 20px;
}

#toast-container.toast-bottom-right {
    bottom: 20px;
    right: 20px;
}

#toast-container.toast-top-left {
    top: 80px;
    left: 20px;
}

#toast-container.toast-bottom-left {
    bottom: 20px;
    left: 20px;
}

@media (max-width: 768px) {
    #toast-container>div {
        min-width: 250px;
        max-width: 90%;
    }

    #toast-container.toast-top-right,
    #toast-container.toast-bottom-right,
    #toast-container.toast-top-left,
    #toast-container.toast-bottom-left {
        right: 10px;
        left: 10px;
        width: calc(100% - 20px);
    }
}

/* ──────────────────────────────────────────────────────────────
   7. SECTION HEADER
   ────────────────────────────────────────────────────────────── */

.section-header {
    --sh-accent: #00a3ff;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
    padding: 14px 20px 14px 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--sh-accent);
    border-radius: 10px;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 14px;
    overflow: hidden;
    box-shadow: none;
    text-transform: uppercase;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--sh-accent);
    opacity: 0.08;
    transform: translateY(-50%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.section-header:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    transform: none;
}

.section-header:hover::before {
    opacity: 0.14;
}

.section-header span {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    letter-spacing: inherit;
}

.section-header h1,
.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: inherit;
    font-weight: inherit;
    color: #fff;
    margin: 0;
}

.section-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85em;
    font-weight: 500;
    color: #7d8590;
    margin: 4px 0 0;
}

/* All variants use the same accent */
.section-header--news,
.section-header--kino,
.section-header--kritik,
.section-header--highlight { --sh-accent: #00a3ff; }

@media (max-width: 768px) {
    .section-header {
        font-size: 17px;
        margin-bottom: 18px;
        padding: 12px 16px 12px 18px;
        gap: 10px;
        border-radius: 8px;
    }
}

/* ──────────────────────────────────────────────────────────────
   8. NAVBAR
   ────────────────────────────────────────────────────────────── */

.navbar {
    background: linear-gradient(359deg, rgba(17, 24, 39, 0.95), rgba(0, 0, 0, 0.85));
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1002;
    border-bottom: 1px solid rgba(0, 163, 255, 0.3);
    min-height: 75px;
    display: flex;
    align-items: center;
    padding: 10px 18px;
    max-width: 100%;
    overflow-x: clip;
    overflow-y: visible;
}

.navbar .navbar-brand img {
    height: 40px;
    width: 180px;
    transform: scale(1.1);
    filter: brightness(1.2);
}

.navbar .nav-link {
    color: #ffffff;
    margin: 0 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00a3ff;
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

.navbar .nav-link:hover {
    color: #33b5ff;
    transform: translateY(-2px);
}

.navbar .dropdown-menu {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(0, 0, 0, 0.85));
    border-radius: 11px;
    padding: 9px 0;
    border: none;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.3);
}

.navbar .dropdown-item {
    color: #ffffff;
    padding: 9px 19px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.navbar .dropdown-item:hover {
    background: rgba(0, 163, 255, 0.2);
    color: #33b5ff;
    transform: translateX(5px);
}

/* ──────────────────────────────────────────────────────────────
   9. SEARCH BAR (HEADER)
   ────────────────────────────────────────────────────────────── */

.navbar .search-bar-header {
    position: relative;
    width: 250px;
    min-width: 140px;
    max-width: 360px;
    flex: 1 1 250px;
    transition: width 0.25s ease;
    margin-left: 12px;
}

.navbar .search-bar-header input {
    width: 100%;
    padding: 10px 48px 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 14px;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

.navbar .search-bar-header input:focus {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(0, 163, 255, 0.5);
    box-shadow: 0 0 12px rgba(0, 163, 255, 0.15);
}

.navbar .search-bar-header input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: normal;
    font-size: 13px;
}

.navbar .search-bar-header .search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    cursor: pointer;
    transition: color 0.25s ease, transform 0.25s ease;
}

.navbar .search-bar-header .search-icon:hover {
    color: #00a3ff;
    transform: translateY(-50%) scale(1.1);
}

.navbar .search-bar-header .clear-icon {
    position: absolute;
    right: 38px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    cursor: pointer;
    display: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.navbar .search-bar-header .clear-icon:hover {
    color: #00a3ff;
    transform: translateY(-50%) scale(1.1);
}

/* ──────────────────────────────────────────────────────────────
   10. CUSTOM SCROLLBAR
   ────────────────────────────────────────────────────────────── */

::-webkit-scrollbar {
    width: 12px !important;
    height: 12px !important;
}

::-webkit-scrollbar-track {
    background: #0f1419 !important;
    border-radius: 6px !important;
}

::-webkit-scrollbar-thumb {
    background: #1c2938 !important;
    border-radius: 6px !important;
    border: 2px solid #0f1419 !important;
}

::-webkit-scrollbar-thumb:hover {
    background: #1da1f2 !important;
}

/* ──────────────────────────────────────────────────────────────
   11. SEARCH SUGGESTIONS DROPDOWN
   ────────────────────────────────────────────────────────────── */

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(0, 0, 0, 0.85));
    border-radius: 11px;
    box-shadow: 0 7px 8px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: none;
    max-height: 290px;
    overflow-y: auto;
    margin-top: 9px;
    border: 1px solid rgba(0, 163, 255, 0.3);
}

.search-suggestions.show {
    display: block;
}

.search-suggestions .suggestion-item {
    padding: 11px 14px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 11px;
}

.search-suggestions .suggestion-item:hover,
.search-suggestions .suggestion-item.active {
    background: rgba(0, 163, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 2px 7px rgba(0, 163, 255, 0.3);
}

.search-suggestions .suggestion-item i {
    color: #33b5ff;
    font-size: 15px;
}

.search-suggestions .suggestion-item.active i {
    color: #ffffff;
}

/* ──────────────────────────────────────────────────────────────
   12. HEADER CONTROLS & ACCOUNT DROPDOWN
   ────────────────────────────────────────────────────────────── */

.header-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-grow: 1;
    justify-content: flex-end;
    min-width: 0;
}

.login-display {
    display: flex;
    align-items: center;
    padding: 7px 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 163, 255, 0.1));
    color: #fff;
    border-radius: 22px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
}

.login-display:hover {
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.3), rgba(255, 255, 255, 0.2));
    transform: scale(1.05);
}

.login-display img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 9px;
    border: 2px solid #00a3ff;
    transition: border-color 0.3s ease;
}

.login-display:hover img {
    border-color: #00a3ff;
}

.navbar-toggler {
    border: none;
    background: transparent;
    z-index: 1001;
    width: 44px;
    height: 44px;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.navbar-toggler::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    transition: background 0.3s ease, transform 0.3s ease;
}

.navbar-toggler:hover::before {
    background: rgba(255,255,255,0.1);
    transform: scale(1.1);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 20px;
    height: 14px;
    position: relative;
    background-image: none;
    display: inline-block;
    vertical-align: middle;
    z-index: 1;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon>span {
    content: '';
    position: absolute;
    height: 2px;
    background-color: #fff;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), width 0.4s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 99px;
}

.navbar-toggler-icon::before {
    top: 0;
    left: 0;
    width: 100%;
}

.navbar-toggler-icon>span {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 60%;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar-toggler-icon::after {
    bottom: 0;
    right: 0;
    width: 40%;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar-toggler:hover .navbar-toggler-icon>span {
    width: 100%;
}

.navbar-toggler:hover .navbar-toggler-icon::after {
    width: 100%;
}

/* Open state */
.navbar-toggler[aria-expanded="true"]::before {
    background: rgba(0,163,255,0.12);
    transform: scale(1);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1px;
    width: 100%;
    background: #00a3ff;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon>span {
    opacity: 0;
    width: 0;
    transform: translateY(-50%) translateX(10px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 50%;
    margin-bottom: -1px;
    width: 100%;
    right: auto;
    left: 0;
    background: #00a3ff;
}

.form-control {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.form-control:focus {
    border-color: #00a3ff;
    background-color: rgba(255, 255, 255, 0.15);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 163, 255, 0.5);
}

.account-nav {
    z-index: 1000;
    margin-left: auto;
    margin-right: -14px;
    flex-shrink: 0;
}

.account-dropdown {
    position: relative;
    display: inline-block;
}

.account-btn {
    background: linear-gradient(90deg, #1f2937 0%, #374151 100%);
    color: #fff;
    border: none;
    padding: 5px 5px 5px 5px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    max-width: 250px;
}

.profile-avatar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    padding: 2px;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.profile-avatar-link:hover {
    opacity: 0.75;
}

.account-btn img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.account-btn-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.2s ease;
}

.account-btn-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.account-btn-name {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(0, 0, 0, 0.85));
    min-width: 190px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.3);
    border-radius: 11px;
    overflow: hidden;
    z-index: 1002;
}

.dropdown-content a {
    color: #fff;
    padding: 11px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dropdown-content a:hover {
    transform: translateX(5px);
}

.dropdown-content a i {
    font-size: 15px;
    color: #33b5ff;
}

.more-dropdown {
    position: relative;
    display: inline-block;
}

.more-dropdown .nav-link {
    cursor: pointer;
}

.more-dropdown .dropdown-content {
    left: 0;
    right: auto;
    transform: translateX(9px);
    z-index: 1003;
}

.account-dropdown .dropdown-content {
    right: -30px;
    left: auto;
}

/* ──────────────────────────────────────────────────────────────
   13. PAGINATION
   ────────────────────────────────────────────────────────────── */

.pagination-nav,
nav.pagination-nav {
    margin: 32px 0;
    display: flex;
    justify-content: center;
}

.pagination-nav .pagination,
nav.pagination-nav ul.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 4px;
    flex-wrap: wrap;
}

.pagination-nav .page-item,
nav.pagination-nav ul.pagination li.page-item {
    margin: 0;
}

.pagination-nav .page-item .page-link,
.pagination-nav .page-item span.page-link,
nav.pagination-nav ul.pagination li.page-item a.page-link,
nav.pagination-nav ul.pagination li.page-item span.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    border: none;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    box-shadow: none;
}

.pagination-nav .page-item .page-link:hover,
nav.pagination-nav ul.pagination li.page-item a.page-link:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    transform: none;
    box-shadow: none;
}

.pagination-nav .page-item.active .page-link,
.pagination-nav .page-item.active span.page-link,
nav.pagination-nav ul.pagination li.page-item.active span.page-link,
nav.pagination-nav ul.pagination li.page-item.active a.page-link {
    background: rgba(0,163,255,0.15) !important;
    color: #00a3ff !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: none !important;
}

.pagination-nav .page-item.active .page-link:hover,
nav.pagination-nav ul.pagination li.page-item.active:hover span.page-link,
nav.pagination-nav ul.pagination li.page-item.active:hover a.page-link {
    background: rgba(0,163,255,0.22) !important;
    transform: none;
    box-shadow: none !important;
}

.pagination-nav .page-item .page-link.disabled,
.pagination-nav .page-item.disabled .page-link,
.pagination-nav .page-item.disabled span.page-link,
nav.pagination-nav ul.pagination li.page-item.disabled span.page-link {
    color: rgba(255,255,255,0.18);
    pointer-events: none;
    background: transparent;
    opacity: 1;
    cursor: default;
}

@media (max-width: 768px) {
    .pagination-nav .pagination,
    nav.pagination-nav ul.pagination {
        gap: 3px;
    }

    .pagination-nav .page-item .page-link,
    .pagination-nav .page-item span.page-link,
    nav.pagination-nav ul.pagination li.page-item a.page-link,
    nav.pagination-nav ul.pagination li.page-item span.page-link {
        min-width: 34px;
        height: 34px;
        font-size: 12px;
        padding: 0 10px;
    }
}

/* ──────────────────────────────────────────────────────────────
   14. PROFILE CONTAINER
   ────────────────────────────────────────────────────────────── */

.profile-container {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(0, 0, 0, 0.85));
    border: 2px solid #00a3ff;
    border-radius: 11px;
    padding: 18px;
    margin: 14px 0;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.profile-avatar {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00a3ff;
    margin-bottom: 9px;
}

.profile-info h3 {
    color: #00a3ff;
    margin-bottom: 7px;
    font-size: 19px;
    font-weight: 600;
}

.profile-info p {
    margin: 5px 0;
    font-size: 14px;
}

.profile-actions {
    margin-top: 14px;
}

.profile-actions .btn-custom {
    margin-right: 7px;
}

/* ──────────────────────────────────────────────────────────────
   15. RESPONSIVE – DESKTOP BREAKPOINTS
   ────────────────────────────────────────────────────────────── */

@media (max-width: 1399.98px) {
    .header-controls {
        order: -1;
    }

    /* Fullscreen overlay for all sub-xxl screens */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(7,9,12,0.97);
        padding: 100px 40px 40px;
        margin: 0;
        border-radius: 0;
        z-index: 1000;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
        box-shadow: none;
        overflow-y: auto;
    }

    .navbar-collapse.collapsing {
        display: flex !important;
        height: auto !important;
        overflow: visible !important;
        transition: height 0.001s linear;
    }

    .navbar-collapse.show {
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-nav {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
        max-width: 340px;
    }

    .navbar-collapse .navbar-nav .nav-link {
        font-size: 17px;
        font-weight: 600;
        letter-spacing: 1.5px;
        padding: 14px 20px;
        border-radius: 12px;
        margin: 0;
        color: rgba(255,255,255,0.6);
        transition: background 0.2s ease, color 0.2s ease;
        text-align: center;
    }

    .navbar-collapse .navbar-nav .nav-link:hover {
        background: rgba(255,255,255,0.06);
        color: #fff;
    }

    /* MEHR dropdown – inline accordion in overlay */
    .navbar-collapse .more-dropdown {
        display: block;
        position: static;
    }

    .navbar-collapse .more-dropdown .dropdown-content {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        min-width: 0;
        padding: 4px 0 8px;
        transform: none;
    }

    .navbar-collapse .more-dropdown .dropdown-content a {
        justify-content: center;
        font-size: 14px;
        font-weight: 500;
        color: rgba(255,255,255,0.45);
        padding: 10px 16px;
        border-radius: 10px;
        gap: 8px;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .navbar-collapse .more-dropdown .dropdown-content a:hover {
        color: #fff;
        background: rgba(255,255,255,0.06);
        transform: none;
    }

    .navbar-collapse .more-dropdown .dropdown-content a i {
        color: #00a3ff;
        font-size: 13px;
    }

    /* Account dropdown in overlay */
    .navbar-collapse .account-dropdown .dropdown-content {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        min-width: 0;
        padding: 4px 0 8px;
        transform: none;
    }

    .navbar-collapse .account-dropdown .dropdown-content a {
        justify-content: center;
        font-size: 14px;
        font-weight: 500;
        color: rgba(255,255,255,0.45);
        padding: 10px 16px;
        border-radius: 10px;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .navbar-collapse .account-dropdown .dropdown-content a:hover {
        color: #fff;
        background: rgba(255,255,255,0.06);
        transform: none;
    }

    /* Break header-controls so children can be independently ordered */
    .header-controls {
        display: contents !important;
    }

    /* Account section – top left of overlay */
    .account-nav {
        order: -2;
        width: 100%;
        max-width: 340px;
        display: flex;
        justify-content: flex-start;
        margin-bottom: 16px;
    }

    .navbar-collapse .account-dropdown {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-collapse .account-btn {
        background: rgba(255,255,255,0.04);
        border-radius: 50px;
        padding: 6px 16px 6px 6px;
        gap: 4px;
        max-width: 100%;
        width: auto;
        transition: background 0.2s ease;
    }

    .navbar-collapse .account-btn:hover {
        background: rgba(255,255,255,0.08);
    }

    .navbar-collapse .account-btn img {
        width: 34px;
        height: 34px;
    }

    .navbar-collapse .account-btn-toggle {
        padding: 4px 8px;
    }

    .navbar-collapse .account-btn-name {
        font-size: 13px;
        font-weight: 500;
        color: rgba(255,255,255,0.7);
        letter-spacing: 0.5px;
    }

    /* Search bar – below account, centered */
    .navbar-collapse .search-bar-header {
        order: -1;
        width: 100%;
        max-width: 340px;
        margin: 0 auto 20px;
        flex: none;
    }

    .navbar-collapse .search-bar-header input {
        padding: 14px 44px 14px 20px;
        font-size: 15px;
        border-radius: 50px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.06);
        text-align: center;
        color: #fff;
        letter-spacing: 0.3px;
    }

    .navbar-collapse .search-bar-header input::placeholder {
        color: rgba(255,255,255,0.3);
        font-size: 13px;
    }

    .navbar-collapse .search-bar-header input:focus {
        background: rgba(255,255,255,0.1);
        border-color: rgba(0,163,255,0.35);
        box-shadow: 0 0 8px rgba(0,163,255,0.1);
    }
}

@media (min-width: 1025px) {
    .navbar {
        min-height: 75px;
    }
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .navbar { padding: 10px 24px; }
    .navbar .nav-link { margin: 0 10px; font-size: 13px; }
    .navbar .search-bar-header { max-width: 290px; }
    .account-btn-name { max-width: 120px; }
}

@media (min-width: 1600px) {
    .navbar { padding: 12px 32px; }
    .navbar .nav-link { margin: 0 22px; font-size: 16px; }
    .navbar .search-bar-header { width: 400px; max-width: 400px; }
    .navbar .search-bar-header input { padding: 12px 50px 12px 20px; font-size: 16px; }
    .account-btn-name { max-width: 160px; }
}

@media (min-width: 2000px) and (max-width: 2559px) {
    .navbar { padding: 14px 44px; min-height: 85px; }
    .navbar .nav-link { margin: 0 26px; font-size: 17px; }
    .navbar .search-bar-header { width: 480px; max-width: 480px; }
    .navbar .search-bar-header input { padding: 13px 54px 13px 22px; font-size: 16px; }
    .navbar .navbar-brand img { height: 36px; width: 235px; }
    .header-controls { gap: 32px; }
    .section-header { font-size: 22px; padding: 16px 24px 16px 26px; }
    .account-btn { max-width: 280px; font-size: 15px; padding: 6px; }
    .account-btn img { width: 34px; height: 34px; }
    .account-btn-name { max-width: 190px; font-size: 15px; }
    .account-btn-toggle { padding: 5px 12px; gap: 8px; }
    .login-display { font-size: 15px; padding: 8px 16px; }
    .login-display img { width: 34px; height: 34px; }

    .container,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1800px;
    }

    .footer-container {
        max-width: 1600px !important;
    }
}

@media (min-width: 2560px) {
    .navbar { padding: 16px 56px; min-height: 95px; }
    .navbar .nav-link { margin: 0 30px; font-size: 18px; }
    .navbar .search-bar-header { width: 560px; max-width: 560px; }
    .navbar .search-bar-header input { padding: 14px 56px 14px 24px; font-size: 17px; }
    .navbar .navbar-brand img { height: 42px; width: 270px; }
    .header-controls { gap: 40px; }
    .section-header { font-size: 26px; padding: 18px 28px 18px 30px; border-radius: 12px; }
    .account-btn { max-width: 310px; font-size: 16px; padding: 7px; }
    .account-btn img { width: 38px; height: 38px; }
    .account-btn-name { max-width: 220px; font-size: 16px; }
    .account-btn-toggle { padding: 6px 14px; gap: 10px; }
    .login-display { font-size: 16px; padding: 9px 18px; }
    .login-display img { width: 38px; height: 38px; }

    .container,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 2100px;
    }

    .footer-container {
        max-width: 1800px !important;
    }
}

@media (min-width: 3840px) {
    .navbar { padding: 18px 64px; }
    .navbar .nav-link { margin: 0 36px; font-size: 19px; }
    .navbar .search-bar-header { width: 700px; max-width: 700px; }
    .navbar .search-bar-header input { padding: 16px 56px 16px 24px; font-size: 18px; }
    .navbar .navbar-brand img { height: 44px; width: 290px; }
    .header-controls { gap: 48px; }
    .section-header { font-size: 30px; padding: 20px 32px 20px 34px; border-radius: 14px; border-left-width: 4px; }
    .account-btn-name { max-width: 250px; }
}

/* ──────────────────────────────────────────────────────────────
   16. RESPONSIVE – TABLET (769px–1024px)
   ────────────────────────────────────────────────────────────── */

@media (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        padding: 12px 16px;
        min-height: 70px;
    }

    .navbar .navbar-brand {
        margin-bottom: 0;
    }

    .navbar-nav .nav-item {
        max-width: 320px;
    }

    .header-controls {
        max-width: 320px;
    }

    .navbar .search-bar-header {
        max-width: 320px;
    }

    .navbar .search-bar-header input::placeholder {
        font-size: 13px;
    }

    .navbar .search-bar-header .search-icon {
        right: 12px;
        font-size: 16px;
    }

    .navbar .search-bar-header .clear-icon {
        right: 34px;
        font-size: 14px;
    }

    .search-suggestions {
        padding: 8px;
        margin-top: 8px;
        max-height: 250px;
    }

    .search-suggestions .suggestion-item {
        padding: 10px 12px;
        font-size: 14px;
    }

    .account-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .advertising-bar {
        padding: 14px 16px;
    }

    .gif-container {
        gap: 18px;
    }

    .advertising-bar a {
        padding: 6px;
    }

    .advertising-gif {
        height: 55px;
    }
}

/* ──────────────────────────────────────────────────────────────
   17. RESPONSIVE – MOBILE (max-width: 768px)
   ────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .navbar {
        padding: 8px 12px;
        min-height: 60px;
    }

    .navbar .navbar-brand {
        margin-bottom: 0;
    }

    .navbar .navbar-brand img {
        height: 40px;
    }

    .navbar-collapse {
        padding: 90px 24px 32px;
    }

    .navbar-nav {
        gap: 2px;
        padding: 0;
    }

    .navbar-nav .nav-item {
        max-width: 280px;
    }

    .navbar-collapse .navbar-nav .nav-link {
        font-size: 16px;
        padding: 13px 16px;
        color: rgba(255,255,255,0.55);
    }

    .navbar-collapse .search-bar-header {
        max-width: 300px;
        margin-bottom: 16px;
    }

    .navbar-collapse .search-bar-header input {
        padding: 12px 40px 12px 18px;
        font-size: 14px;
    }

    .navbar-collapse .search-bar-header input::placeholder {
        font-size: 12px;
    }

    .navbar-collapse .search-bar-header .search-icon {
        right: 12px;
        font-size: 14px;
    }

    .navbar-collapse .search-bar-header .clear-icon {
        right: 32px;
        font-size: 13px;
    }

    .account-nav {
        max-width: 300px;
        margin-bottom: 12px;
    }

    .navbar-collapse .account-btn img {
        width: 30px;
        height: 30px;
    }

    .search-suggestions {
        padding: 6px;
        margin-top: 6px;
        max-height: 220px;
        z-index: 1004;
    }

    .search-suggestions .suggestion-item {
        padding: 8px 10px;
        font-size: 13px;
        gap: 8px;
    }

    .account-btn {
        padding: 7px 14px;
        font-size: 13px;
    }

    .account-btn img {
        width: 25px;
        height: 25px;
    }

    .profile-avatar-link img {
        width: 28px;
        height: 28px;
    }

    .dropdown-content {
        min-width: 160px;
        z-index: 1002;
    }

    .dropdown-content a {
        padding: 9px 12px;
        font-size: 13px;
    }

    .advertising-bar {
        padding: 12px 14px;
    }

    .gif-container {
        gap: 14px;
    }

    .advertising-bar a {
        padding: 5px;
    }

    .advertising-gif {
        height: 50px;
    }
}

/* ──────────────────────────────────────────────────────────────
   18. RESPONSIVE – SMALL PHONES (max-width: 320px)
   ────────────────────────────────────────────────────────────── */

@media only screen and (max-width: 320px) {
    .navbar {
        padding: 6px 10px;
        min-height: 55px;
    }

    .navbar .navbar-brand img {
        height: 40px;
    }

    .navbar-nav .nav-link {
        font-size: 13px;
        margin: 0 8px;
    }

    .header-controls {
        gap: 10px;
        margin-top: 10px;
    }

    .navbar .search-bar-header input {
        padding: 7px 35px 7px 10px;
        font-size: 12px;
        border-radius: 10px;
    }

    .navbar .search-bar-header input::placeholder {
        font-size: 11px;
    }

    .navbar .search-bar-header .search-icon {
        right: 8px;
        font-size: 13px;
    }

    .navbar .search-bar-header .clear-icon {
        right: 28px;
        font-size: 12px;
    }

    .search-suggestions {
        max-height: 200px;
        margin-top: 5px;
    }

    .search-suggestions .suggestion-item {
        padding: 7px 8px;
        font-size: 12px;
        gap: 7px;
    }

    .account-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .account-btn img {
        width: 22px;
        height: 22px;
    }

    .dropdown-content {
        min-width: 140px;
    }

    .dropdown-content a {
        padding: 8px 10px;
        font-size: 12px;
    }

    .profile-container {
        padding: 14px;
    }

    .profile-avatar {
        width: 80px;
        height: 80px;
    }

    .profile-info h3 {
        font-size: 17px;
    }

    .profile-info p {
        font-size: 13px;
    }

    .account-dropdown .dropdown-content {
        left: 0;
        right: auto;
    }

    .advertising-bar {
        padding: 10px 12px;
    }

    .gif-container {
        gap: 12px;
        flex-direction: column;
    }

    .advertising-bar a {
        padding: 4px;
        width: 100%;
        max-width: 200px;
    }

    .advertising-gif {
        height: 45px;
    }
}

/* ──────────────────────────────────────────────────────────────
   19. RESPONSIVE – PHONES (321px–375px)
   ────────────────────────────────────────────────────────────── */

@media only screen and (min-width: 321px) and (max-width: 375px) {
    .navbar {
        padding: 7px 12px;
        min-height: 58px;
    }

    .navbar .navbar-brand img {
        height: 40px;
    }

    .navbar-nav .nav-link {
        font-size: 13.5px;
        margin: 0 9px;
    }

    .header-controls {
        gap: 11px;
        margin-top: 11px;
    }

    .navbar .search-bar-header input {
        padding: 8px 36px 8px 11px;
        font-size: 12.5px;
        border-radius: 10px;
    }

    .navbar .search-bar-header input::placeholder {
        font-size: 11.5px;
    }

    .navbar .search-bar-header .search-icon {
        right: 9px;
        font-size: 13.5px;
    }

    .navbar .search-bar-header .clear-icon {
        right: 29px;
        font-size: 12.5px;
    }

    .search-suggestions {
        max-height: 210px;
        margin-top: 6px;
    }

    .search-suggestions .suggestion-item {
        padding: 8px 9px;
        font-size: 12.5px;
        gap: 8px;
    }

    .account-btn {
        padding: 6.5px 13px;
        font-size: 12.5px;
    }

    .account-btn img {
        width: 23px;
        height: 23px;
    }

    .dropdown-content {
        min-width: 150px;
    }

    .dropdown-content a {
        padding: 8.5px 11px;
        font-size: 12.5px;
    }

    .profile-container {
        padding: 15px;
    }

    .profile-avatar {
        width: 85px;
        height: 85px;
    }

    .profile-info h3 {
        font-size: 18px;
    }

    .profile-info p {
        font-size: 13.5px;
    }

    .account-dropdown .dropdown-content {
        left: 0;
        right: auto;
    }

    .advertising-bar {
        padding: 11px 13px;
    }

    .gif-container {
        gap: 14px;
    }

    .advertising-bar a {
        padding: 5px;
    }

    .advertising-gif {
        height: 48px;
    }
}

/* ──────────────────────────────────────────────────────────────
   20. RESPONSIVE – PHONES (376px–390px)
   ────────────────────────────────────────────────────────────── */

@media only screen and (min-width: 376px) and (max-width: 390px) {
    .navbar {
        padding: 8px 12px;
        min-height: 60px;
    }

    .navbar .navbar-brand img {
        height: 40px;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        margin: 0 10px;
    }

    .header-controls {
        gap: 12px;
        margin-top: 12px;
    }

    .navbar .search-bar-header input {
        padding: 8px 38px 8px 12px;
        font-size: 13px;
        border-radius: 10px;
    }

    .navbar .search-bar-header input::placeholder {
        font-size: 12px;
    }

    .navbar .search-bar-header .search-icon {
        right: 10px;
        font-size: 14px;
    }

    .navbar .search-bar-header .clear-icon {
        right: 30px;
        font-size: 13px;
    }

    .search-suggestions {
        max-height: 220px;
        margin-top: 6px;
    }

    .search-suggestions .suggestion-item {
        padding: 8px 10px;
        font-size: 13px;
        gap: 8px;
    }

    .account-btn {
        padding: 7px 14px;
        font-size: 13px;
    }

    .account-btn img {
        width: 25px;
        height: 25px;
    }

    .dropdown-content {
        min-width: 160px;
    }

    .dropdown-content a {
        padding: 9px 12px;
        font-size: 13px;
    }

    .profile-container {
        padding: 16px;
    }

    .profile-avatar {
        width: 90px;
        height: 90px;
    }

    .profile-info h3 {
        font-size: 18.5px;
    }

    .profile-info p {
        font-size: 14px;
    }

    .account-dropdown .dropdown-content {
        left: 0;
        right: auto;
    }

    .advertising-bar {
        padding: 12px 14px;
    }

    .gif-container {
        gap: 16px;
    }

    .advertising-bar a {
        padding: 6px;
    }

    .advertising-gif {
        height: 52px;
    }
}

/* ──────────────────────────────────────────────────────────────
   21. SNOWFLAKE ANIMATION
   ────────────────────────────────────────────────────────────── */

.snowflake-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: #fff;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: snowfall linear infinite;
    pointer-events: none;
    user-select: none;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    will-change: transform, opacity;
    contain: strict;
}

@keyframes snowfall {
    0% {
        transform: translateY(-50px) translateX(0) rotate(0deg);
        opacity: 0;
    }

    1% {
        opacity: 0.3;
    }

    3% {
        opacity: 1;
    }

    97% {
        opacity: 1;
    }

    99% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(calc(100vh + 100px)) translateX(var(--drift, 0px)) rotate(360deg);
        opacity: 0;
    }
}


/* ──────────────────────────────────────────────────────────────
   23. IMAGE SHIMMER LOADING ANIMATION
   ────────────────────────────────────────────────────────────── */

@keyframes imgShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

img:not(.hj-loaded):not(.no-loader):not([src=""]):not([src="#"]) {
    background: linear-gradient(90deg, #12192b 0%, #1a2542 20%, #243156 40%, #1a2542 60%, #12192b 80%);
    background-size: 200% 100%;
    animation: imgShimmer 1.6s ease-in-out infinite;
    border-radius: 6px;
    min-height: 40px;
}

img.hj-loaded {
    animation: none !important;
    background: transparent !important;
    min-height: unset !important;
}

img.hj-fadein {
    animation: hjFadeIn 0.3s ease-out forwards !important;
}

@keyframes hjFadeIn {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* ──────────────────────────────────────────────────────────────
   24. NAV MESSAGE BADGE
   ────────────────────────────────────────────────────────────── */

.nav-msg-badge {
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: 6px;
    line-height: 1.4;
    display: inline-block;
}

.nav-msg-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #1f2937;
    display: none;
    z-index: 2;
}

/* ──────────────────────────────────────────────────────────────
   25. HOMEPAGE – HERO SLIDER
   ────────────────────────────────────────────────────────────── */

.modern-slider {
    width: 100%;
    height: 520px;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

@media(max-width:768px) {
    .modern-slider {
        height: 280px;
        border-radius: 12px;
    }
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 8s cubic-bezier(0.25, 0, 0.15, 1);
    filter: brightness(0.75);
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.25) 45%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 50px 45px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.swiper-slide-active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

.slide-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 10px;
}

.slide-meta b {
    color: #33b5ff;
    font-weight: 700;
}

.slide-caption .slide-title {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
    letter-spacing: -0.03em;
    max-width: 700px;
}

.modern-slider .swiper-button-next,
.modern-slider .swiper-button-prev {
    color: rgba(255, 255, 255, 0.7) !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border: none !important;
    border-radius: 50% !important;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease !important;
    z-index: 10 !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    margin-top: 0 !important;
    box-shadow: none !important;
}

.modern-slider .swiper-button-next:hover,
.modern-slider .swiper-button-prev:hover {
    color: #fff !important;
    background: rgba(0, 163, 255, 0.4) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.modern-slider .swiper-button-next::after,
.modern-slider .swiper-button-prev::after {
    font-size: 16px !important;
}

.modern-slider .swiper-button-next {
    right: 16px !important;
    left: auto !important;
}

.modern-slider .swiper-button-prev {
    left: 16px !important;
    right: auto !important;
}

.swiper-pagination {
    bottom: 18px !important;
}

.swiper-pagination-bullet {
    width: 36px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.85);
    opacity: 1;
    transition: width 0.4s ease, background 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.3);
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.swiper-pagination-bullet:hover {
    background: #fff;
}

.swiper-pagination-bullet-active {
    background: #00a3ff;
    width: 52px;
    border-radius: 3px;
    opacity: 1;
    border-color: rgba(0, 163, 255, 0.6);
    box-shadow: 0 0 14px rgba(0, 163, 255, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media(max-width:768px) {
    .slide-caption {
        padding: 0 20px 38px !important;
    }

    .slide-meta {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    .slide-caption .slide-title {
        font-size: 1.15rem !important;
        line-height: 1.3 !important;
        -webkit-line-clamp: 2 !important;
    }

    .swiper-pagination {
        bottom: 12px !important;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        margin: 0 4px !important;
    }

    .swiper-pagination-bullet-active {
        width: 28px;
        border-radius: 5px;
    }

    .modern-slider .swiper-button-next,
    .modern-slider .swiper-button-prev {
        display: none !important;
    }
}

/* ──────────────────────────────────────────────────────────────
   26. HOMEPAGE – MOBILE FILTER TABS
   ────────────────────────────────────────────────────────────── */

.news-tabs {
    display: none;
}

@media(max-width:768px) {
    .news-tabs {
        display: flex;
        gap: 8px;
        justify-content: center;
        margin: 8px 0 14px;
    }

    .news-tab {
        border: 1px solid #27344A;
        background: #0f172a;
        color: #cbd5e1;
        font-weight: 700;
        text-transform: uppercase;
        padding: 7px 14px;
        border-radius: 999px;
        font-size: .78rem;
        letter-spacing: .5px;
        cursor: pointer;
        user-select: none;
        transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    }

    .news-tab.active {
        background: rgba(0, 163, 255, 0.12);
        border-color: rgba(0, 163, 255, 0.3);
        color: #00a3ff;
    }
}

/* ──────────────────────────────────────────────────────────────
   27. HOMEPAGE – UNIFIED OVERLAY CARD BASE
   ────────────────────────────────────────────────────────────── */

.card-news,
.card-kritik,
.cinema-card,
.highlight-card {
    display: block;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: #0f172a;
    border: 1px solid rgba(0, 163, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: inherit;
    text-decoration: none;
}

.card-news:hover,
.card-kritik:hover,
.cinema-card:hover,
.highlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 163, 255, 0.4);
    box-shadow: 0 20px 14px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 163, 255, 0.15);
}

.card-news > img,
.card-kritik > img,
.highlight-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-news:hover > img,
.card-kritik:hover > img,
.cinema-card:hover > img,
.highlight-card:hover > img {
    transform: scale(1.06);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.45) 55%, transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-overlay .card-meta {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 500;
}

.card-overlay .card-meta b {
    color: #33b5ff;
    font-weight: 700;
}

.card-overlay .card-title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
    color: #fff;
    font-weight: 800;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.01em;
}

/* ──────────────────────────────────────────────────────────────
   28. HOMEPAGE – NEWS BENTO GRID
   ────────────────────────────────────────────────────────────── */

.bento-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
    margin-bottom: 2rem;
}

.bento-news .card-news:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.bento-news .card-news:first-child .card-overlay {
    padding: 50px 28px 24px;
}

.bento-news .card-news:first-child .card-overlay .card-title {
    font-size: 1.5rem;
    line-height: 1.25;
    -webkit-line-clamp: 3;
}

.bento-news .card-news:first-child .card-overlay .card-meta {
    font-size: 0.85rem;
}

@media(max-width:991px) {
    .bento-news {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(200px, auto);
    }

    .bento-news .card-news:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 280px;
    }
}

@media(max-width:768px) {
    .bento-news {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(200px, auto);
    }

    .bento-news .card-news:first-child {
        grid-column: auto;
        grid-row: auto;
        min-height: 200px;
    }

    .bento-news .card-news:first-child .card-overlay .card-title {
        font-size: 1.15rem;
    }
}

/* ──────────────────────────────────────────────────────────────
   29. HOMEPAGE – KINO HORIZONTAL SCROLL
   ────────────────────────────────────────────────────────────── */

.kino-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    margin-bottom: 2rem;
    scrollbar-width: thin;
    scrollbar-color: #1c2938 #0f1419;
}

.kino-scroll::-webkit-scrollbar {
    height: 12px;
}

.kino-scroll::-webkit-scrollbar-track {
    background: #0f1419;
    border-radius: 6px;
}

.kino-scroll::-webkit-scrollbar-thumb {
    background: #1c2938;
    border-radius: 6px;
    border: 2px solid #0f1419;
}

.kino-scroll::-webkit-scrollbar-thumb:hover {
    background: #1da1f2;
}

.cinema-card {
    flex: 0 0 175px;
    scroll-snap-align: start;
    aspect-ratio: 2 / 3;
}

.cinema-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cinema-card .card-overlay {
    padding: 30px 12px 12px;
}

.cinema-card .card-overlay .card-title {
    font-size: 0.85rem;
}

.cinema-card .cinema-date {
    font-size: 0.7rem;
    font-weight: 600;
    color: #33b5ff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cinema-card .cinema-date i {
    font-size: 0.65rem;
}

@media(max-width:768px) {
    .cinema-card {
        flex: 0 0 140px;
    }

    .cinema-card .card-overlay .card-title {
        font-size: 0.78rem;
    }

    .cinema-card .cinema-date {
        font-size: 0.65rem;
    }
}

/* ──────────────────────────────────────────────────────────────
   30. HOMEPAGE – REVIEW GRID (KRITIKEN)
   ────────────────────────────────────────────────────────────── */

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
    margin-bottom: 2rem;
}

@media(max-width:991px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
}

@media(max-width:768px) {
    .review-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
}

/* ──────────────────────────────────────────────────────────────
   31. HOMEPAGE – HIGHLIGHT GRID
   ────────────────────────────────────────────────────────────── */

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
    margin-bottom: 2rem;
}

@media(max-width:768px) {
    .highlight-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
}

/* ──────────────────────────────────────────────────────────────
   32. HOMEPAGE – MOBILE & SCALING OVERRIDES
   ────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
    .bento-news { grid-auto-rows: minmax(180px, auto); gap: 12px; }
    .bento-news .card-news:first-child { min-height: 180px; }
    .card-overlay { padding: 30px 14px 14px; }
    .card-overlay .card-title { font-size: 0.9rem; }
    .card-overlay .card-meta { font-size: 0.72rem; }
    .bento-news .card-news:first-child .card-overlay { padding: 30px 18px 16px; }
    .bento-news .card-news:first-child .card-overlay .card-title { font-size: 1.05rem; }
    .modern-slider { height: 240px; }
    .slide-caption { padding: 0 16px 34px !important; }
    .slide-caption .slide-title { font-size: 1rem !important; }
}

@media (min-width: 2000px) and (max-width: 2559px) {
    .modern-slider { height: 600px; border-radius: 22px; }
    .slide-caption .slide-title { font-size: 2.5rem; }
    .bento-news { grid-auto-rows: 250px; gap: 18px; }
    .review-grid { grid-auto-rows: 300px; gap: 18px; }
    .highlight-grid { grid-auto-rows: 280px; gap: 18px; }
    .cinema-card { flex: 0 0 200px; }
    .card-overlay .card-title { font-size: 1.1rem; }
}

@media (min-width: 2560px) {
    .modern-slider { height: 720px; border-radius: 24px; }
    .slide-caption .slide-title { font-size: 3.2rem; }
    .slide-caption .slide-subtitle { font-size: 1.15rem; }
    .bento-news { grid-auto-rows: 300px; gap: 22px; }
    .bento-news .card-news:first-child .card-overlay .card-title { font-size: 1.6rem; }
    .review-grid { grid-auto-rows: 360px; gap: 22px; }
    .highlight-grid { grid-auto-rows: 340px; gap: 22px; }
    .cinema-card { flex: 0 0 240px; }
    .card-overlay .card-title { font-size: 1.2rem; }
    .card-overlay .card-meta { font-size: 0.9rem; }
    .card-overlay { padding: 50px 24px 22px; }
}

@media (min-width: 3840px) {
    .modern-slider { height: 900px; border-radius: 30px; }
    .slide-caption .slide-title { font-size: 4rem; }
    .slide-caption { padding: 0 80px 70px; }
    .bento-news { grid-auto-rows: 380px; gap: 24px; }
    .bento-news .card-news:first-child .card-overlay .card-title { font-size: 2.2rem; }
    .review-grid { grid-auto-rows: 440px; gap: 24px; }
    .highlight-grid { grid-auto-rows: 400px; gap: 24px; }
    .cinema-card { flex: 0 0 280px; }
    .card-overlay .card-title { font-size: 1.4rem; }
    .card-overlay .card-meta { font-size: 1rem; }
    .card-overlay { padding: 60px 30px 28px; }
}

/* ──────────────────────────────────────────────────────────────
   33. HOMEPAGE – CARD SHIMMER LAZY LOADING
   ────────────────────────────────────────────────────────────── */

.card-news > img.lazy,
.cinema-card > img.lazy,
.card-kritik > img.lazy,
.highlight-card > img.lazy {
    background: linear-gradient(90deg, #12192b 0%, #1a2542 20%, #243156 40%, #1a2542 60%, #12192b 80%) !important;
    background-size: 200% 100% !important;
    animation: imgShimmer 1.6s ease-in-out infinite !important;
    min-height: 120px;
}

.card-news > img.lazy-loading,
.cinema-card > img.lazy-loading,
.card-kritik > img.lazy-loading,
.highlight-card > img.lazy-loading {
    background: linear-gradient(90deg, #12192b 0%, #1a2542 20%, #243156 40%, #1a2542 60%, #12192b 80%) !important;
    background-size: 200% 100% !important;
    animation: imgShimmer 1.6s ease-in-out infinite !important;
}

/* ──────────────────────────────────────────────────────────────
   GIVEAWAY MODAL (Kritiken-Style)
   ────────────────────────────────────────────────────────────── */

/* Overlay */
.gw-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.gw-modal.show {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5vh;
    animation: gwOverlayIn .2s ease-out;
}

@keyframes gwOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes gwModalIn {
    from { opacity: 0; transform: scale(.92) translateY(16px); }
    to   { opacity: 1; transform: none; }
}

/* Content Box */
.gw-content {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: gwModalIn .35s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .02), 0 20px 16px rgba(0, 0, 0, .6), 0 8px 8px rgba(0, 0, 0, .35);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Poppins', sans-serif;
}

.gw-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00a3ff, transparent);
    border-radius: 0 0 2px 2px;
    opacity: .6;
    z-index: 11;
}

.gw-content::-webkit-scrollbar { width: 5px; }
.gw-content::-webkit-scrollbar-track { background: transparent; }
.gw-content::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.08); border-radius: 3px; }

/* Header */
.gw-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    position: sticky;
    top: 0;
    z-index: 10;
    background: #0d1117;
    border-radius: 20px 20px 0 0;
}

.gw-header-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gw-header-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 163, 255, .1);
    border: 1px solid rgba(0, 163, 255, .2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a3ff;
    flex-shrink: 0;
}

.gw-header h2 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #e6edf3;
    letter-spacing: -.01em;
    line-height: 1.3;
}

.gw-header-sub {
    margin: 2px 0 0;
    font-size: .76rem;
    color: #484f58;
    font-weight: 400;
}

/* Close Button */
.gw-close-btn {
    position: relative;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .06);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
    flex-shrink: 0;
}

.gw-close-btn:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
}

.gw-close-btn::before,
.gw-close-btn::after {
    content: '';
    position: absolute;
    width: 13px;
    height: 1.5px;
    background: #484f58;
    border-radius: 1px;
    transition: background .2s;
}

.gw-close-btn:hover::before,
.gw-close-btn:hover::after { background: #e6edf3; }

.gw-close-btn::before { transform: rotate(45deg); }
.gw-close-btn::after { transform: rotate(-45deg); }

/* Body */
.gw-body {
    padding: 1.5rem;
}

/* Steps */
.gw-step {
    margin-bottom: 1.5rem;
}

.gw-step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: .65rem;
}

.gw-step-badge {
    width: 24px;
    height: 24px;
    background: rgba(0, 163, 255, .1);
    border: 1px solid rgba(0, 163, 255, .15);
    color: #00a3ff;
    border-radius: 8px;
    font-size: .72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gw-step-label {
    font-size: .84rem;
    font-weight: 600;
    color: #c9d1d9;
    letter-spacing: -.01em;
}

.gw-step-body {
    padding-left: 34px;
}

/* Countdown */
.gw-countdown {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
}

.gw-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #161b22;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 10px 14px;
    min-width: 58px;
    transition: border-color .2s;
}

.gw-countdown-item:hover {
    border-color: rgba(0, 163, 255, .2);
}

.gw-cd-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e6edf3;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.gw-cd-label {
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #484f58;
    margin-top: 3px;
}

.gw-countdown-sep {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .12);
    padding-bottom: 14px;
}

/* Gifts */
.gw-gifts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gw-gift-badge {
    background: rgba(0, 163, 255, .04);
    border: 1px solid rgba(0, 163, 255, .12);
    border-radius: 10px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    transition: border-color .2s, background .2s;
}

.gw-gift-badge:hover {
    border-color: rgba(0, 163, 255, .3);
    background: rgba(0, 163, 255, .08);
}

.gw-gift-count {
    font-weight: 700;
    color: #00a3ff;
    font-size: .82rem;
}

.gw-gift-name {
    color: #c9d1d9;
}

/* Participants */
.gw-participants-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #161b22;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
}

.gw-participant-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e6edf3;
    line-height: 1;
}

.gw-participant-text {
    font-size: .82rem;
    color: #484f58;
}

/* Action Buttons */
.gw-actions {
    display: flex;
    gap: 10px;
    margin-top: .5rem;
}

.gw-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: .7rem 1.2rem;
    border-radius: 12px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    font-family: 'Outfit', 'Poppins', sans-serif;
}

.gw-btn-primary {
    background: linear-gradient(135deg, #00a3ff, #0077cc);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 163, 255, .25);
}

.gw-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 8px rgba(0, 163, 255, .35);
    color: #fff;
}

.gw-btn-secondary {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    color: #484f58;
}

.gw-btn-secondary:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
    color: #c9d1d9;
}

.gw-btn-success {
    background: rgba(34, 197, 94, .08);
    border: 1px solid rgba(34, 197, 94, .2);
    color: #22c55e;
    cursor: default;
}

@media (max-width: 576px) {
    .gw-content {
        max-width: 100%;
        border-radius: 16px;
    }
    .gw-countdown-item {
        min-width: 48px;
        padding: 8px 10px;
    }
    .gw-cd-num {
        font-size: 1.2rem;
    }
    .gw-body {
        padding: 1rem;
    }
    .gw-actions {
        flex-direction: column;
    }
    .gw-header {
        padding: 1rem 1.25rem;
    }
}

