#poster-page .afisha-hero {
    background: #000;
    color: #fff;
    padding: 50px 0 80px;
    text-align: center;
    margin-top: 70px;
}

#poster-page .afisha-section {
    padding: 40px 0 60px;
    background: #fff;
}

#poster-page .afisha-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

#poster-page .afisha-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 20px;
}

#poster-page .afisha-section-header:hover {
    opacity: 0.7;
}

#poster-page .afisha-section-title {
    font-family: 'Kumar One', serif;
    font-size: 1.5rem;
    margin: 0;
    color: #000;
}

#poster-page .afisha-section-arrow i {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

#poster-page .afisha-section-header:hover .afisha-section-arrow i {
    transform: translateX(5px);
}

#poster-page .afisha-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#poster-page .afisha-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid rgba(0,0,0,0.15);
    cursor: pointer;
    width: 250px;
    height: 350px;
    transition: all 0.3s;
    position: relative;
}

#poster-page .afisha-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

#poster-page .afisha-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #222;
}

#poster-page .afisha-card-age {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.75rem;
    border-radius: 6px;
    font-family: 'Bayon', sans-serif;
    z-index: 2;
}

#poster-page .afisha-card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    background: #000;
    color: #fff;
    font-size: 0.75rem;
    border-radius: 6px;
    font-family: 'Bayon', sans-serif;
    z-index: 2;
}

#poster-page .afisha-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

#poster-page .afisha-card-title {
    font-family: 'Bayon', sans-serif;
    font-size: 1.2rem;
    margin: 0 0 8px 0;
    color: #fff;
}

#poster-page .afisha-card-meta {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

#poster-page .afisha-card-city {
    background: rgba(255,255,255,0.9);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    border: none;
    font-family: 'Bayon', sans-serif;
    color: #000;
}

#poster-page .afisha-card-date {
    background: rgba(255,100,100,0.9);
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    border: none;
    font-family: 'Bayon', sans-serif;
}

#poster-page .afisha-card-description {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.3;
    font-family: 'Bayon', sans-serif;
    color: rgba(255,255,255,0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#poster-page .afisha-no-results {
    font-family: 'Bayon', sans-serif;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    padding: 40px;
}

#poster-page .city-filter {
    margin-top: 20px;
}

#poster-page .city-filter select {
    padding: 12px 40px 12px 20px;
    border: 2px solid #000;
    border-radius: 30px;
    font-family: 'Bayon', sans-serif;
    font-size: 1rem;
    background: #fff;
    width: 250px;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
}