.event-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.event-logo-img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
}

.event-hero-text {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    z-index: 1;
    overflow: hidden;
    border: none !important;
}

.event-hero-text::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 60, 130, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content-inner {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.event-hero-text h1 {
    color: #fff !important;
    margin-bottom: 20px;
}

.event-hero-text p {
    color: #e0e0e0;
    font-size: 1.2rem;
    font-weight: 500;
}

.event-hero-video {
    position: relative;
    z-index: 10;
    margin-left: -100px; /* Нахлест */
    -webkit-clip-path: polygon(100px 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(100px 0, 100% 0, 100% 100%, 0 100%);
    background: #000;
}

.event-hero-video::after { display: none; }

.event-hero-text::after {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 50px; height: 100%;
    background: linear-gradient(to left, rgba(0,0,0,0.2), transparent);
    z-index: 2;
}

.event-about-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-text-content { flex: 1.2; }

.about-title {
    font-family: 'Gotham', sans-serif;
    font-size: 2.2rem;
    color: #003c82;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-lead {
    font-size: 1.6rem;
    line-height: 1.4;
    color: #003c82;
    font-weight: 500;
    margin-bottom: 30px;
    border-left: 4px solid #00a0c8;
    padding-left: 20px;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-features {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 60, 130, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f4f7f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card h3 {
    font-family: 'Gotham', sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.event-nav-section {
    padding-bottom: 80px;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nav-tile {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 30px 20px;
    border-radius: 12px;
    color: #fff;
    font-family: 'Gotham', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s;
    box-shadow: 0 4px 15px rgba(0, 60, 130, 0.15);
}

.nav-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 60, 130, 0.25);
    filter: brightness(1.1);
}

.tile-news { background: linear-gradient(135deg, #003c82 0%, #004e9a 100%); }
.tile-gallery { background: linear-gradient(135deg, #004e9a 0%, #007cc2 100%); }
.tile-other { background: linear-gradient(135deg, #007cc2 0%, #00a0c8 100%); }

.event-geo-section {
    padding-bottom: 80px;
}

.flight-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.flight-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    width: 200px;
}

.flag-circle {
    width: 90px;
    height: 60px;
    border-radius: 8px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    overflow: hidden;
}

.flag-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sakhalin-logo {
    background: transparent;
    border: none;
    box-shadow: none;
}

.sakhalin-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.city-name {
    font-family: 'Gotham', sans-serif;
    font-size: 1.8rem;
    color: #003c82;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.point-label {
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.flight-path-container {
    flex: 1;
    position: relative;
    height: 120px;
    display: flex;
    justify-content: center;
    margin: 0 20px;
}

.flight-dist {
    position: absolute;
    top: 0;
    background: #eef6fc;
    color: #00a0c8;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
}

.flight-arc-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.fade-text { animation: fadeText 0.5s ease-in-out; }
@keyframes fadeText {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.mobile-only { display: none; }

.mob-participants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.mob-geo-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.mob-flag {
    width: 50px;
    height: 35px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mob-geo-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
    font-family: 'Gotham', sans-serif;
    text-transform: uppercase;
}

.mob-geo-info span {
    font-size: 0.85rem;
    color: #00a0c8;
    font-weight: 700;
}

.mob-geo-arrow {
    text-align: center;
    margin: 10px 0;
    color: #00a0c8;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.mob-geo-dest {
    background: linear-gradient(135deg, #003c82 0%, #0050aa 100%);
    color: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(0, 60, 130, 0.2);
}

.mob-dest-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.mob-dest-icon img {
    width: 100%;
    height: auto;
}

.mob-geo-dest h3 {
    margin: 0;
    font-family: 'Gotham', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-news-section {
    padding-bottom: 100px;
}

.news-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.news-card-rect {
    position: relative;
    display: block;
    width: calc(50% - 15px);
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: #000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card-rect:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0, 60, 130, 0.2);
}

.news-rect-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    opacity: 0.95;
    z-index: 1;
}

.news-card-rect:hover .news-rect-bg { transform: scale(1.05); }

.news-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 30%, rgba(0, 60, 130, 0.9) 100%);
    z-index: 2;
}

.news-rect-content {
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-date-badge {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
}

.news-rect-title {
    font-family: 'Gotham', sans-serif;
    font-size: 1.3rem;
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-hover-arrow {
    position: absolute;
    bottom: 30px; right: 30px; z-index: 4;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.news-hover-arrow img { width: 24px; height: 24px; display: block; }
.news-card-rect:hover .news-hover-arrow { opacity: 1; transform: translateX(0); }

.news-btn-wrapper { text-align: center; }
.news-btn-all {
    display: inline-block; padding: 15px 50px;
    border: 2px solid #003c82; color: #003c82;
    border-radius: 50px; text-decoration: none;
    font-family: 'Gotham', sans-serif; font-weight: 700; text-transform: uppercase;
    transition: all 0.3s ease; letter-spacing: 1px;
}
.news-btn-all:hover { background: #003c82; color: #fff; box-shadow: 0 5px 15px rgba(0, 60, 130, 0.2); }

.no-news-block {
    text-align: center; padding: 60px;
    background: #fff; border-radius: 16px; border: 1px dashed #ccc;
}
.no-news-icon img {
    width: 40px; height: 40px; margin-bottom: 20px;
    margin-left: auto; margin-right: auto; opacity: 0.5;
}
.no-news-block h3 { font-family: 'Gotham', sans-serif; color: #555; margin: 0 0 10px 0; }
.no-news-block p { color: #888; margin: 0; }


@media (max-width: 900px) {

    .event-top-bar .lang-btn,
    .news-date-badge {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.95);
    }

    .event-top-bar {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .event-hero-video {
        margin-left: 0;
        margin-top: 0;

        position: relative;
        height: 50vh;
        min-height: 400px;
        width: 100%;
        background: #000;

        -webkit-clip-path: none;
        clip-path: none;

        border-radius: 0 0 24px 24px;
    }

    .event-hero-video video {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
    }

    .about-grid { flex-direction: column; gap: 40px; }
    .about-lead { font-size: 1.3rem; padding-left: 15px; }
    .about-features { width: 100%; }

    .nav-grid { grid-template-columns: 1fr; gap: 20px; }
    .nav-tile { padding: 20px; }

    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }

    .news-card-rect { width: 100%; height: 300px; }
    .news-rect-title { font-size: 1.2rem; }
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #003c82;
    text-decoration: none;
    font-family: 'Gotham', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s;
}

.back-link:hover {
    color: #00a0c8;
}