/* ===== БАЗОВЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

/* ===== ПРЕЛОАДЕР ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(124, 58, 237, 0.1);
    border-top: 3px solid #7c3aed;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== АНИМИРОВАННЫЙ ФОН ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: floatOrb 25s ease-in-out infinite alternate;
}

.orb1 {
    width: 600px;
    height: 600px;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, #7c3aed, transparent);
    animation-delay: 0s;
}

.orb2 {
    width: 500px;
    height: 500px;
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, #ec4899, transparent);
    animation-delay: -7s;
}

.orb3 {
    width: 400px;
    height: 400px;
    top: 40%;
    left: 40%;
    background: radial-gradient(circle, #06b6d4, transparent);
    animation-delay: -14s;
}

.orb4 {
    width: 350px;
    height: 350px;
    bottom: 20%;
    left: 20%;
    background: radial-gradient(circle, #f59e0b, transparent);
    animation-delay: -20s;
    opacity: 0.15;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 80px) scale(1.2); }
}

/* ===== НАВИГАЦИЯ ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #ec4899);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.genre-badge {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    width: fit-content;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    background: linear-gradient(135deg, #ffffff 30%, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-bio {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn {
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #ffffff;
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    border-color: #7c3aed;
}

.btn-small {
    padding: 8px 24px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-small:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ===== HERO СТАТИСТИКА ===== */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== HERO ВИНИЛ ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vinyl-record {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #2a2a3a, #0a0a0f);
    border: 8px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 80px rgba(124, 58, 237, 0.2), inset 0 0 80px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 20s linear infinite;
    position: relative;
}

.vinyl-record::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border-radius: 50%;
    background: repeating-conic-gradient(
        rgba(255, 255, 255, 0.02) 0deg 10deg,
        rgba(255, 255, 255, 0.05) 10deg 20deg
    );
}

.vinyl-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #7c3aed, #ec4899);
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.4);
    position: relative;
    z-index: 1;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== СЕКЦИИ ===== */
.section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.sub-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 40px 0 24px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== ОБ ИСПОЛНИТЕЛЕ ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about-bio {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.about-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 3px solid #7c3aed;
    transition: all 0.3s;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
}

.timeline-year {
    font-weight: 700;
    font-size: 1.2rem;
    color: #7c3aed;
    min-width: 60px;
}

.timeline-event {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== ТРЕКИ ===== */
.track-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s;
    cursor: default;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(6px);
}

.track-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.track-number {
    color: rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 30px;
}

.track-title {
    font-weight: 500;
}

.track-album {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    padding: 2px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
}

.track-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.track-year {
    color: rgba(255, 255, 255, 0.15);
}

.play-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.3s;
    opacity: 0.2;
}

.track-item:hover .play-btn {
    opacity: 1;
}

.play-btn:hover {
    color: #7c3aed;
    transform: scale(1.2);
}

.play-btn.playing {
    color: #7c3aed;
    opacity: 1;
}

/* ===== АЛЬБОМЫ ===== */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.album-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.album-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.album-cover {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-icon {
    font-size: 3rem;
}

.album-info {
    padding: 20px;
}

.album-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.album-year {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}

/* ===== КОЛЛАБОРАЦИИ ===== */
.collaborations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.collab-card {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.collab-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.collab-cover {
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.collab-content {
    padding: 20px;
    flex: 1;
}

.collab-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.collab-artist {
    color: #7c3aed;
    font-weight: 500;
    margin-bottom: 8px;
}

.collab-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ===== КОНЦЕРТЫ ===== */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.show-card {
    padding: 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s;
}

.show-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.show-date {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7c3aed;
    font-weight: 600;
}

.show-venue {
    font-size: 1.2rem;
    font-weight: 600;
}

.show-city {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.show-status {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 100px;
    width: fit-content;
    margin: 8px 0;
}

.show-status.available {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.show-status.soon {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

/* ===== ПРОШЕДШИЕ КОНЦЕРТЫ ===== */
.past-shows-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.past-show-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s;
}

.past-show-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.past-date {
    min-width: 120px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

.past-venue {
    flex: 1;
    font-weight: 500;
}

.past-city {
    color: rgba(255, 255, 255, 0.3);
    min-width: 140px;
}

/* ===== ГАЛЕРЕЯ ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: rgba(124, 58, 237, 0.2);
}

.gallery-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-icon {
    font-size: 3rem;
    opacity: 0.3;
}

.gallery-caption {
    padding: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* ===== ОТЗЫВЫ ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
}

.testimonial-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== НОВОСТНАЯ РАССЫЛКА ===== */
.newsletter-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.05));
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.newsletter-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.newsletter-box p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #7c3aed;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

/* ===== КОНТАКТЫ ===== */
.contact-section {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.social-link {
    padding: 12px 28px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.06);
}

.social-link.spotify:hover { border-color: #1DB954; color: #1DB954; }
.social-link.apple:hover { border-color: #fa233b; color: #fa233b; }
.social-link.youtube:hover { border-color: #ff0000; color: #ff0000; }
.social-link.instagram:hover { border-color: #e4405f; color: #e4405f; }
.social-link.soundcloud:hover { border-color: #ff7700; color: #ff7700; }
.social-link.telegram:hover { border-color: #0088cc; color: #0088cc; }
.social-link.tiktok:hover { border-color: #ffffff; color: #ffffff; }

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.contact-icon {
    font-size: 1.2rem;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy p {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-bio {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .genre-badge {
        margin: 0 auto;
    }

    .vinyl-record {
        width: 240px;
        height: 240px;
    }

    .vinyl-inner {
        width: 60px;
        height: 60px;
    }

    .collab-card {
        flex-direction: column;
    }

    .collab-cover {
        min-height: 120px;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 8px 0;
        font-size: 1rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .track-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .track-meta {
        width: 100%;
        justify-content: space-between;
    }

    .shows-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .past-show-item {
        flex-wrap: wrap;
        gap: 8px;
    }

    .past-date {
        min-width: 100%;
    }

    .past-city {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 50px 0;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .newsletter-box {
        padding: 30px 20px;
    }

    .social-links {
        gap: 8px;
    }

    .social-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .contact-info {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
}