/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0A0A0A;
    color: #FFFFFF;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(90deg, #8A2BE2, #4B0082);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

.btn-outline {
    border: 2px solid #8A2BE2;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateY(-3px);
}

/* Хедер */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #8A2BE2;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Главный экран */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.2), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid #8A2BE2;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #8A2BE2;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Секции */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* Релизы */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.release-card {
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.release-image {
    position: relative;
    padding-bottom: 100%;
    background: linear-gradient(45deg, #8A2BE2, #4B0082);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.release-card:hover {
    transform: translateY(-10px);
}

.release-card:hover .play-btn {
    opacity: 1;
}

.release-info {
    padding: 20px;
}

/* Клипы */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-thumb {
    position: relative;
    padding-bottom: 56.25%;
    background: linear-gradient(45deg, #8A2BE2, #4B0082);
}

.duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    font-size: 12px;
}

.video-info {
    padding: 20px;
}

/* Концерты */
.tour-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.date-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.date-badge {
    text-align: center;
}

.date {
    font-size: 32px;
    font-weight: 700;
    color: #8A2BE2;
}

.month {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.sold-out {
    padding: 12px 24px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 4px;
    color: #ff4444;
}

/* Футер */
.footer {
    background: #0A0A0A;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    padding: 10px 20px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h3 {
    color: #8A2BE2;
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
}

/* Медиа-запросы */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .tour-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .date-info {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Добавляем новые стили для биографии */
.biography {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: linear-gradient(to right, rgba(10,10,10,0.95), rgba(10,10,10,0.8));
}

.biography-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.artist-photo {
    position: relative;
}

.photo-wrapper {
    position: relative;
    padding-bottom: 125%; /* Соотношение сторон 4:5 */
    background: linear-gradient(45deg, #8A2BE2, #4B0082);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.photo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    text-transform: uppercase;
}

.artist-info {
    padding: 20px;
}

.artist-info h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #fff, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.artist-description {
    margin-bottom: 40px;
}

.artist-description p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.artist-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item .number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #8A2BE2;
    margin-bottom: 5px;
}

.stat-item .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Обновляем медиа-запросы */
@media (max-width: 1024px) {
    .biography-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .photo-wrapper {
        padding-bottom: 75%; /* Соотношение сторон 4:3 для планшетов */
        max-width: 500px;
        margin: 0 auto;
    }

    .artist-info {
        text-align: center;
    }

    .artist-description {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .biography {
        padding: 100px 0 60px;
    }

    .artist-info h1 {
        font-size: 36px;
    }

    .artist-description p {
        font-size: 16px;
    }

    .artist-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-item .number {
        font-size: 28px;
    }
}

.footer-logo .logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.footer-logo .logo:hover {
    color: #8A2BE2;
} 