/* Подключение шрифта Gilroy */
@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Regular.woff2') format('woff2'),
         url('fonts/Gilroy-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gilroy', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #1d1d1d;
    color: #f0f0f0;
    line-height: 1.6;
}
a {
  text-decoration: none;
}
/* Контейнеры */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 10px 20px;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Панель навигации */
.top-panel {
    background-color: #1d1d1d;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 40px;
    height: 40px;
    background: url(img/goblin-r.webp) no-repeat center center / contain;
    border-radius: 5px;
    border: 1px solid #fff;
}

.logo-sf { 
    margin: 15px 0 15px 20px;
    overflow: hidden;
    display: flex;
    padding: 10px 10px;
    width: 60px;
    height: 60px;
    background: url(img/goblin-sf.webp) no-repeat center center / contain;
    border-radius: 5px;
    border: 1px solid #fff;
}
.logo-mo { 
    margin: 15px 0 15px 20px;
    overflow: hidden;
    display: flex;
    padding: 10px 10px;
    width: 60px;
    height: 60px;
    background: url(img/goblin-mo.webp) no-repeat center center / contain;
    border-radius: 5px;
    border: 1px solid #fff;
}
.logo-k { 
    margin: 15px 0 15px 20px;
    overflow: hidden;
    display: flex;
    padding: 10px 10px;
    width: 60px;
    height: 60px;
    background: url(img/goblin-k.webp) no-repeat center center / contain;
    border-radius: 5px;
    border: 1px solid #fff;
}
.logo-pp { 
    margin: 15px 0 15px 20px;
    overflow: hidden;
    display: flex;
    padding: 10px 10px;
    width: 60px;
    height: 60px;
    background: url(img/goblin-pp.webp) no-repeat center center / contain;
    border-radius: 5px;
    border: 1px solid #fff;
}
.logo-r { 
    margin: 15px 0 15px 20px;
    overflow: hidden;
    display: flex;
    padding: 10px 10px;
    width: 60px;
    height: 60px;
    background: url(img/goblin-r.webp) no-repeat center center / contain;
    border-radius: 5px;
    border: 1px solid #fff;
}


.site-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #F4EDFF;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: #8FBCD8;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a.recommended { color: #E2704C; }
.nav-links a.soap { color: #58B588; }
.nav-links a.fill { color: #4A91C9; }

.nav-links a:hover {
    color: white;
}
 .image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}
.author-image {
  display: block;
  float: left;
  width: 50px;
  height: 50px;
  border-radius: 7px; 
}



/* Герой-секция */
.hero {
    position: relative;
    height: 800px;
    background-size: cover;
    background-position: center;
    margin-top: -150px;
    margin-bottom: 20px;
    box-shadow: inset 0 -100px 100px -50px #1d1d1d;
    display: flex;
    align-items: flex-end;
}

.hero-content {
    width: 100%; 
}

.breadcrumbs {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 20px;
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: #aaa;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: white;
}

.hero h1 {
    font-size: 2.5rem; 
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* Плеер и контент */
.player-container, .season-player {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    overflow: hidden;
}

.player-container iframe, 
.season-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.description  {
    padding: 0 15px;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
}
.season-description {
    color: #ccc;
    text-align: left;
}
.description p {
    line-height: 25px;
    margin: 15px 0;
}
.description p a {
    color: #D64E00;
    text-decoration: none;
}
.description p a:hover {
    color: #FFA500;
    text-decoration: none;
}

/* Общие стили секций */
.content-section {
    padding: 0 0 20px 0;
    position: relative;
}
.content-section h1 {
    text-align: center;
}
.section-title {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #f0f0f0;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

/* Категории */
.categories {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-card { 
    flex: 1;
    min-width: 300px;
    background: rgba(40, 40, 40, 0.7);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
 

.category-image,
.category-imagem,
.category-images,
.category-imagef {
    width: 200px;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.category-image {
    background: url(img/perevod_thumb.webp) no-repeat center center / contain;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}
.category-imagem {
    background: url(img/mylnyj_oper_thumb.webp) no-repeat center center / contain;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}
.category-images {
    background: url(img/sinij_fil_thumb.webp) no-repeat center center / contain;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.category-imagef {
    background: url(img/perevod_thumb.webp) no-repeat center center / contain;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}



.category-info {
    padding: 20px 20px 20px 40px;
    flex: 1;
}
.category-info2 {
    padding: 20px 20px 20px 30px;
    flex: 1;
}
.category-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.category-info p {
    color: #aaa;
}

/* Сезоны */
.watch-section, .new-reviews {
    text-align: center; 
    margin-bottom: 30px;
}

.tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0 20px 0;
    flex-wrap: wrap;
}

.tag {
    display: block;
    padding-left: 5px;
    position: relative;
    line-height: 28px;
    color: #8E8E8E;
    font-size: 13px;
}

.seasons-container {
    max-width: 900px;
    margin: 0 auto;
}

.season {
    background: rgba(40, 40, 40, 0.7);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.season-summary {
    padding: 15px 20px;
    background: rgba(40, 40, 40, 0.7);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.season-summary::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.season-details {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.season.active .season-summary::after {
    transform: rotate(45deg);
}

.season.active .season-details {
    padding: 20px;
    max-height: 1000px;
}

/* Отзывы */
.review-links {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.review-link {
    display: block;
    padding: 15px 20px 15px 40px;
    background: rgba(40, 40, 40, 0.7);
    border-radius: 8px;
    color: #FFA500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.review-link:hover {
    background: rgba(30, 144, 255, 0.2);
    color: #8FBCD8;
    transform: translateX(10px);
}

/* Рекомендации */
.recommendations {
    padding: 0 40px;
}

.recommendations h2 {
    text-align: center;
    margin-bottom: 30px;
}

.posters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.poster {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.poster:hover {
    transform: scale(1.05);
}

.poster-img {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.poster-img.loaded {
    opacity: 1;
}

.poster:hover .poster-img {
    transform: scale(1.1);
}

.poster-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    text-align: center;
}
/* --- Стили для нового информационного блока --- */

 
.info-block {
  background-color: #1D1D1D;
  border-radius: 8px;
  padding: 30px;
  margin: 40px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border: 1px solid #333;
}

.info-content {
  display: flex;
  flex-direction: column; /* ЭТО ОСНОВНОЕ ИЗМЕНЕНИЕ: ставит элементы в колонку */
  gap: 25px; /* Немного уменьшим отступ для вертикального вида */ 
  align-items: center; /* Центрируем контент по горизонтали */
}

.info-text {
  color: #ccc;
  text-align: left; /* Опционально: центрируем текст для лучшего вида */
}

.info-text h2 {
  font-size: 1.8rem;
  color: #f0f0f0;
  margin-bottom: 15px;
  margin-left: 15px;
}

.info-text p {
  line-height: 1.7;
  margin-bottom: 15px;
  max-width: 1080px; /* Ограничиваем ширину текста для читаемости */
  margin-left: auto;
  margin-right: auto;
}
.info-text p a {
    color: #E2704C;
    text-decoration: none;
}
.info-text p a:hover {
    color: #8FBCD8;
    text-decoration: underline;
}
.info-image {
  flex: 0.8;
  background-image: url('img/oper_foto.webp');
 background-size: cover;
  background-position: center;  
  width: 100%;  
  max-width: 900px;  
  min-height: 300px; 
}

.genre-tags {
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px; /* Пространство между тегами */
  border-top: 1px solid #333;
  padding-top: 20px;
  padding-bottom: 50px;
}

.tag-link {
    background: #281B24;
    box-sizing: border-box;
    color: #fff;
    border: 1px solid transparent;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    transition: all .2s linear;
    opacity: 1;
    text-shadow: 0 0 4px #dc6175, 0 0 8px #dc6175, 0 0 16px #dc6175;
    border-color: rgba(255, 255, 255, .15);
    height: 36px;
    line-height: 35px;
    padding: 0 12px;
    border-radius: 2px;
    display: block;
    float: left;
    margin-left: 20px;
    margin-top: 6px; 
    text-transform: uppercase;
}

.tag-link:hover {
  background-color: #8FBCD8;
  color: #fff;
  border-color: #8FBCD8;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(143, 188, 216, 0.2);
}

.tag-link.special-tag {
  color: #E2704C; /* Особый цвет для "Божьей искры" */
  border-color: #E2704C;
}

.tag-link.special-tag:hover {
  background-color: #E2704C;
  color: #fff;
  border-color: #E2704C;
  box-shadow: 0 4px 10px rgba(226, 112, 76, 0.3);
}

/* --- Адаптация для мобильных устройств --- */
@media (max-width: 768px) {
  .info-content {
    flex-direction: column; /* Ставит текст над картинкой */
  }

.info-text h2 {
  margin-left: 15px;
}
  .info-block {
    padding: 20px;
  }
}
/* Футер */
.wrap_float {
    border-top: 1px solid #3C3C3C;
}
.wrap_floatt {
   margin: 10px 0 50px 0;
    border-top: 1px solid #3C3C3C;
}

.footer {
    background: #1d1d1d;
    padding: 10px 0 0;
    display: flex;
    justify-content: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    display: flex; 
    gap: 25px;
}

.footer-left a,
.footer-right a {
    color: #8FBCD8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-left a:hover,
.footer-right a:hover {
    color: white;
}

.footer-right {
    text-align: right; 
    max-width: 400px;
}

.footer-right a {
    color: orange;
}

/* Иконки */
[class*="-icon"] {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
}

.bars-icon {
  width: 24px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 20' fill='%23F4EDFF'%3E%3Crect width='24' height='4' y='0' rx='2'/%3E%3Crect width='24' height='4' y='8' rx='2'/%3E%3Crect width='24' height='4' y='16' rx='2'/%3E%3C/svg%3E");
}

.telegram-icon {
  width: 19px;
  height: 19px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238FBCD8'%3E%3Cpath d='M11.7 16.3l.2.4c.2.5.6.6 1 .3l2.6-2.4 4.2 3.2c.8.4 1.3.2 1.5-.7l2.8-13c.2-1-.5-1.4-1.3-1l-18 7c-.9.3-.9.8-.2 1l4.8 1.5 11-7c.4-.2.7-.1.5.2z'/%3E%3C/svg%3E");
}

.email-icon {
  width: 18px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 16' fill='%238FBCD8'%3E%3Cpath d='M18 0H2C.9 0 0 .9 0 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm0 4-8 5-8-5V2l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.picture-icon {
  width: 18px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 16' fill='none' stroke='%238FBCD8'%3E%3Cpath d='M1 11l5-5 3 3 5-5 5 5v3H1v-3z'/%3E%3Ccircle cx='6' cy='5' r='2'/%3E%3Crect x='1' y='1' width='18' height='14' rx='1'/%3E%3C/svg%3E");
}

.book-icon {
  width: 18px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 16' fill='none' stroke='%238FBCD8' stroke-width='1.2'%3E%3Cpath d='M10 1h9v14h-9zM1 1h9v14H1zM5 5h2M5 8h2M5 11h2M13 5h2M13 8h2M13 11h2'/%3E%3C/svg%3E");
}
/* Стили для сетки карточек */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    
  background-color: #2a2a2a; /* Фон для области с текстом */
  text-decoration: none; /* Убираем подчеркивание у ссылки */
}
.card-content {
  padding: 15px;
}

.card-title {
  font-size: 1rem; /* Размер шрифта заголовка */
  font-weight: 500;
  color: #f0f0f0;
  margin: 0 0 5px 0; /* Отступ снизу 5px */
  line-height: 1.4;
}

.card-subtitle {
  font-size: 0.85rem; /* Размер шрифта подзаголовка */
  color: #aaa;      /* Более тусклый цвет для подзаголовка */
  margin: 0;
  line-height: 1.4;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.card img {
    width: 100%;
  display: block; /* Убирает лишний отступ под картинкой */
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cardst-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}
.cardstb-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.cards {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    aspect-ratio: 1/0.5;
}
.cardb {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    aspect-ratio: 2/3;
}
.cardb:hover img {
    transform: scale(1.05);
}
.cardb:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.cardb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.05);
}
/* Стили галереи */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Модальное окно */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    text-align: center;
}

.gallery-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.gallery-caption {
    color: #ffcc00;
    margin-top: 15px;
    font-size: 1.2rem;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2001;
}

.gallery-close:hover {
    color: #ffcc00;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 2001;
}

.gallery-nav:hover {
    background: rgba(255, 204, 0, 0.7);
    color: #000;
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-nav {
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* Адаптация */
@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cards-grid {
        grid-template-columns: 3fr;
        max-width: 500px;
        margin: 20px auto;
    }
}
@media (max-width: 900px) {
    .cardstb-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .cardstb-grid {
        grid-template-columns:  repeat(2, 1fr);
        max-width: 500px;
        margin: 20px auto;
    }
}
/* Мобильное меню */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #f0f0f0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.mobile-menu-btn.active {
    transform: rotate(90deg);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .posters-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero {
        height: 60vh;
        min-height: 400px;
        padding-top: 60px;
        margin-top: 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .categories {
        flex-direction: column;
    }
    
    .category-card {
        flex-direction: column;
        min-width: 100%;
    }
    
    .category-image,
    .category-imagem,
    .category-images,
    .category-imagef {
        width: 100%;
        height: 150px;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-left, .footer-right {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .posters-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }
    
    .logo-container {
        gap: 10px;
    }
    
    .site-title {
        font-size: 1.2rem;
    }
    
    .tags {
        gap: 8px;
    }
    
    .tag {
        font-size: 12px;
    }
}