/* ========== FULL NEWS STYLES ========== */

/* Основные стили */
.full-news {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.full-news-image {
    float: left;
    width: 300px;
    margin-right: 30px;
    margin-bottom: 20px;
    position: relative;
}

.full-news-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.full-news-info {
    overflow: hidden;
}

.full-news-info h1 {
    color: #333;
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 700;
}

.full-news-info h2 {
    color: #666;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.info-section {
    margin-top: 20px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
}

.info-line {
    margin: 12px 0;
    font-size: 15px;
    color: #555;
}

.info-line i {
    width: 20px;
    text-align: center;
    margin-right: 8px;
    color: #38741a;
}

.info-line span {
    font-weight: 600;
    color: #444;
}

.full-story-text {
    margin: 30px 0;
    line-height: 1.6;
    color: #333;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
    clear: both;
}

/* Кнопка скачивания */
.download-btn-main {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    margin: 10px 0;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.download-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.download-btn-main i {
    margin-right: 8px;
}

/* Блоки */
.full-block {
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.full-block-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #38741a;
    padding-bottom: 10px;
}

.full-block-title i {
    margin-right: 10px;
    color: #38741a;
}

/* Видео блок */
.video-block {
    background: #f8f9fa;
}

.full-news-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.full-news-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

/* Уведомления */
.legal-notice {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid #38741a;
}

.notice-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #38741a;
    font-size: 18px;
}

.notice-title i {
    margin-right: 8px;
}

.notice-content {
    color: #555;
    line-height: 1.6;
}

.notice-content i {
    margin-right: 8px;
    color: #38741a;
}

.welcome-notice {
    background: #e8f4fd;
    border-left-color: #3498db;
}

.welcome-notice .notice-title {
    color: #3498db;
}

/* Теги */
.tags-block {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

.tags-title h3 {
    margin-bottom: 15px;
    color: #333;
}

.tags-title i {
    margin-right: 10px;
    color: #38741a;
}

.tags-list a {
    display: inline-block;
    background: #38741a;
    color: white;
    padding: 6px 12px;
    margin: 5px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.tags-list a:hover {
    background: #2a5b13;
}

/* Похожие треки и новинки */
.top-block {
    margin: 40px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-block-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #38741a;
}

.top-block-title h2, .top-block-title h3 {
    color: #333;
    font-size: 22px;
    display: inline-block;
    margin: 0;
}

.top-block-title i {
    margin-right: 10px;
    color: #38741a;
}

.btn-more {
    display: inline-block;
    background: #38741a;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-more:hover {
    background: #2a5b13;
}

/* Избранное */
.addto-fav {
    display: inline-block;
    margin-top: 15px;
}

.addto-fav-button {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.addto-fav-button:hover {
    background: #5a67d8;
}

.addto-fav-button i {
    margin-right: 5px;
}

/* Аудиоплеер */
.audio-player-wrapper {
    margin: 20px 0;
    width: 100%;
}

audio {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    outline: none;
}

/* Очистка потока */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Адаптивность */
@media (max-width: 768px) {
    .full-news-image {
        float: none;
        width: 100%;
        margin-right: 0;
    }
    
    .full-news {
        padding: 15px;
    }
    
    .full-news-info h1 {
        font-size: 24px;
    }
    
    .download-btn-main {
        width: 100%;
        padding: 12px;
    }
    
    .top-block-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .full-news-info h1 {
        font-size: 20px;
    }
    
    .top-block-content {
        grid-template-columns: 1fr;
    }
}

/* ========== END FULL NEWS STYLES ========== */
