/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid #dc143c;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #dc143c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px #dc143c;
}

.nav-center {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-center a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.nav-center a:hover,
.nav-center a.active {
    color: #dc143c;
    border-bottom-color: #dc143c;
}

.social-header {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #dc143c;
    transform: scale(1.2);
}

/* Page Content */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(45deg, #000, #1a0000, #000);
    position: relative;
    margin-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="20" fill="none" stroke="%23dc143c" stroke-width="0.5" opacity="0.1"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23ffffff" stroke-width="0.3" opacity="0.05"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #dc143c;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* SEO Content Styles */
.main-content {
    padding-top: 40px;
}

.seo-content {
    background: rgba(220, 20, 60, 0.05);
    border: 1px solid rgba(220, 20, 60, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    line-height: 1.8;
}

.seo-content h1 {
    font-size: 2.5rem;
    color: #dc143c;
    margin-bottom: 30px;
    text-align: center;
}

.seo-content h2 {
    font-size: 1.8rem;
    color: #dc143c;
    margin: 40px 0 25px 0;
    border-bottom: 2px solid #dc143c;
    padding-bottom: 10px;
}

.seo-content h2:first-of-type {
    margin-top: 20px;
}

.seo-content > div {
    overflow: hidden;
}

.seo-content img {
    float: right;
    max-width: min(50vw, 600px);
    width: 100%;
    height: auto;
    margin-left: 1em;
}

@media (max-width: 768px) {
    .seo-content img {
        max-width: 100%;
        margin: 0 0 1em;
    }
}

.seo-content p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1rem;
    opacity: 0.9;
}

.seo-content a {
    color: #dc143c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.seo-content a:hover {
    color: #fff;
    text-shadow: 0 0 10px #dc143c;
}

/* Concert Dates */
.concerts {
    margin-bottom: 60px;
}

.concerts h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #dc143c;
}

.concert-regions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.region {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid #dc143c;
    border-radius: 10px;
    padding: 30px;
}

.region h3 {
    color: #dc143c;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.concert-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
}

.concert-date:last-child {
    border-bottom: none;
}

.date-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.date {
    font-weight: bold;
    color: #dc143c;
    min-width: 80px;
}

.venue-info {
    flex: 1;
}

.venue {
    font-weight: 500;
}

.city {
    opacity: 0.7;
    font-size: 0.9rem;
}

.status {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status.available {
    background: #dc143c;
    color: #fff;
}

.status.sold-out {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Albums Grid */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.album-card {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid #dc143c;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.album-card:hover {
    transform: translateY(-10px);
    background: rgba(220, 20, 60, 0.2);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3);
}

.album-cover {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #dc143c, #000, #dc143c);
    border-radius: 10px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

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

.album-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.album-card:hover .album-cover::before {
    transform: translateX(100%);
}

.album-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #dc143c;
}

.album-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.video-card {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid #dc143c;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 20, 60, 0.2);
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #dc143c, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumbnail:hover {
    background: linear-gradient(45deg, #ff1744, #dc143c);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    color: #dc143c;
    margin-bottom: 10px;
}

.video-info p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* About Sections */
.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #dc143c;
    margin-bottom: 30px;
    text-align: center;
}

.about-section h3 {
    font-size: 1.8rem;
    color: #dc143c;
    margin-bottom: 20px;
}

.about-content {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid #dc143c;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.about-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.fact-item {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid #dc143c;
    border-radius: 10px;
    padding: 20px;
}

.fact-item h4 {
    color: #dc143c;
    margin-bottom: 10px;
}

.members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.member-card {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid #dc143c;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #dc143c, #000);
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-card h4 {
    color: #dc143c;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.member-role {
    opacity: 0.8;
    margin-bottom: 10px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    overflow-y: auto;   
}

.modal-content {
    background-color: #000;
    border: 2px solid #dc143c;
    margin: 5% auto;
    padding: 30px;
    width: 80%;
    max-width: 600px;
    border-radius: 15px;
    position: relative;
}

.close {
    color: #dc143c;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close:hover {
    color: #fff;
}

.modal h3 {
    color: #dc143c;
    margin-bottom: 20px;
    font-size: 2rem;
}

.modal-album-cover {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #dc143c, #000, #dc143c);
    border-radius: 10px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
}

.tracklist {
    list-style: none;
}

.tracklist li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
    display: flex;
    justify-content: space-between;
}

.tracklist li:last-child {
    border-bottom: none;
}

.track-number {
    color: #dc143c;
    font-weight: bold;
    margin-right: 15px;
}

.track-name {
    flex: 1;
}

.track-duration {
    opacity: 0.7;
}

/* Footer */
footer {
    background: #000;
    border-top: 2px solid #dc143c;
    padding: 50px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #dc143c;
    text-decoration: none;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #dc143c;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #dc143c;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
    opacity: 0.7;
}

/* Дополнительные стили для интерактивности */
.fact-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.member-card {
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 20, 60, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-center {
        gap: 20px;
    }

    .social-header {
        gap: 10px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .concert-regions {
        grid-template-columns: 1fr;
    }

    .date-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .concert-date {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .facts-grid {
        grid-template-columns: 1fr;
    }

    .members {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-center {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .albums-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
}