body {
    background-color: #000;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

a:hover {
    color: gold;
}

#vkm:hover {
    color: blueviolet;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
}

.bio,
.video-section,
.news-section,
.songs-section {
    max-width: none;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(30,30,30,0.7), rgba(10,10,10,0.7));
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header {
    position: relative;
    text-align: center;
    padding: 40px 0;
}

.photo-container {
    position: relative;
    display: inline-block;
    max-width: 800px;
}

.photo-container img {
    display: block;
    width: 100%;
    height: auto;
}

.name-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
    z-index: 5;
    text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px 30px;
    border-radius: 8px;
}

.name-overlay .first-name {
    font-size: 6rem;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
}

.name-overlay .last-name {
    font-size: 8rem;
    margin: 0;
    padding: 0;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-left {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 160px;
    height: 160px;
    z-index: 10;
}

.logo-right {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    z-index: 10;
}

.logo-left img,
.logo-right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.bio {
    font-size: 1.1rem;
}

/* Унифицированное центрирование дочерних элементов */
.video-section > *,
.news-section > * {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Специфичные стили для видео */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Специфичные стили для изображений в новости */
.news-section img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #444;
}

/* Центрирование текстовых элементов */
.video-section p {
    font-size: 1.1rem;
}
.video-section h2,
.video-section h3,
.news-section p {
    font-size: 1.3rem;
}
.news-section h2,
.news-section h3 {
    font-size: 1.3rem;
    text-align: center;
}

.song-item {
    margin: 30px 0;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.songs-intro {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: normal;
    color: #fff;
}

.song-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid #555;
}

.footer a {
    color: #ddd;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 15px 20px;
    }
    .name-overlay .first-name { font-size: 2.2rem; }
    .name-overlay .last-name { font-size: 3.2rem; }
    .logo-right { width: 60px; right: 20px; top: 10px; }
    .logo-left { width: 80px; left: 20px; top: 10px; }
}