/* Загальні стилі */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1a1a2e;
    --secondary-dark: #16213e;
    --accent-blue: #0f3460;
    --accent-red: #e94560;
    --accent-gold: #ffd700;
    --text-light: #ffffff;
    --text-gray: #b8b8b8;
    --bg-dark: #0d1117;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 50%, var(--secondary-dark) 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Голотип */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-red));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-square {
    width: 30px;
    height: 30px;
    background: var(--text-light);
    border-radius: 4px;
    position: relative;
}

.logo-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: 
        radial-gradient(circle at 20px 20px, transparent 15px, var(--accent-gold) 15px, var(--accent-gold) 20px, transparent 20px),
        radial-gradient(circle at 20px 20px, transparent 15px, var(--accent-gold) 15px, var(--accent-gold) 20px, transparent 20px);
    background-position: 0 0, 20px 20px;
    background-size: 40px 40px;
    opacity: 0.8;
}

.logo-text h1 {
    color: var(--text-light);
    font-size: 24px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo-text span {
    color: var(--accent-gold);
    font-size: 12px;
    display: block;
    font-weight: 300;
}

/* Верхня панель */
.top-bar {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-red));
    color: var(--text-light);
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-weather {
    display: flex;
    gap: 20px;
}

.weather {
    font-weight: 600;
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--accent-blue);
    transform: translateY(-2px);
}

/* Шапка */
header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Основна навігація */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    padding: 10px 0;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-gold);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
}

.header-actions {
    
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-btn,
.menu-toggle {
    background: rgba(255,255,255,0.1);
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover,
.menu-toggle:hover {
    background: var(--accent-gold);
    color: var(--accent-blue);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-light);
    transition: 0.3s;
}

/* Головний слайдер */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    margin-bottom: 30px;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 52, 96, 0.9));
    color: var(--text-light);
    padding: 40px;
}

.category {
    background: var(--accent-red);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-content h2 {
    font-size: 32px;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.read-more {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--accent-gold);
    padding: 12px 25px;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more:hover {
    background: var(--accent-gold);
    color: var(--accent-blue);
}

/* Основний контент */
.main-content {
    padding: 40px 0;
}

/* Стрічкові новини */
.breaking-news {
    background: linear-gradient(90deg, var(--accent-red), var(--accent-blue));
    color: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.breaking-label {
    background: var(--accent-red);
    padding: 15px 25px;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breaking-content {
    flex: 1;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
}

.news-item {
    font-weight: 600;
}

/* Заголовки секцій */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-gold);
}

.section-header h2 {
    color: var(--accent-gold);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.view-all:hover {
    color: var(--text-light);
}

/* Сітка новин */
.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border-color: var(--accent-gold);
}

.news-card.large {
    grid-row: span 2;
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card.large .news-image {
    height: 300px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-blue);
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    margin-bottom: 15px;
}

.news-content h3 a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 18px;
    line-height: 1.4;
}

.news-content h3 a:hover {
    color: var(--accent-gold);
}

.news-card.large .news-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    gap: 20px;
    color: var(--text-gray);
    font-size: 14px;
}

.news-meta i {
    margin-right: 5px;
    color: var(--accent-gold);
}

/* TV програма */
.tv-program {
    margin-bottom: 50px;
}

.program-schedule {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.program-item {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
}

.program-item:hover {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding-left: 15px;
    padding-right: 15px;
}

.program-item.current {
    background: linear-gradient(90deg, rgba(15, 52, 96, 0.5), transparent);
    border-left: 4px solid var(--accent-gold);
    padding-left: 15px;
}

.program-item:last-child {
    border-bottom: none;
}

.time {
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 16px;
}

.program-name {
    font-weight: 500;
    color: var(--text-light);
}

/* Відео секція */
.video-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.main-video {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    overflow: hidden;
    height: 550px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.video-thumbnail {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.main-video .video-thumbnail {
    height: 400px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(233, 69, 96, 0.9);
    color: var(--text-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
    border: 3px solid var(--text-light);
}

.play-button:hover {
    background: var(--accent-gold);
    color: var(--accent-blue);
    transform: translate(-50%, -50%) scale(1.1);
}

.main-video h3,
.video-item h4 {
    padding: 25px;
    margin: 0;
    color: var(--text-light);
}

.video-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-item.small {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.video-item.small:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.video-item.small .video-thumbnail {
    height: 150px;
}

.video-item.small h4 {
    font-size: 16px;
    padding: 20px;
}

/* Футер */
footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: var(--text-light);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo h3 {
    color: var(--text-light);
    margin: 0;
    font-size: 20px;
}

.footer-logo span {
    font-size: 11px;
    opacity: 0.8;
    color: var(--accent-gold);
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 14px;
}

.contact-info i {
    color: var(--accent-gold);
    width: 16px;
}

.newsletter {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 14px;
}

.newsletter input::placeholder {
    color: var(--text-gray);
}

.subscribe-btn {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-red));
    color: var(--text-light);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--text-light);
    font-size: 18px;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-gray);
    font-size: 14px;
}

/* Адаптивність */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-main {
        flex-wrap: wrap;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-nav a {
        display: block;
        padding: 15px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 20px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter {
        flex-direction: column;
    }
    
    .breaking-news {
        flex-direction: column;
    }
    
    .breaking-label {
        text-align: center;
    }
}
/* Секція "Про нас" */
.about-section {
    margin-bottom: 50px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    color: var(--accent-gold);
    font-size: 28px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Секція контактів */
.contact-section {
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3,
.contact-form h3 {
    color: var(--accent-gold);
    margin-bottom: 30px;
    font-size: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
}

/* Стилі для форми */
.contact-form {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-form h3 {
    color: var(--accent-gold);
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group label::after {
    content: '*';
    color: #dc3545;
    margin-left: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(15, 52, 96, 0.3);
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(15, 52, 96, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

/* Стани валідації */
.form-group.valid input,
.form-group.valid textarea {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.form-group.invalid input,
.form-group.invalid textarea {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

/* Повідомлення про помилки */
.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
    display: block;
    min-height: 20px;
    font-weight: 500;
}

.helper-text {
    color: var(--text-gray);
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Лічильник символів */
.counter {
    text-align: right;
    color: var(--text-gray);
    font-size: 12px;
    margin-top: 5px;
}

.counter.warning {
    color: #ffc107;
}

.counter.error {
    color: #dc3545;
}

/* Кнопка відправки */
#submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-red));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

#submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

#submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Повідомлення про успіх */
.success-message {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    color: #28a745;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анімація для іконок */
.form-group i {
    position: absolute;
    right: 15px;
    top: 42px;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s;
}

.form-group.valid i.fa-check {
    color: #28a745;
    opacity: 1;
}

.form-group.invalid i.fa-times {
    color: #dc3545;
    opacity: 1;
}

/* Посилання на додатки */
.app-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.app-btn:hover {
    background: var(--accent-gold);
    color: var(--accent-blue);
    transform: translateY(-2px);
}

.app-btn i {
    font-size: 20px;
}

/* Автор новин */
.news-meta .author {
    color: var(--accent-gold);
    font-size: 14px;
}

/* Адаптивність для нових секцій */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .app-links {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .app-btn {
        flex: 1;
        justify-content: center;
    }
}

/* Кнопка прямого ефіру */
.live-btn {
    background: linear-gradient(45deg, var(--accent-red), var(--accent-blue));
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.live-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

/* Відео плеєр */
.video-player {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 10px;
    overflow: hidden;
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Кнопка "Читати далі" */
.read-more-btn {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    margin-left: auto;
}

.read-more-btn:hover {
    background: var(--accent-gold);
    color: var(--accent-blue);
}

/* Секція прямого ефіру */
.live-section {
    margin-bottom: 50px;
}

.live-now-btn {
    background: linear-gradient(45deg, var(--accent-red), var(--accent-blue));
    color: var(--text-light);
    border: none;
    padding: 12px 25px;
    border-radius: 24px;
    cursor: pointer;
    display: flex;
    margin-top: 10px;
    align-items: center;
    gap: 10px;
    
    font-weight: 450;
    transition: all 0.3s;
}

.live-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.live-container {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    padding: 40px;
    justify-items: center;
    text-align: center;
    
    border: 2px solid rgba(255,255,255,0.1);
}

.live-placeholder {
    color: var(--text-gray);
}

.live-placeholder i {
    font-size: 64px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.live-placeholder h3 {
    color: var(--text-light);
    margin-bottom: 10px;
}

/* Модальне вікно */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--primary-dark);
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    position: relative;
    border: 2px solid var(--accent-gold);
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--accent-gold);
}

.live-stream {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-top: 20px;
}

.live-stream iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Анімація для розгортання новин */
.news-full {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивність для відео */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    
    .live-btn span {
        display: none;
    }
    
    .live-btn {
        padding: 10px;
    }
}
/* Виправлення для карток новин */
.news-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    height: fit-content;
}

.news-card.large {
    grid-row: span 1;
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card.large .news-image {
    height: 250px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.news-content h3 {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-light);
}

.news-excerpt {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.news-full {
    color: var(--text-gray);
    line-height: 1.6;
    margin-top: 15px;
}

.news-full p {
    margin-bottom: 12px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.news-meta .time,
.news-meta .views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more-btn {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
    margin-left: auto;
}

.read-more-btn:hover {
    background: var(--accent-gold);
    color: var(--accent-blue);
}

.read-more-btn.active {
    background: var(--accent-gold);
    color: var(--accent-blue);
}

/* Виправлення сітки новин */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

@media (min-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .news-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Анімація для розгортання */
.news-full {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.news-full.expanded {
    max-height: 1000px;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Секція програм */
.programs-section {
    margin-bottom: 50px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.program-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.program-icon i {
    font-size: 30px;
    color: var(--text-light);
}

.program-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 20px;
}

.program-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.program-schedule {
    margin-top: auto;
}

.schedule-time {
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 600;
}

/* Секція "Про нас" */
.about-section {
    margin-bottom: 50px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h3 {
    color: var(--accent-gold);
    font-size: 28px;
    margin-bottom: 20px;
}

.about-text > p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
}

.about-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature i {
    color: var(--accent-gold);
    font-size: 24px;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature h4 {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 18px;
}

.feature p {
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Секція контактів */
.contact-section {
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3,

.contact-form h3 {
    color: var(--accent-gold);
    margin-bottom: 30px;
    font-size: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
}

.map-container {
    margin-top: 30px;
}

.map-placeholder {
    background: rgba(26, 26, 46, 0.8);
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    color: var(--text-gray);
    width: 1000px;
}

.map-placeholder i {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    display: block;
}
.map{
    width: 100%;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(26, 26, 46, 0.8);
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(26, 26, 46, 1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-gray);
}

.contact-form .btn {
    align-self: flex-start;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-red));
    color: var(--text-light);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

/* Адаптивність */
@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
}
/* Додайте ці стилі в кінець вашого CSS файлу */

/* Стилі для валідації форми */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(26, 26, 46, 0.8);
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(26, 26, 46, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

/* Стилі для стану валідації */
.form-group.success input,
.form-group.success textarea {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.form-group.error input,
.form-group.error textarea {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    min-height: 18px;
}

.success-message {
    color: #28a745;
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 5px;
    border: 1px solid #28a745;
}

/* Індикатор сили пароля */
.password-strength {
    margin-top: 5px;
    height: 4px;
    border-radius: 2px;
    background: #ddd;
    overflow: hidden;
}

.strength-weak { background: linear-gradient(90deg, #dc3545 0%, #dc3545 33%, #ddd 33%, #ddd 100%); }
.strength-medium { background: linear-gradient(90deg, #ffc107 0%, #ffc107 66%, #ddd 66%, #ddd 100%); }
.strength-strong { background: linear-gradient(90deg, #28a745 0%, #28a745 100%); }



/*Адаптивніть для всіх пристроїв*/
/* Мобільна версія */
@media (max-width: 767px) {
    .container {
        padding: 0 10px;
    }
    
    body {
        font-size: 14px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .date-weather {
        flex-direction: column;
        gap: 5px;
    }
    
    .header-main {
        flex-wrap: wrap;
        padding: 10px 0;
    }
    
    .logo {
        flex: 1;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .header-actions {
        order: 2;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .live-now-btn {
        width: 100%;
        justify-content: center;
        padding: 10px;
        font-size: 14px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(26, 26, 46, 0.98);
        transition: left 0.3s ease;
        z-index: 1000;
        padding-top: 60px;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-nav a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .hero-slider {
        height: 300px;
        border-radius: 0;
        margin-bottom: 20px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .breaking-news {
        flex-direction: column;
    }
    
    .breaking-label {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-card.large {
        grid-column: span 1;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-card.large .news-image {
        height: 200px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .program-card {
        padding: 20px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-video {
        height: auto;
    }
    
    .video-sidebar {
        grid-template-columns: 1fr;
    }
    
    .video-item.small {
        margin-bottom: 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .newsletter {
        flex-direction: column;
    }
    
    .app-links {
        flex-direction: column;
    }
    
    .map-placeholder {
        width: 100%;
        padding: 20px;
    }
    
    .map-placeholder iframe {
        width: 100%;
        height: 300px;
    }
}
/* Планшетна версія */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .header-main {
        flex-wrap: wrap;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .main-nav ul {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-card.large {
        grid-column: span 2;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
/* Надзвичайно маленькі екрани */
@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 16px;
    }
    
    .hero-slider {
        height: 250px;
    }
    
    .slide-content h2 {
        font-size: 18px;
    }
    
    .slide-content p {
        display: none;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .view-all {
        align-self: center;
    }
    
    .program-card {
        padding: 15px;
    }
    
    .program-icon {
        width: 50px;
        height: 50px;
    }
    
    .program-icon i {
        font-size: 24px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    #submit-btn {
        padding: 12px;
        font-size: 14px;
    }
}
/* Десктопна версія */
@media (min-width: 1025px) {
    .menu-toggle {
        display: none;
    }
    
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .video-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .video-sidebar {
        flex-direction: column;
    }
}

/* Виправлення чорної смуги справа */
body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 100%;
}

/* Адаптація для ширини 1346px */
@media (max-width: 1346px) and (min-width: 1025px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .header-main {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .main-nav ul {
        gap: 15px;
    }
    
    .main-nav a {
        font-size: 13px;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .news-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .news-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid {
        grid-template-columns: 1.5fr 1fr;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .contact-content {
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Адаптація для ширини 1200px */
@media (max-width: 1200px) and (min-width: 1025px) {
    .container {
        padding: 0 15px;
    }
    
    .main-nav ul {
        gap: 10px;
    }
    
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 20px;
    }
}

/* Виправлення гамбургер-меню та адаптивності */
@media (max-width: 1024px) {
    .header-main {
        position: relative;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1000;
    }
    
    .menu-toggle span {
        width: 100%;
        height: 3px;
        background: var(--text-light);
        border-radius: 2px;
        transition: all 0.3s;
        display: block;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary-dark);
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-nav a {
        display: block;
        padding: 15px;
        font-size: 16px;
        text-align: left;
    }
    
    .main-nav a.active::after {
        display: none;
    }
    
    /* Затемнення фону при відкритому меню */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 998;
    }
    
    body.menu-open::after {
        opacity: 1;
        visibility: visible;
    }
}

/* Додаткові виправлення для контейнера */
@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
        margin: 0 auto;
        padding: 0 15px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Виправлення для прямих відео */
.video-player {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Виправлення для мапи */
.map-placeholder {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

/* Виправлення для брейкінг-новини */
.breaking-content {
    overflow: hidden;
    width: 100%;
}

.breaking-content marquee {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

/* Виправлення для футера */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Виправлення для секції про нас */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.about-text {
    flex: 1 1 400px;
}

.about-image {
    flex: 1 1 400px;
    max-width: 100%;
}

/* Виправлення для контактної форми */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-form {
    flex: 1 1 300px;
}

/* Виправлення для слайдера */
.slider-container {
    width: 100%;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
}

/* Медіа-запит для середніх екранів */
@media (max-width: 1400px) and (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1600px) and (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
