* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #12122a;
    --neon-pink: #ff2d95;
    --neon-cyan: #00f5ff;
    --neon-yellow: #fff200;
    --text-white: #ffffff;
    --text-gray: #b0b0c0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0a1628 100%);
    color: var(--text-white);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img, iframe, video {
    max-width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 45, 149, 0.2);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 0.6rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

.nav a {
    font-size: 0.82rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
    padding: 0.4rem 0.55rem;
    border-radius: 4px;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--neon-cyan);
    background: rgba(0, 245, 255, 0.1);
}

.nav a.active {
    color: var(--neon-pink);
    background: rgba(255, 45, 149, 0.15);
}

/* Main content */
main {
    padding-top: 80px;
}

/* Hero section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(to bottom, rgba(10, 10, 26, 0.85), rgba(10, 10, 26, 0.95)),
        url('./images/concert-bg.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(255, 45, 149, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 242, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 45, 149, 0.5));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(0, 245, 255, 0.5));
    }
}

.hero .subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-pink), #ff6b35);
    color: white;
    box-shadow: 0 4px 25px rgba(255, 45, 149, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(255, 45, 149, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
}

.btn-secondary:hover {
    background: var(--neon-cyan);
    color: var(--bg-primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(0, 245, 255, 0.4);
}

.btn-ticket {
    background: linear-gradient(135deg, var(--neon-yellow), #ffcc00);
    color: #0a0a1a;
    font-weight: 700;
}

.btn-ticket:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(255, 242, 0, 0.5);
}

/* Sections */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title span {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About section */
.about {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Cities grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.city-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.city-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 45, 149, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.city-card:hover::before {
    transform: scaleX(1);
}

.city-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.city-card .venue {
    color: var(--neon-cyan);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.city-card .date {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

/* City page hero */
.city-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    background: 
        linear-gradient(to bottom, rgba(10, 10, 26, 0.85), rgba(10, 10, 26, 0.95)),
        url('./images/concert-bg.jpg') center/cover no-repeat;
}

.city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(255, 45, 149, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 0%, rgba(0, 245, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.city-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.city-hero .tour-name {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.info-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 45, 149, 0.2);
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.info-block .info-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    color: var(--text-gray);
}

.info-row .value {
    color: var(--neon-yellow);
    font-weight: 600;
    text-align: right;
}

/* Concert info section */
.concert-info {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.concert-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neon-pink);
}

.concert-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Venue section */
.venue-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border: 1px solid rgba(0, 245, 255, 0.1);
}

.venue-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.venue-section p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Back link */
.back-link {
    text-align: center;
    padding: 2rem;
}

.back-link a {
    color: var(--text-gray);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: var(--neon-pink);
}

/* How to find dates */
.dates-info {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    margin: 2rem;
    border-radius: 16px;
}

.dates-info p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 45, 149, 0.1);
    margin-top: 4rem;
}

.footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--neon-cyan);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--neon-pink);
}

.footer .note {
    font-size: 0.8rem;
    color: rgba(176, 176, 192, 0.6);
    margin-top: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1200;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav {
        gap: 0.4rem;
    }
    
    .nav a {
        font-size: 0.78rem;
        padding: 0.35rem 0.5rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.75rem 1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none !important;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100vh - 56px);
        background: rgba(10, 10, 26, 0.98);
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0.75rem 1rem 2rem;
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1105;
        backdrop-filter: blur(15px);
    }
    
    .nav.active {
        display: flex !important;
    }
    
    .nav a {
        padding: 0.9rem 1rem;
        text-align: left;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        white-space: normal;
        display: block;
    }
    
    .nav > a:last-child,
    .nav > .nav-item:last-child > a {
        border-bottom: none;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item > a {
        font-size: 1rem;
        padding: 0.9rem 1rem;
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-dropdown {
        position: static;
        display: none;
        border: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.02);
        min-width: auto;
        padding: 0;
        border-radius: 0;
        backdrop-filter: none;
    }

    .nav-item .nav-dropdown {
        display: none !important;
    }

    .nav-item.open .nav-dropdown {
        display: block !important;
    }

    .nav-dropdown a {
        display: block;
        padding: 0.75rem 1rem 0.75rem 2rem;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        border-radius: 0;
    }
    
    .hero {
        min-height: auto;
        padding: 3rem 1.25rem;
    }

    .hero h1 {
        letter-spacing: 2px;
    }
    
    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .city-card {
        padding: 1.5rem;
    }
    
    .info-block {
        max-width: 100%;
        margin: 0 0 2rem;
        padding: 1.5rem;
    }
    
    .about {
        margin: 1rem;
        padding: 1.5rem 1.25rem;
    }

    .concert-info {
        padding: 2.5rem 1.25rem;
    }

    .concert-info h2 {
        font-size: 1.5rem;
    }

    .venue-section {
        margin: 1rem;
        padding: 1.5rem;
    }

    .venue-section h2 {
        font-size: 1.3rem;
    }

    .city-hero {
        min-height: auto;
        padding: 5rem 1.25rem 3rem;
    }

    .city-hero .tour-name {
        font-size: 1.1rem;
    }

    .page-hero {
        min-height: auto;
        padding: 5rem 1.25rem 3rem;
    }

    .section {
        padding: 3rem 1.25rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .dates-info {
        margin: 1rem;
        padding: 2.5rem 1.25rem;
    }

    .footer {
        padding: 1.5rem 1rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-ticket {
        font-size: 0.85rem;
        padding: 0.8rem 1.5rem;
    }

    .video-container iframe {
        border-radius: 12px;
    }

    .music-widget iframe {
        height: 350px !important;
    }

    .song-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .song-block h3 {
        font-size: 1.3rem;
    }

    .chord-block {
        padding: 1.5rem;
    }

    .chord-block h3 {
        font-size: 1.2rem;
    }

    .album-block {
        padding: 1.5rem;
    }

    .album-block h3 {
        font-size: 1.2rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .warning-block {
        padding: 1.25rem;
    }

    .btn-stream {
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .bar-menu-item {
        padding: 1.25rem;
    }

    .contact-form-wrapper {
        padding: 0 0.25rem;
    }

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

    .contact-card {
        padding: 1.5rem;
    }

    .tickets-block {
        padding: 2rem 1.25rem;
    }

    .seo-links {
        padding: 2rem 1.25rem;
    }

    .page-photo-highlight {
        margin: 2rem 0.75rem;
        padding: 0.75rem;
        border-radius: 16px;
    }

    .photo-highlight-card img {
        border-radius: 12px;
        max-height: 300px;
        object-fit: cover;
    }

    .photo-highlight-caption {
        font-size: 0.85rem;
        padding: 0 0.25rem;
    }

    #scroll-to-top {
        width: 44px;
        height: 44px;
        bottom: 15px;
        right: 15px;
        font-size: 1.2rem;
    }

    .schedule-table {
        display: block;
    }

    .schedule-table thead {
        display: none;
    }

    .schedule-table tbody {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .schedule-table tbody tr {
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 45, 149, 0.15);
        border-radius: 12px;
        padding: 1rem 1.2rem;
        gap: 0.5rem;
    }

    .schedule-table tbody tr:hover {
        transform: none;
    }

    .schedule-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.4rem 0;
        font-size: 0.95rem;
        white-space: normal;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .schedule-table tbody td:last-child {
        border-bottom: none;
        justify-content: center;
        padding-top: 0.6rem;
    }

    .schedule-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--neon-cyan);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        flex-shrink: 0;
        margin-right: 1rem;
    }

    .schedule-table tbody td:last-child::before {
        display: none;
    }

    .schedule-table .btn-sm {
        width: 100%;
        text-align: center;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

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

    .streaming-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .bar-menu-grid {
        grid-template-columns: 1fr;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
    }

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

    .form-success {
        padding: 2rem 1rem;
    }

    .tickets-block {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .btn {
        padding: 0.75rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 2.5rem 1rem;
    }
    
    .section {
        padding: 2.5rem 1rem;
    }

    .city-hero h1,
    .page-hero h1 {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .info-row {
        flex-direction: column;
        gap: 0.25rem;
        text-align: left;
    }

    .info-row .value {
        text-align: left;
    }

    .hit-item {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
    }

    .photo-item-wide img {
        max-height: 250px;
    }

    .page-photo-highlight {
        margin: 1.5rem 0.5rem;
        padding: 0.5rem;
    }

    .photo-highlight-card img {
        max-height: 220px;
        border-radius: 10px;
    }

    .photo-highlight-caption {
        font-size: 0.8rem;
    }

    .about {
        margin: 0.5rem;
        padding: 1.25rem 1rem;
    }

    .about p {
        font-size: 1rem;
    }

    .dates-info {
        margin: 0.5rem;
        padding: 2rem 1rem;
    }

    .concert-info {
        padding: 2rem 1rem;
    }

    .concert-info h2 {
        font-size: 1.3rem;
    }

    .venue-section {
        margin: 0.5rem;
        padding: 1.25rem 1rem;
    }

    .venue-section h2 {
        font-size: 1.2rem;
    }

    .section-title {
        letter-spacing: 1px;
    }

    .song-block {
        padding: 1.25rem 1rem;
    }

    .song-block h3 {
        font-size: 1.2rem;
    }

    .chord-block {
        padding: 1.25rem 1rem;
    }

    .album-block {
        padding: 1.25rem 1rem;
    }

    .review-card {
        padding: 1.25rem 1rem;
    }

    .warning-block {
        padding: 1rem;
    }

    .btn-stream {
        padding: 0.75rem 1.2rem;
        font-size: 0.8rem;
    }

    .bar-menu-item {
        padding: 1rem;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .footer {
        padding: 1.25rem 0.75rem;
    }

    .footer p {
        font-size: 0.8rem;
    }

    .seo-links {
        padding: 1.5rem 1rem;
    }

    .city-hero {
        padding: 4.5rem 1rem 2.5rem;
    }

    .page-hero {
        padding: 4.5rem 1rem 2.5rem;
    }

    .info-block {
        max-width: 100%;
        margin: 0 0 1.5rem;
        padding: 1.25rem 1rem;
    }

    .city-card {
        padding: 1.25rem;
    }

    .city-card h3 {
        font-size: 1.5rem;
    }

    .music-widget iframe {
        height: 300px !important;
    }
}

/* Video */
.video-container {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.video-container iframe {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16/9;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Video cover */
.video-cover {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.video-cover img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.video-cover .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 45, 149, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-cover:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 45, 149, 0.6);
}

/* Hits list */
.hits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.hit-item {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 45, 149, 0.1);
    border: 1px solid rgba(255, 45, 149, 0.3);
    border-radius: 50px;
    color: var(--text-white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hit-item:hover {
    background: var(--neon-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 45, 149, 0.4);
}

.music-widget iframe {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(255, 45, 149, 0.3);
}

/* Merch */
.merch-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Nav dropdown */
@media (min-width: 769px) {
    .nav-item {
        position: relative;
    }

    .nav-item > a {
        font-size: 0.9rem;
        color: var(--text-gray);
        transition: all 0.3s ease;
        padding: 0.5rem 0.75rem;
        border-radius: 4px;
        cursor: pointer;
    }

    .nav-item > a:hover {
        color: var(--neon-cyan);
        background: rgba(0, 245, 255, 0.1);
    }

    .nav-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(10, 10, 26, 0.98);
        border: 1px solid rgba(255, 45, 149, 0.2);
        border-radius: 12px;
        padding: 0.5rem;
        min-width: 260px;
        z-index: 1002;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
    }

    .nav-item:hover .nav-dropdown {
        display: block;
    }

    .nav-dropdown a {
        display: block;
        padding: 0.6rem 1rem;
        color: var(--text-gray);
        font-size: 0.85rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-dropdown a:hover {
        color: var(--neon-cyan);
        background: rgba(0, 245, 255, 0.1);
    }
}

/* Schedule table */
.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.schedule-table thead th {
    background: rgba(255, 45, 149, 0.15);
    color: var(--neon-cyan);
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 45, 149, 0.3);
}

.schedule-table tbody tr {
    transition: all 0.3s ease;
}

.schedule-table tbody tr:hover {
    background: rgba(255, 45, 149, 0.08);
    transform: scale(1.01);
}

.schedule-table tbody td {
    padding: 1rem 1.5rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.schedule-table tbody td:first-child {
    color: var(--text-white);
    font-weight: 600;
}

.schedule-table .btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
}

/* Info cards grid */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 45, 149, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 45, 149, 0.1);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--neon-cyan);
}

.info-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Song lyrics blocks */
.song-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.song-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.song-block:hover {
    border-color: rgba(255, 45, 149, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 45, 149, 0.05);
    transform: translateY(-3px);
}

.song-block:hover::after {
    opacity: 1;
}

.song-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.song-block .song-description {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.song-block .lyrics-section {
    margin-bottom: 1.5rem;
}

.song-block .lyrics-label {
    color: var(--neon-cyan);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.song-block .lyrics-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    white-space: pre-line;
    font-style: italic;
}

/* Accordion block for chords */
.chord-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.chord-block:hover {
    border-color: rgba(0, 245, 255, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 245, 255, 0.05);
    transform: translateY(-3px);
}

.chord-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chord-block p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.chord-names {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.chord-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 50px;
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chord-badge:hover {
    background: rgba(0, 245, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.2);
    transform: translateY(-2px);
}

/* Album block */
.album-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.album-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neon-pink), var(--neon-cyan));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.album-block:hover {
    border-color: rgba(255, 45, 149, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 45, 149, 0.05);
    transform: translateY(-3px);
}

.album-block:hover::before {
    opacity: 1;
}

.album-block h3 {
    font-size: 1.4rem;
    color: var(--neon-pink);
    margin-bottom: 0.3rem;
}

.album-block .album-year {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.album-block p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Review cards */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: rgba(255, 45, 149, 0.15);
    font-family: serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 45, 149, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 45, 149, 0.08);
}

.review-card .review-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.review-card .review-author {
    color: var(--neon-cyan);
    font-weight: 600;
    font-size: 0.9rem;
}

.review-card .review-city {
    color: var(--text-gray);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Warning block */
.warning-block {
    background: rgba(255, 242, 0, 0.05);
    border: 1px solid rgba(255, 242, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.warning-block::before {
    content: '⚠';
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.warning-block p {
    color: var(--neon-yellow);
    font-size: 1rem;
    line-height: 1.7;
    display: inline;
}

/* Streaming buttons */
.streaming-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.btn-stream {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-stream.yandex {
    background: linear-gradient(135deg, #ffdb4d, #ff6b00);
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 219, 77, 0.3);
}

.btn-stream.yandex:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 219, 77, 0.5);
}

.btn-stream.vk {
    background: linear-gradient(135deg, #5181b8, #7eb3e0);
    color: #fff;
    box-shadow: 0 4px 20px rgba(81, 129, 184, 0.3);
}

.btn-stream.vk:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(81, 129, 184, 0.5);
}

/* Bar menu items */
.bar-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.bar-menu-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.bar-menu-item:hover {
    border-color: rgba(255, 45, 149, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.bar-menu-item h4 {
    color: var(--neon-pink);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.bar-menu-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Page hero (for inner pages) */
.page-hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    background: 
        linear-gradient(to bottom, rgba(10, 10, 26, 0.85), rgba(10, 10, 26, 0.95)),
        url('./images/concert-bg.jpg') center/cover no-repeat;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(255, 45, 149, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 0%, rgba(0, 245, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
    position: relative;
    z-index: 1;
}

.page-hero .page-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

/* Fade in animation for content blocks */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 45, 149, 0.1); }
    50% { box-shadow: 0 0 40px rgba(255, 45, 149, 0.2); }
}

.animate-slide {
    animation: slideInLeft 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 3s ease-in-out infinite;
}

/* Contact page */
.contact-form-wrapper { max-width: 700px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { color: var(--neon-cyan); font-size: 0.95rem; font-weight: 600; }
.form-group input, .form-group textarea { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 1rem 1.2rem; color: var(--text-white); font-size: 1rem; font-family: inherit; transition: all 0.3s ease; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--neon-pink); box-shadow: 0 0 20px rgba(255,45,149,0.15); background: rgba(255,255,255,0.08); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(176,176,192,0.5); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-success { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; padding: 3rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(0,245,255,0.2); border-radius: 20px; text-align: center; }
.form-success .success-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; }
.form-success p { color: var(--text-gray); font-size: 1.15rem; line-height: 1.7; max-width: 500px; }
.contacts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 2rem; padding: 2rem 0; }
.contact-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 2.5rem; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; }
.contact-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan)); transform: scaleX(0); transition: transform 0.4s ease; }
.contact-card:hover { transform: translateY(-8px); border-color: rgba(255,45,149,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.contact-card:hover::before { transform: scaleX(1); }
.contact-icon { font-size: 2.5rem; margin-bottom: 1rem; color: var(--neon-cyan); display: flex; justify-content: center; align-items: center; }
.contact-icon svg { color: var(--neon-cyan); }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--text-white); }
.contact-link { color: var(--neon-pink); font-size: 1rem; font-weight: 600; transition: all 0.3s ease; display: inline-block; padding: 0.4rem 0; border-bottom: 1px solid transparent; }
.contact-link:hover { color: var(--neon-cyan); border-bottom-color: var(--neon-cyan); }
.tickets-block { max-width: 700px; margin: 0 auto; text-align: center; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,242,0,0.15); border-radius: 20px; padding: 3rem; }
.tickets-block p { color: var(--text-gray); font-size: 1.1rem; line-height: 1.8; margin-bottom: 2rem; }

/* Photo gallery */
.photo-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr)); gap: 2rem; padding: 2rem 0; }
.photo-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; transition: all 0.4s ease; }
.photo-item-wide { grid-column: 1 / -1; }
.photo-item:hover { transform: translateY(-8px); border-color: rgba(255,45,149,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.photo-item img { width: 100%; height: auto; display: block; object-fit: cover; }
.photo-item-wide img { max-height: 500px; }
.photo-item:not(.photo-item-wide) img { aspect-ratio: 16/10; }
.photo-caption { padding: 1rem 1.2rem; color: var(--text-gray); font-size: 0.9rem; line-height: 1.5; }

.page-photo-highlight {
    max-width: 1100px;
    margin: 4rem auto 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
}

.photo-highlight-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.photo-highlight-card img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    display: block;
}

.photo-highlight-caption {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
}

.photo-highlight-caption strong {
    color: var(--neon-cyan);
}

/* SEO internal links */
.seo-links { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.seo-links-title { color: var(--text-gray); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; opacity: 0.7; }
.seo-links-list { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; }
.seo-links-list a { color: var(--text-gray); font-size: 0.85rem; transition: color 0.3s ease; opacity: 0.8; }
.seo-links-list a:hover { color: var(--neon-cyan); opacity: 1; }

#scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--neon-pink);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 45, 149, 0.4);
    z-index: 1001;
}

#scroll-to-top:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 45, 149, 0.6);
}
