/* ==========================================================================
   Древната Цивилизация — Static Site Styles
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
    --civbg-bg: #FFFFFF;
    --civbg-header-bg: #FFFCF2;
    --civbg-header-text: #4A3D28;
    --civbg-accent: #C9A04E;
    --civbg-accent-light: #EDE0C2;
    --civbg-text: #1A1410;
    --civbg-text-secondary: #5C5040;
    --civbg-card-bg: #FFFFFF;
    --civbg-border: #F5EDDA;
    --civbg-hero-overlay: 0.4;
    --civbg-font-heading: 'Lora', Georgia, serif;
    --civbg-font-body: 'Lora', Georgia, serif;
    --civbg-font-weight: 400;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--civbg-bg);
    color: var(--civbg-text);
    font-family: var(--civbg-font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[role="main"] {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--civbg-font-heading);
    color: var(--civbg-text);
    line-height: 1.3;
}

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

a:hover {
    color: var(--civbg-text);
}

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

.civbg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Header ---------- */
.civbg-header {
    background-color: var(--civbg-header-bg);
    color: var(--civbg-header-text);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.civbg-header-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 0 0;
}

.civbg-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    position: relative;
}

.civbg-header-left {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.civbg-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-25%);
    z-index: 10;
    filter: drop-shadow(0 0 10px rgba(235, 215, 160, 0.5)) drop-shadow(0 0 25px rgba(235, 215, 160, 0.3));
}
.civbg-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    transform: translate(-50%, -50%);
    background:
        repeating-conic-gradient(
            from 0deg,
            rgba(235, 215, 160, 0.15) 0deg 4deg,
            transparent 4deg 15deg
        );
    border-radius: 50%;
    z-index: -1;
    mask-image: radial-gradient(circle, white 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, white 30%, transparent 70%);
}

.civbg-logo img {
    height: 105px;
    width: auto;
    object-fit: contain;
    transform: scaleX(1.12);
}

.civbg-site-title {
    font-family: var(--civbg-font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0;
    margin-left: 113px;
    letter-spacing: 0.06em;
    line-height: 1.2;
}

.civbg-site-title a {
    background: linear-gradient(135deg, #0F0B05 0%, #4A3C1C 45%, #0F0B05 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-shadow: none;
}

.civbg-site-title a:hover {
    color: var(--civbg-accent);
}

.civbg-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

/* Social Icons */
.civbg-social-icons {
    display: flex;
    gap: 12px;
}

.civbg-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: var(--civbg-header-text);
    transition: background 0.2s ease, color 0.2s ease;
}

.civbg-social-link:hover {
    background: var(--civbg-accent);
    color: #FFFFFF;
}

.civbg-social-link svg {
    width: 18px;
    height: 18px;
}

/* Language Switcher */
.civbg-lang-switcher {
    display: flex;
    align-items: center;
}

.civbg-lang-link {
    color: var(--civbg-header-text);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    transition: all 0.2s ease;
}

.civbg-lang-link:hover {
    background: var(--civbg-accent);
    border-color: var(--civbg-accent);
    color: #FFFFFF;
}

/* Hamburger Menu Toggle */
.civbg-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.civbg-hamburger,
.civbg-hamburger::before,
.civbg-hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--civbg-header-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.civbg-hamburger {
    position: relative;
}

.civbg-hamburger::before,
.civbg-hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.civbg-hamburger::before {
    top: -7px;
}

.civbg-hamburger::after {
    top: 7px;
}

.civbg-menu-toggle[aria-expanded="true"] .civbg-hamburger {
    background: transparent;
}

.civbg-menu-toggle[aria-expanded="true"] .civbg-hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.civbg-menu-toggle[aria-expanded="true"] .civbg-hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Main Navigation */
.civbg-main-nav {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-left: 113px;
}

.civbg-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.civbg-menu li {
    position: relative;
}

.civbg-menu li:first-child a {
    padding-left: 16px;
}

.civbg-menu li a {
    display: block;
    padding: 10px 16px;
    color: #000000;
    font-family: var(--civbg-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.civbg-menu li a:hover,
.civbg-menu li.current-menu-item > a {
    background: rgba(0, 0, 0, 0.04);
    color: var(--civbg-accent);
}

/* Nav Search Bar */
.civbg-search-bar {
    display: flex;
    align-items: center;
    position: relative;
}

.civbg-search-input {
    padding: 6px 32px 6px 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.03);
    font-family: var(--civbg-font-body);
    font-size: 0.82rem;
    color: var(--civbg-header-text);
    outline: none;
    width: 150px;
    transition: border-color 0.2s ease, width 0.3s ease;
}

.civbg-search-input::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

.civbg-search-input:focus {
    border-color: var(--civbg-accent);
    width: 200px;
}

.civbg-search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(0, 0, 0, 0.3);
}

.civbg-search-icon svg {
    width: 14px;
    height: 14px;
}

/* ---------- Ticker ---------- */
.civbg-ticker {
    background: var(--civbg-header-bg);
    border-bottom: 1px solid var(--civbg-border);
    overflow: hidden;
    white-space: nowrap;
    padding: 5px 0;
}

.civbg-ticker-track {
    display: inline-flex;
    animation: ticker-scroll 60s linear infinite;
}

.civbg-ticker-text {
    display: inline-block;
    padding-right: 80px;
    font-family: var(--civbg-font-body);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--civbg-text-secondary);
    letter-spacing: 0.02em;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Hero Section ---------- */
.civbg-hero {
    position: relative;
    height: 65vh;
    min-height: 400px;
    max-height: 700px;
    max-width: 1200px;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: none;
    border-top: none;
    border-bottom: none;
}

.civbg-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: none;
}

.hero-widget-prozhektsii,
.hero-widget-podkrepi,
.hero-widget-karta {
    position: absolute;
    z-index: 5;
    width: 25%;
    max-width: 300px;
}

.hero-widget-karta {
    min-height: 130px;
}

.hero-widget-prozhektsii .hero-widget-link,
.hero-widget-podkrepi .hero-widget-link {
    padding: 8px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-widget-karta .hero-widget-link {
    padding: 12px 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-widget-prozhektsii .hero-widget-icon,
.hero-widget-podkrepi .hero-widget-icon,
.hero-widget-karta .hero-widget-icon {
    margin-bottom: 3px;
}

.hero-widget-prozhektsii .hero-widget-icon svg,
.hero-widget-podkrepi .hero-widget-icon svg {
    width: 22px;
    height: 22px;
}

.hero-widget-karta .hero-widget-map-thumb {
    width: 48px;
    height: 30px;
}

.hero-widget-prozhektsii .hero-widget-desc,
.hero-widget-podkrepi .hero-widget-desc,
.hero-widget-karta .hero-widget-desc {
    font-size: 0.85rem;
    line-height: 1.35;
}

.hero-widget-prozhektsii .hero-widget-title,
.hero-widget-karta .hero-widget-title {
    font-size: 1.05rem;
}

.civbg-hero-widgets-mobile {
    display: none;
}

.hero-widget-prozhektsii {
    left: 3%;
    top: 12%;
}

.hero-widget-podkrepi {
    left: 3%;
    bottom: 12%;
}

.hero-widget-karta {
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
}


.civbg-hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.civbg-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1.2s ease, transform 1.2s ease;
    pointer-events: none;
}

.civbg-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.civbg-hero-slide:first-child {
    background-size: contain;
    background-color: #c8d8d8;
}

.civbg-hero-slide.is-exiting {
    opacity: 0;
    transform: scale(0.97);
}

.civbg-hero-slide-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 520px;
    text-align: center;
}

.civbg-hero-meta {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.civbg-hero-slide-title {
    font-family: var(--civbg-font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    margin: 0 0 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.civbg-hero-slide-synopsis {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
}

.civbg-hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.civbg-hero-dot {
    width: 32px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}

.civbg-hero-dot.is-active {
    background: #FFFFFF;
    width: 48px;
}

.civbg-carousel-row {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 16px 20px 10px;
}

.civbg-widget-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    width: 260px;
    flex-shrink: 0;
    padding: 10px;
}

.civbg-carousel-center {
    flex: 1;
    min-width: 0;
    max-width: 800px;
    margin: 0 auto;
}

.civbg-carousel-row .civbg-carousel-section {
    padding: 0;
}

.civbg-carousel-row .civbg-divider {
    display: none;
}

.hero-widget-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(245, 237, 218, 0.55));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-widget-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(201, 160, 78, 0.18);
}

.hero-widget-karta.hero-widget-box:hover {
    transform: translateY(calc(-50% - 3px));
}

.hero-widget-link {
    display: block;
    padding: 20px 22px;
    color: var(--civbg-text);
    text-decoration: none;
}

.hero-widget-link:hover {
    color: var(--civbg-text);
}

.hero-widget-icon {
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: #7A6530;
}

.hero-widget-icon svg {
    width: 28px;
    height: 28px;
}

.hero-widget-map-thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.hero-widget-title {
    font-family: var(--civbg-font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: #000000;
    text-align: center;
}

.hero-widget-desc {
    font-size: 0.88rem;
    color: #0D0A07;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

/* ---------- Map Section ---------- */
.civbg-map-section {
    padding: 60px 0;
    background: var(--civbg-bg);
}

.civbg-section-title {
    font-family: var(--civbg-font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--civbg-text);
    margin: 0 0 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--civbg-accent);
    display: inline-block;
}

.civbg-map-embed {
    max-width: 70%;
}

.civbg-map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.civbg-map-placeholder {
    max-width: 70%;
    background: var(--civbg-card-bg);
    border: 2px dashed var(--civbg-border);
    border-radius: 6px;
    padding: 60px 30px;
    text-align: center;
    color: var(--civbg-text-secondary);
}

/* ---------- Film Carousel Section ---------- */
.civbg-carousel-section {
    padding: 0 0 10px;
    background: var(--civbg-bg);
}

.civbg-carousel-section .civbg-container-full {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

.civbg-divider {
    border: none;
    height: 2px;
    background: var(--civbg-border);
    margin: 0 0 15px;
}

.civbg-film-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--civbg-card-bg);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    text-decoration: none;
    aspect-ratio: 3 / 4;
}

.civbg-film-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(180, 150, 50, 0.15);
}

.civbg-film-card-image {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.civbg-film-card:hover .civbg-film-card-image {
    transform: scale(1.08);
}

.civbg-film-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.civbg-film-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #E8DCBA, #D0AE55, #BF9840);
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
    font-family: var(--civbg-font-heading);
    font-size: 1rem;
}

/* Bottom title bar — hidden by default */
.civbg-film-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(60, 50, 20, 0.7));
    padding: 50px 16px 16px;
    text-align: center;
    transition: opacity 0.4s ease;
    z-index: 2;
    opacity: 0;
}

.civbg-film-card-title {
    font-family: var(--civbg-font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
}

/* Hover info panel — slides up from bottom */
.civbg-film-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(55, 45, 15, 0.95) 0%,
        rgba(70, 55, 20, 0.92) 50%,
        rgba(90, 75, 30, 0.85) 80%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 60px 20px 24px;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 5;
}

.civbg-film-card:hover .civbg-film-card-info {
    transform: translateY(0);
    pointer-events: auto;
}

.civbg-film-card:hover .civbg-film-card-overlay {
    opacity: 0;
}

.civbg-film-card-info-title {
    font-family: var(--civbg-font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--civbg-accent);
    margin: 0 0 10px;
}

.civbg-film-card-info-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0 0 18px;
    font-family: var(--civbg-font-body);
}

/* Play / Watch Now button */
.civbg-watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--civbg-accent);
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 5;
    border-radius: 50px;
    font-family: var(--civbg-font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background 0.25s ease, transform 0.25s ease;
}

.civbg-watch-btn:hover {
    background: #B89040;
    transform: scale(1.05);
    color: #FFFFFF;
}

.civbg-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.civbg-play-icon svg {
    width: 10px;
    height: 10px;
    margin-left: 2px;
}

.civbg-film-swiper {
    padding-bottom: 28px;
}

/* Swiper navigation arrows */
.civbg-film-swiper .swiper-button-prev,
.civbg-film-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.civbg-film-swiper .swiper-button-prev:hover,
.civbg-film-swiper .swiper-button-next:hover {
    background: var(--civbg-accent);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.civbg-film-swiper .swiper-button-prev::after,
.civbg-film-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
    color: var(--civbg-header-text);
    transition: color 0.2s ease;
}

.civbg-film-swiper .swiper-button-prev:hover::after,
.civbg-film-swiper .swiper-button-next:hover::after {
    color: #FFFFFF;
}

.civbg-film-swiper .swiper-pagination {
    bottom: 0;
}

.civbg-film-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--civbg-border);
    opacity: 1;
    transition: background 0.2s ease;
}

.civbg-film-swiper .swiper-pagination-bullet-active {
    background: var(--civbg-accent);
}

.civbg-film-swiper .swiper-pagination-bullet:nth-child(n+4) {
    display: none;
}

/* ---------- Karta Page ---------- */
.civbg-karta-intro {
    font-size: 1.05rem;
    color: var(--civbg-text-secondary);
    max-width: 100%;
    margin: 0 0 32px;
    line-height: 1.7;
    text-align: justify;
}

.civbg-karta-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--civbg-border);
    margin-bottom: 28px;
}

.civbg-karta-image {
    width: 100%;
    display: block;
}

.civbg-karta-note {
    font-size: 0.95rem;
    color: var(--civbg-text-secondary);
    line-height: 1.7;
    text-align: justify;
}

.civbg-karta-note a {
    color: var(--civbg-accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.civbg-karta-note a:hover {
    color: #b8912e;
}

/* ---------- Golden Separator ---------- */
.civbg-golden-separator {
    border: none;
    border-top: 1px solid var(--civbg-accent);
    margin: 40px 0 10px;
}

/* ---------- Logo Explanation ---------- */
.civbg-logo-explanation-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 30px auto 20px;
    margin-top: 30px;
}

/* ---------- Support Page ---------- */
.civbg-support-intro {
    font-size: 1.25rem;
    color: var(--civbg-text);
    margin: 0 0 40px;
    line-height: 1.7;
}

.civbg-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.civbg-support-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px 36px;
    background: var(--civbg-card-bg);
    border: 1px solid var(--civbg-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--civbg-text);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.civbg-support-card:hover {
    box-shadow: 0 16px 40px rgba(201, 160, 78, 0.15);
    border-color: var(--civbg-border);
}

.civbg-support-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--civbg-accent-light);
    color: var(--civbg-accent);
    margin-bottom: 20px;
}

.civbg-support-card:hover .civbg-support-icon {
    background: var(--civbg-accent);
    color: #fff;
}

.civbg-support-title {
    font-family: var(--civbg-font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 14px;
    color: var(--civbg-text);
}

.civbg-support-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--civbg-text);
    margin: 0 0 24px;
    flex: 1;
}

.civbg-support-btn {
    display: inline-block;
    padding: 10px 28px;
    font-family: var(--civbg-font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--civbg-accent);
    border: 2px solid var(--civbg-accent);
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.civbg-support-btn:hover {
    background: var(--civbg-accent);
    color: #fff;
}

@media (max-width: 768px) {
    .civbg-support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ---------- Modal ---------- */
.civbg-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(30, 22, 16, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.civbg-modal-overlay.is-open {
    display: flex;
    opacity: 1;
    animation: civbg-fade-in 0.3s ease forwards;
}

@keyframes civbg-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.civbg-modal {
    position: relative;
    background: var(--civbg-card-bg);
    border-radius: 20px;
    max-width: 620px;
    width: 100%;
    padding: 48px 44px 40px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(201, 160, 78, 0.15);
    animation: civbg-slide-up 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes civbg-slide-up {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.civbg-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--civbg-text-secondary);
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.civbg-modal-close:hover {
    color: var(--civbg-text);
    background: rgba(0, 0, 0, 0.05);
}

.civbg-modal-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--civbg-accent-light);
    color: var(--civbg-accent);
    margin: 0 auto 20px;
}

.civbg-modal-title {
    font-family: var(--civbg-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--civbg-text);
    text-align: center;
    margin: 0 0 20px;
}

.civbg-modal p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--civbg-text);
    margin: 0 0 20px;
}

.civbg-sponsor-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.civbg-sponsor-benefits li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--civbg-text);
    border-bottom: 1px solid var(--civbg-border);
}

.civbg-sponsor-benefits li:last-child {
    border-bottom: none;
}

.civbg-sponsor-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--civbg-accent);
}

.civbg-modal-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 12px 36px;
    background: var(--civbg-accent);
    color: #FFFFFF;
    font-family: var(--civbg-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.03em;
    transition: background 0.2s ease, transform 0.2s ease;
}

.civbg-modal-btn:hover {
    background: #B8943A;
    transform: translateY(-2px);
    color: #FFFFFF;
}

@media (max-width: 480px) {
    .civbg-modal {
        padding: 36px 24px 32px;
    }
}

/* ---------- Filmi Page ---------- */
.civbg-filmi-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.civbg-filmi-item {
    display: flex;
    gap: 32px;
    background: var(--civbg-card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--civbg-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.civbg-filmi-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.civbg-filmi-poster {
    flex-shrink: 0;
    width: 240px;
}

.civbg-filmi-poster img {
    width: 100%;
    display: block;
}

.civbg-filmi-details {
    padding: 28px 32px 28px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.civbg-filmi-title {
    font-family: var(--civbg-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--civbg-text);
    margin: 0 0 10px;
}

.civbg-filmi-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--civbg-text-secondary);
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.civbg-filmi-sep {
    color: var(--civbg-accent);
}

.civbg-filmi-synopsis {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--civbg-text);
    margin: 0 0 20px;
    text-align: justify;
}

.civbg-filmi-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.civbg-filmi-tag {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.78rem;
    border-radius: 20px;
    background: var(--civbg-accent-light);
    color: var(--civbg-text);
    letter-spacing: 0.02em;
}

.civbg-filmi-btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--civbg-font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    background: var(--civbg-accent);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    align-self: flex-start;
}

.civbg-filmi-btn:hover {
    background: #b8912e;
    transform: translateY(-1px);
    color: #fff;
}

@media (max-width: 700px) {
    .civbg-filmi-item {
        flex-direction: column;
        gap: 0;
    }
    .civbg-filmi-poster {
        width: 100%;
        max-height: none;
        overflow: hidden;
    }
    .civbg-filmi-poster img {
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: contain;
        background: #f5f0e4;
    }
    .civbg-filmi-details {
        padding: 20px;
    }
    .civbg-filmi-title {
        font-size: 1.2rem;
    }
    .civbg-filmi-synopsis {
        font-size: 0.88rem;
    }
}

/* ---------- Footer ---------- */
.civbg-footer {
    background: #4A3F28;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0;
    text-align: center;
}

.civbg-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.civbg-footer p {
    margin: 0;
    font-size: 0.85rem;
}

/* ---------- General Content Pages ---------- */
.civbg-content {
    padding: 40px 0;
}

.civbg-article {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--civbg-border);
}

.civbg-entry-title {
    font-size: 1.4rem;
    margin: 0 0 10px;
}

.civbg-entry-title a {
    color: var(--civbg-text);
}

.civbg-entry-title a:hover {
    color: var(--civbg-accent);
}

/* ---------- Page Content ---------- */
.civbg-page-content {
    padding: 20px 0;
    flex: 1;
}

.civbg-page-title {
    font-family: var(--civbg-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--civbg-text);
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--civbg-accent);
}

.civbg-page-intro {
    font-size: 1rem;
    color: var(--civbg-text-secondary);
    margin: 0 0 24px;
    line-height: 1.6;
}

.civbg-page-content p {
    margin: 0 0 20px;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

.civbg-page-content h2 {
    font-size: 1.4rem;
    margin: 40px 0 20px;
    color: var(--civbg-text);
}

.civbg-page-content h3 {
    font-size: 1.2rem;
    margin: 30px 0 15px;
}

/* ---------- Grid Layouts ---------- */
.civbg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.civbg-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* ---------- Video Placeholder ---------- */
.civbg-video-placeholder {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #E5DAB8, #C9A04E);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 3rem;
    margin-bottom: 12px;
}

/* ---------- Video Embed ---------- */
.civbg-video-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.civbg-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.civbg-video-title {
    font-family: var(--civbg-font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--civbg-text);
    margin: 0 0 8px;
}

.civbg-video-card {
    margin-bottom: 10px;
    background: var(--civbg-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 16px;
}

.civbg-video-card .civbg-news-excerpt {
    color: var(--civbg-text);
}

/* ---------- Gallery / Poster Grid ---------- */
.civbg-poster-card {
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    transition: z-index 0s 0.4s;
}

.civbg-poster-card:hover {
    z-index: 50;
    transition: z-index 0s 0s;
}

.civbg-poster-image-wrap {
    overflow: visible;
    position: relative;
    display: block;
}

.civbg-poster-image {
    width: 100%;
    aspect-ratio: 3508 / 4961;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    position: relative;
    cursor: pointer;
    transform-origin: top center;
}

.civbg-poster-card:hover .civbg-poster-image {
    transform: scale(1.6);
    transform-origin: top center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    z-index: 100;
}

.civbg-poster-download {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--civbg-accent);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.civbg-poster-download:hover {
    color: #b8912e;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.civbg-poster-placeholder {
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #E5DAB8, #C9A04E);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: var(--civbg-font-heading);
    font-size: 1rem;
    text-align: center;
    padding: 20px;
}

.civbg-poster-info {
    padding: 15px 15px 20px;
    background: var(--civbg-card-bg);
    position: relative;
    z-index: 200;
}

.civbg-poster-title {
    font-family: var(--civbg-font-heading);
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    color: var(--civbg-text);
}

/* ---------- Screenings Table ---------- */
.civbg-screenings-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.civbg-screenings-table th,
.civbg-screenings-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--civbg-border);
}

.civbg-screenings-table th {
    background: #4A3F28;
    color: #FFFFFF;
    font-family: var(--civbg-font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.civbg-screenings-table tr:hover td {
    background: rgba(200, 164, 90, 0.05);
}

.civbg-screenings-table td {
    font-size: 0.95rem;
    vertical-align: middle;
}

.civbg-screening-thumb {
    width: 60px;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}
.civbg-screening-thumb:hover {
    transform: scale(8);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    z-index: 100;
}

/* ---------- Lightbox ---------- */
.civbg-lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.civbg-lightbox-overlay.is-open {
    display: flex;
}

.civbg-lightbox-overlay img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}

/* ---------- News Cards ---------- */
.civbg-news-card {
    background: var(--civbg-card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--civbg-accent);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.civbg-news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.civbg-news-card-img {
    width: 100%;
    height: auto;
    display: block;
}

.civbg-news-card-inner {
    padding: 24px;
}

.civbg-news-date {
    font-size: 0.8rem;
    color: var(--civbg-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 8px;
}

.civbg-news-title {
    font-family: var(--civbg-font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--civbg-text);
}

.civbg-news-title a {
    color: var(--civbg-text);
}

.civbg-news-title a:hover {
    color: var(--civbg-accent);
}

.civbg-news-excerpt {
    font-size: 0.9rem;
    color: var(--civbg-text);
    margin: 0;
    line-height: 1.6;
}

/* ---------- Contact Page ---------- */
.civbg-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.civbg-contact-info h3 {
    margin-top: 0;
}

.civbg-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.civbg-contact-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.civbg-contact-text strong {
    display: block;
    margin-bottom: 4px;
    color: var(--civbg-text);
}

.civbg-contact-text span,
.civbg-contact-text a {
    font-size: 0.95rem;
    color: var(--civbg-text-secondary);
}

.civbg-contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--civbg-text);
}

.civbg-contact-form input[type="text"],
.civbg-contact-form input[type="email"],
.civbg-contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--civbg-border);
    border-radius: 6px;
    font-family: var(--civbg-font-body);
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: border-color 0.2s ease;
    background: var(--civbg-bg);
    color: var(--civbg-text);
}

.civbg-contact-form input:focus,
.civbg-contact-form textarea:focus {
    outline: none;
    border-color: var(--civbg-accent);
}

.civbg-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.civbg-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--civbg-accent);
    color: #FFFFFF;
    font-family: var(--civbg-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.civbg-btn:hover {
    background: #B8943A;
    transform: translateY(-1px);
    color: #FFFFFF;
}

.civbg-social-links-list {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.civbg-social-links-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #4A3F28;
    color: #FFFFFF;
    transition: background 0.2s ease;
}

.civbg-social-links-list a:hover {
    background: var(--civbg-accent);
    color: #FFFFFF;
}

.civbg-social-links-list svg {
    width: 20px;
    height: 20px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1400px) {
    .hero-widget-prozhektsii,
    .hero-widget-podkrepi,
    .hero-widget-karta {
        width: 28%;
        max-width: 300px;
    }
}

@media (max-width: 1200px) {
    .hero-widget-prozhektsii,
    .hero-widget-podkrepi,
    .hero-widget-karta {
        width: 28%;
        max-width: 280px;
    }

    .hero-widget-link {
        padding: 16px 18px;
    }

    .hero-widget-title {
        font-size: 0.95rem;
    }

    .hero-widget-desc {
        font-size: 0.82rem;
    }
}

@media (max-width: 1024px) {
    .civbg-hero {
        height: 45vh;
        min-height: 280px;
        max-height: 450px;
    }

    .hero-widget-prozhektsii,
    .hero-widget-podkrepi,
    .hero-widget-karta {
        width: 28%;
        max-width: 240px;
    }

    .hero-widget-link {
        padding: 12px 14px;
    }

    .hero-widget-title {
        font-size: 0.9rem;
    }

    .hero-widget-desc {
        font-size: 0.78rem;
    }

    .civbg-hero-sidebar {
        position: static;
        transform: none;
        flex-direction: row;
        max-width: 100%;
        padding: 20px;
        z-index: 3;
    }

    .hero-widget-box {
        flex: 1;
    }

    .civbg-map-embed,
    .civbg-map-placeholder {
        max-width: 100%;
    }

    .civbg-menu li a {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    .civbg-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .civbg-header-inner {
        padding: 0 12px;
    }

    .civbg-header-top {
        padding: 8px 0;
    }

    .civbg-logo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .civbg-logo img {
        height: 50px;
        transform: none;
    }

    .civbg-logo::before {
        display: none;
    }

    .civbg-site-title {
        font-size: 0.95rem;
        margin-left: 8px;
    }

    .civbg-header-left {
        align-items: center;
    }

    .civbg-header-right {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        gap: 8px;
    }

    .civbg-search-bar {
        display: none;
    }

    .civbg-social-icons {
        display: flex;
        gap: 6px;
    }

    .civbg-social-icons svg {
        width: 16px;
        height: 16px;
    }

    .civbg-menu-toggle {
        display: block;
    }

    .civbg-main-nav {
        display: none;
        border-top: none;
        margin-left: 0;
    }

    .civbg-main-nav.is-open {
        display: block;
    }

    .civbg-menu {
        flex-direction: column;
    }

    .civbg-menu li a {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .civbg-hero {
        height: 35vh;
        min-height: 200px;
        max-height: 300px;
        flex-direction: column;
    }

    .civbg-hero-indicators {
        display: none;
    }

    .hero-widget-prozhektsii,
    .hero-widget-podkrepi,
    .hero-widget-karta {
        display: none;
    }

    .civbg-hero-widgets-mobile {
        display: flex;
        flex-direction: row;
        gap: 10px;
        padding: 12px 16px;
        overflow-x: auto;
    }

    .civbg-hero-widgets-mobile .hero-widget-box {
        flex: 1;
        min-width: 140px;
    }

    .civbg-hero-widgets-mobile .hero-widget-link {
        padding: 14px 16px;
        text-align: center;
    }

    .civbg-hero-widgets-mobile .hero-widget-title {
        font-size: 0.9rem;
    }

    .civbg-hero-widgets-mobile .hero-widget-desc {
        font-size: 0.8rem;
    }

    .civbg-hero-sidebar {
        flex-direction: column;
    }

    .civbg-carousel-row {
        padding: 10px 10px 6px;
    }

    .civbg-hero-content {
        padding: 30px 20px;
    }

    .civbg-section-title {
        font-size: 1.3rem;
    }

    .civbg-social-icons {
        gap: 8px;
    }

    .civbg-lang-switcher {
        display: flex;
    }

    .civbg-page-title {
        font-size: 1.5rem;
    }

    .civbg-grid {
        grid-template-columns: 1fr 1fr;
    }

    .civbg-grid-3 {
        grid-template-columns: 1fr;
    }

    .civbg-screenings-table {
        display: block;
        overflow-x: visible;
    }

    .civbg-screenings-table thead {
        display: none;
    }

    .civbg-screenings-table tbody {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .civbg-screenings-table tr {
        display: flex;
        flex-direction: column;
        background: var(--civbg-card-bg);
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        border-bottom: none;
    }

    .civbg-screenings-table tr:hover td {
        background: none;
    }

    .civbg-screenings-table td {
        display: block;
        padding: 6px 14px;
        border-bottom: none;
        font-size: 0.9rem;
    }

    .civbg-screenings-table td:first-child {
        padding-top: 12px;
        font-weight: 700;
        color: var(--civbg-accent);
    }

    .civbg-screenings-table td:last-child {
        padding: 10px 14px 14px;
    }

    .civbg-screening-thumb {
        width: 100%;
        height: auto;
        border-radius: 0 0 8px 8px;
    }

    .civbg-screening-thumb:hover {
        transform: none;
        box-shadow: none;
    }

    .civbg-container {
        padding: 0 16px;
    }

    .civbg-page-content {
        padding: 20px 0;
    }

    .civbg-contact-grid {
        grid-template-columns: 1fr;
    }

    .civbg-video-card {
        padding: 12px;
    }

    .civbg-filmi-synopsis {
        font-size: 0.9rem;
    }

    .civbg-support-intro {
        font-size: 1.05rem;
    }

    .civbg-footer-inner {
        padding: 0 16px;
    }

    .civbg-karta-intro {
        font-size: 0.95rem;
    }

    .civbg-carousel-center {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .civbg-header-top {
        padding: 10px 0;
    }

    .civbg-site-title {
        font-size: 0.8rem;
        margin-left: 6px;
    }

    .civbg-logo img {
        height: 36px;
    }

    .civbg-social-icons {
        display: flex;
    }

    .civbg-grid {
        grid-template-columns: 1fr;
    }

    .civbg-screenings-table th,
    .civbg-screenings-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .civbg-hero-widgets-mobile {
        flex-direction: column;
    }

    .civbg-hero {
        height: 30vh;
        min-height: 180px;
        max-height: 250px;
    }

    .civbg-screening-thumb:hover {
        transform: scale(2.5);
    }

    .civbg-logo img {
        transform: none;
    }

    .civbg-page-title {
        font-size: 1.2rem;
    }

    .civbg-section-title {
        font-size: 1.1rem;
    }

    .civbg-support-intro {
        font-size: 0.95rem;
    }

    .civbg-support-title {
        font-size: 1rem;
    }

    .civbg-support-desc {
        font-size: 0.85rem;
    }

    .civbg-news-title {
        font-size: 1rem;
    }

    .civbg-carousel-row {
        padding: 8px 8px 4px;
    }

    .civbg-screenings-table th,
    .civbg-screenings-table td {
        padding: 8px 8px;
        font-size: 0.78rem;
    }

    .civbg-screening-thumb {
        width: 40px;
    }
}
