        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Manrope", sans-serif;
            background-color: #f8f9fa;
            color: #262625;
            line-height: 1.5;
        }

        /* Hero секція (афіша) */
        .afisha-hero {
            background-color: #262625;
            height: 40vh;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .afisha-hero h1 {
            font-size: clamp(40px, 8vw, 70px);
            color: white;
            margin: 0;
            z-index: 2;
            position: relative;
        }

        .wave-container {
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 1;
        }

        .wave-container svg {
            display: block;
            width: 100%;
            height: 120px;
        }

        .wave-container svg path {
            fill: #f8f9fa;
        }

        @media (max-width: 768px) {
            .wave-container svg {
                height: 60px;
            }
        }

        /* Контейнер */
        .events-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Вступний текст */
        .intro-text {
            background: #fff;
            border-radius: 28px;
            padding: 35px 40px;
            margin-bottom: 50px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
        }

        .intro-text p {
            font-size: 18px;
            line-height: 1.6;
            color: #3a3a38;
            margin-bottom: 16px;
        }

        .intro-text .highlight-quote {
            background: #e8f0f4;
            padding: 20px 25px;
            border-radius: 20px;
            border-left: 5px solid #85abba;
            font-weight: 500;
            margin-top: 20px;
        }

        /* Картка події (основна толока) */
        .event-card {
            background: #fff;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
            margin-bottom: 60px;
            transition: transform 0.2s ease;
        }

        .event-card:hover {
            transform: translateY(-4px);
        }

        .event-header {
            background: linear-gradient(105deg, #1f2b38 0%, #2c3e4e 100%);
            padding: 30px 40px;
            color: white;
        }

        .event-badge {
            display: inline-block;
            background: #85abba;
            color: #1f2b38;
            font-weight: 800;
            font-size: 14px;
            padding: 6px 18px;
            border-radius: 40px;
            margin-bottom: 18px;
            letter-spacing: 0.5px;
        }

        .event-header h2 {
            font-size: clamp(28px, 5vw, 42px);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .event-sub {
            font-size: 18px;
            opacity: 0.85;
        }

        .event-body {
            padding: 40px;
        }

        .info-row {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            margin-bottom: 40px;
            background: #f8fafc;
            padding: 20px 28px;
            border-radius: 24px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 17px;
            font-weight: 500;
        }

        .info-icon {
            font-size: 26px;
        }

        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: #1f2b38;
            margin: 32px 0 20px 0;
            padding-left: 14px;
            border-left: 5px solid #85abba;
        }

        .work-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 18px;
            margin: 25px 0;
        }

        .work-item {
            background: #f0f4f7;
            border-radius: 20px;
            padding: 18px 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
        }

        .work-item span:first-child {
            font-size: 28px;
        }

        .support-block {
            background: #e8f0f4;
            border-radius: 24px;
            padding: 24px 30px;
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .support-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 17px;
            font-weight: 500;
        }

        .cta-block {
            background: #1f2b38;
            border-radius: 28px;
            padding: 40px 35px;
            text-align: center;
            color: white;
            margin-top: 30px;
        }

        .cta-block h3 {
            font-size: 28px;
            margin-bottom: 16px;
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 28px 0 20px;
        }

        .btn-primary {
            background: #85abba;
            color: #1f2b38;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            display: inline-block;
            border: none;
            font-size: 16px;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: #6c9aab;
            transform: scale(1.02);
        }

        .btn-outline-light {
            background: transparent;
            border: 2px solid #85abba;
            color: #85abba;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-outline-light:hover {
            background: #85abba;
            color: #1f2b38;
        }

        .contacts-mini {
            margin-top: 20px;
            font-size: 15px;
            opacity: 0.8;
        }

        .contacts-mini a {
            color: #85abba;
            text-decoration: none;
        }

        /* Другорядні події (майбутні анонси) */
        .other-events {
            margin-top: 60px;
        }

        .other-title {
            font-size: 32px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            color: #262625;
        }

        .other-title span {
            color: #85abba;
        }

        .mini-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .mini-event {
            background: white;
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
            transition: 0.2s;
        }

        .mini-event:hover {
            transform: translateY(-5px);
        }

        .mini-date {
            font-size: 14px;
            color: #85abba;
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .mini-event h4 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .mini-event p {
            color: #4a4a47;
            font-size: 15px;
        }

        .event-tag {
            display: inline-block;
            background: #eef2f5;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 600;
            margin-top: 12px;
        }

        .afisha-hero-flex {
            display: flex;
            gap: 30px;
            align-items: flex-start;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .afisha-hero-text {
            flex: 1 1 320px;
            font-size: 18px;
            line-height: 1.6;
            color: #3a3a38;
            margin: 0;
        }

        .afisha-poster-img {
            flex: 0 1 380px;
            max-width: 380px;
            width: 100%;
            border-radius: 24px;
            display: block;
        }

        @media (max-width: 760px) {
            .afisha-hero-flex {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .events-container {
                padding: 20px 16px;
            }

            .event-header {
                padding: 24px 24px;
            }

            .event-body {
                padding: 24px;
            }

            .info-row {
                flex-direction: column;
                gap: 16px;
            }

            .support-block {
                flex-direction: column;
                align-items: flex-start;
            }

            .cta-block h3 {
                font-size: 24px;
            }

            .intro-text {
                padding: 24px;
            }
        }