/* =========================================
   1. ОСНОВНИ НАСТРОЙКИ & ТИПОГРАФИЯ
   ========================================= */
h1, h2, h3 {
    font-family: 'Bangers', system-ui;
    letter-spacing: 2px;
}

body {
    font-family: 'Arial Black', sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

/* =========================================
   2. БАНЕР & НАВИГАЦИЯ
   ========================================= */
.main-banner {
    background: #000000; 
    padding: 60px 20px;
    text-align: center;
    border-bottom: 8px solid #fff;
    text-transform: uppercase;
}

.main-banner h1 {
    font-size: 4rem;
    margin: 0;
    letter-spacing: -2px;
    text-shadow: 4px 4px #000;
}

.banner-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.navbar {
    background: #000;
    border-bottom: 4px solid #fff;
    position: sticky; 
    top: 0;           
    z-index: 1000;    
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 15px;
    margin: 0;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
}

.navbar a:hover {
    background: #fff;
    color: #000;
}

/* =========================================
   3. ЛЕЙАУТ & СЪДЪРЖАНИЕ
   ========================================= */
.container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    gap: 40px;
}

.content { flex: 3; }
.sidebar { flex: 1; border-left: 2px dashed #fff; padding-left: 20px; }

.section-box {
    padding: 60px 0;
    border-bottom: 2px dashed #444;
}

.latest-news {
    background: #222;
    padding: 20px;
    border: 3px solid #fff;
    box-shadow: 10px 10px 0px #fff;
}

.tag {
    background: #fff;
    color: #000;
    padding: 5px 10px;
    font-size: 0.8rem;
}

.news-img {
    width: 100%;
    filter: none;
    margin: 15px 0;
    border: 3px solid #fff;
}

.ska-divider {
    border: 5px solid #fff;
    margin: 40px 0;
    background-image: linear-gradient(45deg, #000 25%, transparent 25%), 
                      linear-gradient(-45deg, #000 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #000 75%), 
                      linear-gradient(-45deg, transparent 75%, #000 75%);
    background-size: 20px 20px;
    background-color: #fff;
    height: 20px;
}

.socials {
    display: flex;
    gap: 30px;
    padding: 15px 0;
}

.socials a {
    color: #fff;
    font-size: 45px;
    text-decoration: none;
    transition: 0.2s;
    text-shadow: 4px 4px 0px #333;
}

.socials a:hover {
    transform: scale(1.2) translateY(-5px);
    text-shadow: 6px 6px 0px #fff;
}

/* =========================================
   4. ГАЛЕРИЯ & ФИЛТРИ
   ========================================= */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.photo-item {
    background: #000;
    border: 4px solid #fff;
    box-shadow: 8px 8px 0px #fff;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(100%) contrast(120%);
    transition: 0.4s;
}

.photo-item:hover img {
    filter: grayscale(0%) contrast(100%);
}

.photo-item .photo-caption {
    background: #fff;
    color: #000;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.filter-buttons {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
}

.filter-btn {
    background: #000;
    color: #fff;
    border: 3px solid #fff;
    padding: 10px 25px;
    font-family: 'Bangers', cursive !important;
    font-size: 1.2rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
    box-shadow: 4px 4px 0px #333;
    -webkit-appearance: none;
    appearance: none;
}

.filter-btn:hover {
    background: #444;
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px #fff;
}

.filter-btn.active {
    background: #fff !important; 
    color: #000 !important;      
    box-shadow: 5px 5px 0px #888;
    transform: scale(1.05);      
    border-color: #000;
}

/* Специфичен стил за годините */
#yearFilterContainer {
    border-top: 1px dashed #444;
    padding-top: 20px;
    margin-bottom: 30px;
}

#yearFilterContainer .filter-btn {
    font-size: 0.9rem;
    padding: 5px 15px;
    border-width: 2px;
    box-shadow: 2px 2px 0px #333;
}

/* =========================================
   5. МУЗИКА & VIEWER (MODAL)
   ========================================= */
.audio-player-container {
    background: #111;
    padding: 20px;
    border: 3px solid #fff;
    box-shadow: 10px 10px 0px #fff;
}

audio { width: 100%; filter: invert(100%); }

.viewer-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    touch-action: none;
}

.img-container { text-align: center; max-width: 90%; }

#fullSizeImg {
    max-width: 100%;
    max-height: 80vh;
    border: 5px solid #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    transition: opacity 0.2s ease-in-out;
    user-select: none;
    -webkit-user-drag: none;
}

.viewer-caption {
    color: #fff;
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    margin-top: 15px;
    text-transform: uppercase;
}

.close-btn {
    position: absolute;
    top: 20px; right: 30px;
    color: #fff; font-size: 60px;
    cursor: pointer; line-height: 1;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.nav-btn:hover { background: #fff; color: #000; }
.prev { left: 10px; }
.next { right: 10px; }

/* =========================================
   6. РЕСПОНСИВ ДИЗАЙН (MOBILE)
   ========================================= */
@media (max-width: 768px) {
    .container { flex-direction: column; }
    .sidebar { border-left: none; border-top: 2px dashed #fff; padding-top: 20px; }
    .main-banner h1 { font-size: 2.2rem; }

    .navbar ul {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        padding: 10px;
        gap: 8px;
        align-items: center;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .navbar ul::-webkit-scrollbar { display: none; }

    .navbar a { 
        border: 2px solid #fff; 
        white-space: nowrap; 
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 1rem;
        flex: 1 1 auto;
    }

    #yearFilterContainer {
        gap: 5px;
    }

    #yearFilterContainer .filter-btn {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    #fullSizeImg { max-height: 60vh; }
    .nav-btn { display: none; } /* Скриваме стрелките на мобилни, защото има swipe */
    .close-btn { top: 10px; right: 20px; font-size: 50px; }
}

/* Всички линкове в съдържанието и новините */
.content a, .news-entry a, .section-box a {
    color: #000 !important; /* Насилствено черен текст */
    text-decoration: none;
    background: #fff;
    padding: 3px 8px;
    text-transform: uppercase;
    border: 2px solid #000;
    display: inline-block;
    font-weight: bold;
    margin: 2px 0;
    transform: rotate(-1deg);
    transition: 0.2s;
}

.content a:hover, .news-entry a:hover, .section-box a:hover {
    transform: rotate(2deg) scale(1.1);
    background: #fff; /* Малко цвят при посочване - примерно жълто */
    color: #000;
}

/* Изключение за социалните икони, за да не станат и те бели кутийки */
.socials a {
    background: none !important;
    border: none !important;
    transform: none !important;
    display: inline;
    padding: 0;
}

/* Фикс за разстоянието на закованата новина отгоре */
.content .latest-news {
    margin-bottom: 30px;
}

/* Стил за футъра */
.main-footer {
    text-align: center;
    padding: 40px 20px;
    background: #000;
    border-top: 4px solid #fff;
    margin-top: 50px;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
}

/* Бонус: малко по-красиво разстояние за списъка с членовете на бандата в Инфо секцията */
#info ul li {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.news-divider {
    border: 2px solid #fff; /* По-тънка рамка */
    margin: 20px auto;
    background-image: linear-gradient(45deg, #000 25%, transparent 25%), 
                      linear-gradient(-45deg, #000 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #000 75%), 
                      linear-gradient(-45deg, transparent 75%, #000 75%);
    background-size: 10px 10px; /* По-малки квадратчета */
    background-color: #fff;
    height: 10px; /* По-ниска височина */
    width: 80%;   /* Не заема целия екран, стои по-елегантно */
    border-radius: 0;
}

/* 1. Решетка за видео кутиите */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

/* 2. Основна кутия на всяко видео */
.video-item {
    background: #000;
    border: 3px solid #fff;
    box-shadow: 10px 10px 0px #fff;
    padding: 15px;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

/* 3. Изчистване на стила на линка (важно за пънк визията) */
.video-link-container {
    text-decoration: none !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    display: block;
    position: relative;
    line-height: 0;
}

/* 4. Снимката (Thumbnail) */
.video-thumb {
    width: 100%;
    height: auto;
    border: 2px solid #fff;
    filter: none;
    transition: 0.4s ease;
}

/* 5. Play бутона върху снимката */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    opacity: 0.8;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* 6. Ховър ефекти */
.video-link-container:hover .video-thumb {
    filter: none;
}

.video-link-container:hover .play-overlay {
    opacity: 1;
    background: #ff0000; /* Пънк червено */
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

/* 7. Заглавието под видеото */
.video-caption {
    font-family: 'Bangers', cursive;
    text-align: center;
    margin-top: 15px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
    text-transform: uppercase;
}

/* Контейнер за подравняване */
.footer-bottom-row {
    display: flex;
    justify-content: flex-end; /* Избутва всичко надясно */
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
}

.mini-counter-static {
    opacity: 0.3; /* Прозрачност */
    transition: opacity 0.3s ease;
}

.mini-counter-static img {
    width: 70px; /* Още по-малък размер */
    height: auto;
    display: block;
    filter: grayscale(100%); /* Черно-бял */
}

/* Ефект при посочване */
.mini-counter-static:hover {
    opacity: 1;
}

.mini-counter-static:hover img {
    filter: grayscale(0%);
}

/* Албум Акордеон */
.album-container {
    max-width: 600px;
    margin: 20px auto;
}

.album-accordion summary {
    list-style: none; /* Махаме стандартната стрелка */
    outline: none;
    cursor: pointer;
}

.album-accordion summary::-webkit-details-marker {
    display: none;
}

/* Рамката на обложката */
.album-cover-frame {
    position: relative;
    border: 5px solid #fff;
    box-sizing: border-box;
    box-shadow: 12px 12px 0px #000;
    line-height: 0;
    transition: transform 0.2s;
}

.album-cover-frame:hover {
    transform: translate(-4px, -4px);
    
}

.album-cover-img {
    width: 100%;
    height: auto;
    filter: grayscale(20%);
}

/* Надписът върху обложката */
.album-hint {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: #fff;
    color: #000;
    padding: 10px 15px;
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    transform: rotate(-2deg);
    box-shadow: 4px 4px 0px #000;
}

/* Списъкът с песни след отваряне */
.tracklist-expanded {
    background: #222;
    border: 3px solid #fff;
    margin-top: 15px;
    padding: 15px;
    box-shadow: 8px 8px 0px #fff;
}

.track-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #555;
    flex-wrap: wrap; /* Позволява на бутона да мине отдолу на много тесни телефони */
    gap: 10px;
}

.track-row:last-of-type {
    border-bottom: none;
}

.track-meta {
    font-family: 'Courier New', monospace;
    color: #fff;
    margin-bottom: 10px;
}

.track-num {
    color: #fff;
    font-weight: bold;
    margin-right: 10px;
}

.track-title {
    font-size: 1.1rem;
    text-transform: uppercase;
}

.track-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Стилизиране на аудио плейъра за по-добър изглед */
audio {
    height: 35px;
    filter: invert(1) hue-rotate(180deg); /* Прави стандартния плейър тъмен */
}




.album-footer-note {
    font-family: 'Bangers', cursive;
    text-align: center;
    margin-top: 15px;
    color: #888;
}

/* Стилизиране на самия аудио плейър */
.punk-player {
    height: 35px;
    width: 220px; /* Фиксирана ширина, за да не "играе" */
    filter: invert(100%) hue-rotate(180deg) brightness(1.5); /* Прави го бял/светъл на тъмния фон */
    outline: none;
}

.track-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap; /* За да не се чупи на малки телефони */
}

.punk-download-link {
    background: #fff;
    color: #000;
    padding: 0 15px; /* Променяме от фиксирана ширина на padding */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Разстояние между иконата и текста */
    text-decoration: none;
    border: 2px solid #fff;
    font-family: 'Bangers', cursive; /* Пънк шрифт за бутона */
    font-size: 1rem;
    box-shadow: 4px 4px 0px #000;
    transition: 0.2s;
    min-width: 100px; /* Даваме му минимална ширина */
}

.punk-download-link span {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.punk-download-link:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
    box-shadow: 2px 2px 0px #000;
}

.lyrics-chorus {
    border-left: 3px solid #ff0000;
    padding-left: 10px;
    font-style: italic;
    margin: 15px 0;
}

.lyrics-outro {
    text-align: right;
    font-weight: bold;
    color: #555;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.album-credits {
    margin-top: 30px;
    padding: 20px;
    border-top: 2px solid #333;
    background: rgba(0, 0, 0, 0.4); /* Леко потъмняване за контраст */
    color: #bbb;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    text-align: left;
}

.credits-header h3 {
    font-family: 'Bangers', cursive;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.credits-grid {
    display: grid;
    grid-template-columns: 1fr; /* По подразбиране е една колона за телефон */
    gap: 10px;
}

/* На по-големи екрани става на две колони */
@media (min-width: 600px) {
    .credits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.credit-item {
    border-bottom: 1px solid #222;
    padding-bottom: 5px;
}

.credit-item .label {
    font-weight: bold;
    color: #888;
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.credit-item .value {
    color: #eee;
}

/* Благодарностите да заемат целия ред */
/* .credit-item:last-child {
    grid-column: 1 / -1;
    border-bottom: none;
    margin-top: 10px;
    color: #ff0000;
} */

/* --- СЕКЦИЯ ТЕКСТОВЕ (АРХИВ) --- */

/* Заглавие на архива */
.archive-title {
    font-size: 3rem;
    text-align: center;
    text-shadow: 4px 4px 0px #000;
    margin-bottom: 40px;
    font-family: 'Bangers', cursive;
    color: #fff;
}

/* Контейнер на акордеона за албуми */
.lyrics-album-accordion {
    background: #1a1a1a;
    border: 2px solid #333;
    margin-bottom: 20px;
    transition: 0.3s;
}

.lyrics-album-accordion[open] {
    border-color: #000;
}

/* Хедър на албума */
.album-selection-header {
    padding: 20px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: #fff;
}

.album-selection-header:hover {
    background: #fff;
    color: #000;
}

.album-info i {
    margin-right: 15px;
    color: #fff;
}

.album-selection-header:hover .album-info i {
    color: #fff;
}

.album-year {
    font-size: 1rem;
    color: #888;
    margin-left: 10px;
}

/* Анимация на стрелката */
.lyrics-album-accordion[open] .arrow {
    transform: rotate(180deg);
}

/* Решетка за листите */
.lyrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    background: #111;
}

/* СТИЛ ЗА МАЛКИЯ ЛИСТ (ПРЕВЮ) */
/* ПРЕВЮ КАРТИЧКА */
.lyrics-sheet {
    height: 380px; /* Малко по-компактна */
    min-height: 380px;
    overflow: hidden;
    position: relative;
    background: #fdfdfd;
    padding: 25px;
    border-left: 5px solid #000;
    cursor: zoom-in;
    transition: transform 0.2s;
    text-align: left;
}

.lyrics-sheet p {
    white-space: pre-line !important; /* Запазва новите редове, но чисти излишните интервали */
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
    margin-top: 10px;
    font-family: 'Courier New', Courier, monospace;
    
    /* Ограничаваме до 6 реда, за да изглежда подредено */
    display: -webkit-box;
    -webkit-line-clamp: 6; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* МОДАЛЕН ПРОЗОРЕЦ */
.modal-content {
    background-color: #fdfdfd;
    margin: 40px auto;
    padding: 50px 40px;
    border-left: 12px solid #000;
    width: 90%;
    max-width: 700px;
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    display: block !important;
}

/* ТЕКСТЪТ В МОДАЛА */
.modal-text-style {
    white-space: pre-wrap !important; 
    display: block !important;
    text-align: left !important;
    line-height: 1.7;
    font-size: 1.25rem;
    color: #111;
    font-family: 'Courier New', monospace;
    margin-top: 20px;
}

/* ОПРАВЯНЕ НА УДЕБЕЛЕНИЯ ТЕКСТ (Припев/Куплет) */
.modal-text-style strong {
    color: #000;
    display: inline-block; /* За да не чупи реда */
    margin-top: 10px;
    font-weight: bold;
}

.lyrics-sheet h3 {
    font-family: 'Bangers', cursive;
    color: #000;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px dashed #ccc;
    padding-bottom: 10px;
}



/* Ефект на избледняване и бутон за превюто */
.lyrics-sheet::after {
    content: "ПРОЧЕТИ ЦЕЛИЯ ТЕКСТ";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(transparent, #fdfdfd 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bangers', cursive;
    color: #000;
    font-size: 1.1rem;
    padding-top: 25px;
    pointer-events: none;
}

/* Ротации за разхвърлян вид */
.rotate-right { transform: rotate(1.5deg); }
.rotate-left { transform: rotate(-1.5deg); }

.lyrics-sheet:hover {
    transform: scale(1.03) rotate(0deg) !important;
    z-index: 10;
    border-color: #000;
}

.sheet-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-weight: bold;
    color: #ddd;
    font-size: 1.2rem;
}

/* --- МОДАЛЕН ПРОЗОРЕЦ (ПЪЛЕН ЕКРАН) --- */

.modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    overflow-y: auto;
    padding: 50px 20px;
    cursor: zoom-out;
}

.modal-content {
    background-color: #fdfdfd;
    margin: 20px auto;
    padding: 60px 40px;
    border-left: 12px solid #000;
    width: 100%;
    max-width: 700px;
    color: #111;
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    display: block !important; /* Убива колоните */
    text-align: left !important;
}

/* Стил за заглавието в модала */
.modal-content h3 {
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    color: #000;
    margin: 0 0 20px 0;
    border-bottom: 2px solid #ddd;
    display: block;
}



/* Бутон за затваряне */
.close-modal {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: 0.3s;
}

.close-modal:hover {
    color: #000;
}

/* Модално оформление за снимка + био */
.viewer-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    gap: 30px;
}

.bio-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    max-width: 350px;
    color: #111;
    border-left: 8px solid #ff0000;
    font-family: 'Courier New', Courier, monospace;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.5);
    text-align: left;
}

.bio-container h3 {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 15px;
}

.bio-container p {
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Мобилна версия */
@media (max-width: 900px) {
    .viewer-content-wrapper {
        flex-direction: column;
        overflow-y: auto;
    }
    .bio-container {
        max-width: 100%;
        margin-bottom: 20px;
    }
}
.img-container img {
    max-height: 80vh; /* Снимката да не надвишава 80% от височината на екрана */
    width: auto;
    object-fit: contain;
}