:root {
    --primary: #ec1e27;
    --white: #ffffff;
    --black: #0a0a0a;
    --gray: #1a1a1a;
    --gray-light: #2a2a2a;
    --accent: #ff4444;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--black);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 0.5rem;
    background: rgba(236, 30, 39, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
    border-radius: 50px;
    padding: 0.3rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
}

.lang-btn:hover {
    color: var(--white);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(236, 30, 39, 0.2);
}

.logo-container {
    width: 50px;
    height: 50px;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
    filter: grayscale(30%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23ec1e27" opacity="0.1"/></svg>');
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(236, 30, 39, 0.2) 0%, rgba(10, 10, 10, 0.7) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease;
}

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

.glitch-wrapper {
    margin-bottom: 1rem;
}

.glitch {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    letter-spacing: 10px;
    color: var(--white);
    position: relative;
    animation: glitch 3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--primary);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-anim {
    0% { clip: rect(15px, 9999px, 94px, 0); }
    20% { clip: rect(73px, 9999px, 140px, 0); }
    40% { clip: rect(8px, 9999px, 20px, 0); }
    60% { clip: rect(121px, 9999px, 67px, 0); }
    80% { clip: rect(36px, 9999px, 103px, 0); }
    100% { clip: rect(69px, 9999px, 6px, 0); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Courier Prime', monospace;
    color: var(--primary);
    font-size: 1.2rem;
}

.location-pin {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--primary);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--gray) 50%, var(--black) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border: 3px solid var(--primary);
    padding: 1rem;
    background: var(--gray-light);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.image-frame:hover {
    transform: rotate(0deg);
}

.duo-photo {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.duo-photo:hover {
    filter: grayscale(0%);
}

.image-caption {
    margin-top: 1rem;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.member-name {
    color: var(--white);
}

.member-role {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.member-separator {
    color: var(--primary);
    font-size: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-block {
    margin-bottom: 3rem;
}

.story-paragraph {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.logo-story {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(236, 30, 39, 0.05);
    border-left: 4px solid var(--primary);
    margin-top: 2rem;
}

.logo-inline {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--gray-light);
    border: 1px solid rgba(236, 30, 39, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(236, 30, 39, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* PIESEK Section */
.piesek-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.piesek-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(236, 30, 39, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.piesek-header {
    text-align: center;
    margin-bottom: 4rem;
}

.piesek-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.piesek-tag.new-badge {
    animation: pulseBadge 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(236, 30, 39, 0.5);
}

@keyframes pulseBadge {
    0%, 100% {
        box-shadow: 0 0 20px rgba(236, 30, 39, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(236, 30, 39, 0.8);
        transform: scale(1.05);
    }
}

.piesek-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 15vw, 12rem);
    letter-spacing: 20px;
    color: var(--primary);
    text-shadow: 0 0 50px rgba(236, 30, 39, 0.5);
    margin-bottom: 1rem;
}

.piesek-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-style: italic;
}

.piesek-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--gray-light);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(236, 30, 39, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(236, 30, 39, 0.05);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.piesek-player {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: var(--gray-light);
    border: 2px solid var(--primary);
    margin-bottom: 2rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.player-placeholder {
    background: var(--gray-light);
    padding: 4rem 2rem;
    text-align: center;
    border: 2px dashed rgba(236, 30, 39, 0.3);
}

.vinyl-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.player-placeholder p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.custom-video-player {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.local-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--black);
    border: 4px solid var(--primary);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 0 2px var(--black), 0 0 0 4px rgba(236, 30, 39, 0.3);
}

.local-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: contrast(1.1) saturate(1.2);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.video-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(236, 30, 39, 0.05) 2px,
        rgba(236, 30, 39, 0.05) 4px
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-overlay:hover::before {
    opacity: 1;
}

.video-overlay:hover {
    background: rgba(10, 10, 10, 0.3);
}

.play-btn-circle-large {
    width: 90px;
    height: 90px;
    border-radius: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary);
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(236, 30, 39, 0.5),
        inset 0 0 20px rgba(236, 30, 39, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    position: relative;
    z-index: 2;
}

.play-btn-circle-large::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 15px 15px;
    border-color: transparent transparent var(--primary) transparent;
}

.video-overlay:hover .play-btn-circle-large {
    transform: rotate(-2deg) scale(1.05);
    background: rgba(236, 30, 39, 0.1);
    border-color: var(--white);
    box-shadow: 
        0 0 30px rgba(236, 30, 39, 0.8),
        inset 0 0 30px rgba(236, 30, 39, 0.2);
}

.video-overlay:hover .play-btn-circle-large::after {
    border-color: transparent transparent var(--white) transparent;
}

.play-btn-circle-large i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-left: 6px;
    transition: color 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(236, 30, 39, 0.8));
}

.video-overlay:hover .play-btn-circle-large i {
    color: var(--white);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    border-top: 1px solid rgba(236, 30, 39, 0.3);
}

.local-video-container:hover .video-controls,
.local-video-container.playing .video-controls:hover {
    opacity: 1;
}

.control-btn {
    background: transparent;
    border: 1px solid rgba(236, 30, 39, 0.3);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 6px 10px;
    font-family: 'Bebas Neue', sans-serif;
}

.control-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(236, 30, 39, 0.1);
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    position: relative;
    border-radius: 0;
    overflow: visible;
    border: 1px solid rgba(236, 30, 39, 0.2);
}

.progress-filled {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, #ff4444 100%);
    width: 0;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(236, 30, 39, 0.8);
    position: relative;
}

.progress-filled::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../img/logotype/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 5px rgba(236, 30, 39, 0.8));
    cursor: grab;
    z-index: 10;
}

.progress-filled::after:active {
    cursor: grabbing;
}

.progress-bar:hover {
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
}

.time-display {
    font-family: 'Courier Prime', monospace;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    min-width: 90px;
    text-align: right;
    letter-spacing: 1px;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 3px solid var(--primary);
    background: var(--gray-light);
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.7);
}

.video-thumbnail:hover img {
    transform: scale(1.05);
    filter: brightness(0.5);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.video-thumbnail:hover .play-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.play-btn-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(236, 30, 39, 0.5);
}

.video-thumbnail:hover .play-btn-circle {
    transform: scale(1.2);
    box-shadow: 0 0 50px rgba(236, 30, 39, 0.8);
}

.play-btn-circle i {
    font-size: 2.5rem;
    color: var(--white);
    margin-left: 5px;
}

.video-info {
    text-align: center;
    margin-top: 2rem;
}

.video-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.watch-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    color: var(--primary);
    padding: 15px 40px;
    border: 3px solid var(--primary);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.watch-video-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.watch-video-btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(236, 30, 39, 0.4);
}

.watch-video-btn:hover::before {
    left: 0;
}

.watch-video-btn i.fas {
    transition: transform 0.3s ease;
}

.watch-video-btn:hover i.fas {
    transform: translateX(5px);
}

.streaming-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stream-btn {
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.stream-btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Featured Songs Section */
.featured-songs-section {
    background: var(--gray);
    position: relative;
}

.featured-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.featured-tracks-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.track-card {
    background: var(--gray-light);
    padding: 2rem;
    border: 1px solid rgba(236, 30, 39, 0.2);
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
}

.track-card:hover {
    background: rgba(236, 30, 39, 0.05);
    border-color: var(--primary);
    transform: translateX(10px);
}

.track-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary);
    text-align: center;
    line-height: 1;
}

.track-info {
    flex: 1;
}

.track-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.track-album {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.track-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.track-actions {
    display: flex;
    gap: 1rem;
}

.track-btn {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.track-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.play-btn {
    border-radius: 50%;
}

.video-btn {
    border-radius: 0;
}

/* Music Section */
.music-section {
    background: var(--gray);
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.release-card {
    background: var(--gray-light);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(236, 30, 39, 0.2);
    transition: all 0.3s ease;
}

.release-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(236, 30, 39, 0.3);
}

.release-artwork {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 1.5rem;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(236, 30, 39, 0.2);
    overflow: hidden;
}

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

.artwork-placeholder {
    font-size: 6rem;
}

.release-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.release-type {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.release-year {
    color: var(--primary);
    font-family: 'Courier Prime', monospace;
    margin-top: 0.5rem;
}

.album-links {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.album-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid rgba(236, 30, 39, 0.3);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.album-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px) rotate(5deg);
}

.album-link i {
    font-size: 1.2rem;
}

.coming-soon {
    opacity: 0.7;
}

.release-card.featured {
    position: relative;
}

.release-card.featured::before {
    content: 'NEW';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: 0.9rem;
    z-index: 1;
}

/* Merch Section */
.merch-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--black) 0%, #1a0000 100%);
    position: relative;
    overflow: hidden;
}

.merch-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(236, 30, 39, 0.03) 2px,
            rgba(236, 30, 39, 0.03) 4px
        );
    pointer-events: none;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.merch-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.merch-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    transform: rotate(-2deg);
}

.merch-photo {
    position: relative;
    border: 3px solid var(--white);
    box-shadow: 
        5px 5px 0 rgba(236, 30, 39, 0.3),
        10px 10px 20px rgba(0, 0, 0, 0.5);
    transform: rotate(3deg);
    transition: all 0.3s ease;
    background: var(--white);
    padding: 10px;
}

.merch-photo.large {
    grid-column: span 2;
    transform: rotate(-1deg);
}

.merch-photo:nth-child(2) {
    transform: rotate(-4deg) translateY(20px);
}

.merch-photo:nth-child(3) {
    transform: rotate(2deg) translateY(-10px);
}

.merch-photo:hover {
    transform: rotate(0deg) scale(1.05) translateZ(0);
    box-shadow: 
        8px 8px 0 rgba(236, 30, 39, 0.5),
        15px 15px 30px rgba(0, 0, 0, 0.7);
    z-index: 10;
}

.merch-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.1) saturate(0.9);
}

.merch-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.merch-photo:hover .merch-overlay {
    transform: translateY(0);
}

.merch-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 1.2;
    display: block;
    text-align: center;
}

.merch-content {
    position: relative;
}

.merch-text {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(236, 30, 39, 0.3);
    padding: 50px;
    position: relative;
}

.merch-text::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--primary));
    opacity: 0.1;
    z-index: -1;
}

.merch-statement {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.merch-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.merch-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--white);
}

.merch-feature i {
    color: var(--primary);
    font-size: 1.5rem;
    width: 30px;
}

.merch-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--primary);
    color: var(--black);
    padding: 20px 40px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 3px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.merch-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.3s ease;
    z-index: -1;
}

.merch-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.merch-link:hover::before {
    left: 0;
}

.merch-link i {
    transition: transform 0.3s ease;
}

.merch-link:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 968px) {
    .merch-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .merch-statement {
        font-size: 2rem;
    }
    
    .merch-text {
        padding: 30px;
    }
}

@media (max-width: 568px) {
    .merch-collage {
        grid-template-columns: 1fr;
    }
    
    .merch-photo.large {
        grid-column: span 1;
    }
    
    .merch-statement {
        font-size: 1.5rem;
    }
    
    .merch-link {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Live Section */
.live-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--gray) 100%);
}

.live-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.shows-container {
    margin-bottom: 5rem;
}

.subsection-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-align: center;
}

.shows-list {
    max-width: 900px;
    margin: 0 auto;
}

.show-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 2rem;
    padding: 2rem;
    background: var(--gray-light);
    border: 1px solid rgba(236, 30, 39, 0.2);
    margin-bottom: 1rem;
    align-items: center;
    transition: all 0.3s ease;
}

.show-item:hover {
    background: rgba(236, 30, 39, 0.05);
    border-color: var(--primary);
    transform: translateX(10px);
}

.show-date {
    text-align: center;
    border-right: 2px solid var(--primary);
    padding-right: 2rem;
}

.date-day {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
}

.date-month {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.show-venue {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.show-location {
    color: var(--text-secondary);
}

.notify-btn,
.ticket-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.notify-btn:hover,
.ticket-btn:hover {
    background: var(--accent);
    transform: scale(1.05);
}

.live-gallery {
    margin-top: 5rem;
}

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

.gallery-item {
    aspect-ratio: 4/3;
    background: var(--gray-light);
    border: 2px dashed rgba(236, 30, 39, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    background: rgba(236, 30, 39, 0.05);
    border-color: var(--primary);
}

.gallery-content {
    font-size: 4rem;
}

.gallery-item p {
    color: var(--text-secondary);
}

/* Fan Zone */
.fan-zone {
    background: var(--gray);
    position: relative;
}

.fan-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(236, 30, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.fan-title {
    color: var(--primary);
}

.fan-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.fan-upload-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.upload-card {
    background: var(--gray-light);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(236, 30, 39, 0.2);
    transition: all 0.3s ease;
}

.upload-card:hover {
    background: rgba(236, 30, 39, 0.05);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.upload-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.upload-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.upload-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.upload-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-btn:hover {
    background: var(--accent);
    transform: scale(1.05);
}

.fan-gallery-section {
    margin-bottom: 5rem;
}

.fan-submissions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.submission-item {
    aspect-ratio: 1;
}

.submission-content {
    width: 100%;
    height: 100%;
    background: var(--gray-light);
    border: 2px dashed rgba(236, 30, 39, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.placeholder-icon {
    font-size: 5rem;
}

.submission-content p {
    color: var(--text-secondary);
}

.fan-wall {
    max-width: 900px;
    margin: 0 auto;
}

.message-input-container {
    margin-bottom: 3rem;
}

.message-input {
    width: 100%;
    min-height: 120px;
    background: var(--gray-light);
    border: 1px solid rgba(236, 30, 39, 0.2);
    color: var(--white);
    padding: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 1rem;
}

.message-input:focus {
    outline: none;
    border-color: var(--primary);
}

.post-message-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.post-message-btn:hover {
    background: var(--accent);
}

.messages-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-item {
    background: var(--gray-light);
    padding: 1.5rem;
    border-left: 3px solid var(--primary);
}

.message-author {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.message-text {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.message-time {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: 'Courier Prime', monospace;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, var(--gray) 0%, var(--black) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3,
.newsletter-signup h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    border: 1px solid rgba(236, 30, 39, 0.2);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.contact-email {
    padding: 1.5rem;
    background: var(--gray-light);
    border-left: 3px solid var(--primary);
}

.contact-email strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-email a {
    color: var(--primary);
    text-decoration: none;
    font-family: 'Courier Prime', monospace;
}

.contact-email a:hover {
    text-decoration: underline;
}

.newsletter-signup p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    background: var(--gray-light);
    border: 1px solid rgba(236, 30, 39, 0.2);
    color: var(--white);
    padding: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent);
}

/* Footer */
.footer {
    background: var(--black);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(236, 30, 39, 0.2);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-text {
    text-align: center;
}

.footer-text p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-location {
    color: var(--primary);
    font-family: 'Courier Prime', monospace;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(236, 30, 39, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.footer-bottom > p {
    margin: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.footer-credit a {
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    margin-left: 0.3rem;
}

.footer-credit a:hover {
    opacity: 1;
}

.credit-logo {
    height: 24px;
    width: auto;
    display: block;
}

.heart-beat {
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
    color: var(--primary);
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.2);
    }
    20%, 40% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-credit {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    background: var(--gray);
    margin: 5% auto;
    padding: 3rem;
    border: 2px solid var(--primary);
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--primary);
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upload-form input,
.upload-form textarea {
    background: var(--gray-light);
    border: 1px solid rgba(236, 30, 39, 0.2);
    color: var(--white);
    padding: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
}

.upload-form textarea {
    min-height: 150px;
    resize: vertical;
}

.upload-form input:focus,
.upload-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload label {
    display: block;
    background: var(--gray-light);
    border: 2px dashed rgba(236, 30, 39, 0.3);
    color: var(--text-secondary);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.file-upload label:hover {
    background: rgba(236, 30, 39, 0.05);
    border-color: var(--primary);
    color: var(--white);
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--accent);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .piesek-features {
        grid-template-columns: 1fr;
    }
    
    .track-card {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }
    
    .track-actions {
        grid-column: 2;
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

/* Fan Photos Section */
.fan-photos-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.fan-upload-section {
    text-align: center;
    margin-bottom: 3rem;
}

.upload-toggle-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.upload-toggle-btn:hover {
    background: #ff0000;
    transform: translateY(-2px);
}

.fan-upload-form {
    background: rgba(236, 30, 39, 0.1);
    border: 2px solid rgba(236, 30, 39, 0.3);
    padding: 2rem;
    margin: 2rem auto 0;
    max-width: 600px;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input[type="text"],
.form-group input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(236, 30, 39, 0.3);
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.form-group input[type="file"] {
    cursor: pointer;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.submit-btn,
.cancel-btn {
    padding: 0.75rem 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn {
    background: var(--primary);
    color: white;
}

.submit-btn:hover {
    background: #ff0000;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cancel-btn {
    background: transparent;
    color: var(--primary);
}

.cancel-btn:hover {
    background: rgba(236, 30, 39, 0.1);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
}

.form-message.success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff0000;
}

.fan-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.fan-photo-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border: 2px solid rgba(236, 30, 39, 0.2);
    transition: all 0.3s ease;
}

.fan-photo-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.fan-photo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.fan-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fan-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 1.5rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fan-photo-item:hover .fan-photo-overlay {
    opacity: 1;
}

.fan-photo-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fan-photo-author {
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fan-photo-author i {
    color: var(--primary);
}

.no-photos {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .fan-photos-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
}

/* 404 Error Page */
.error-404-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 10, 10, 0.95) 100%);
}

.error-404-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.error-404-visual {
    text-align: center;
    position: relative;
}

.error-404-logo {
    width: 200px;
    height: 200px;
    opacity: 0.15;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
}

.error-404-title {
    font-size: 12rem;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary);
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 30px rgba(236, 30, 39, 0.5);
    position: relative;
    z-index: 1;
}

.error-404-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
}

.error-404-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.error-404-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button, .cta-button-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    text-decoration: none;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.cta-button {
    background: var(--primary);
    color: white;
}

.cta-button:hover {
    background: transparent;
    color: var(--primary);
}

.cta-button-secondary {
    background: transparent;
    color: var(--primary);
}

.cta-button-secondary:hover {
    background: var(--primary);
    color: white;
}

.error-404-suggestions {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(236, 30, 39, 0.2);
}

.error-404-suggestions h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--text-secondary);
}

.error-404-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.error-404-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.error-404-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.error-404-links a:hover::after {
    width: 100%;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@media (max-width: 992px) {
    .error-404-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .error-404-title {
        font-size: 8rem;
    }
    
    .error-404-logo {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .error-404-title {
        font-size: 6rem;
    }
    
    .error-404-text h2 {
        font-size: 2rem;
    }
    
    .error-404-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .error-404-actions {
        flex-direction: column;
    }
    
    .cta-button, .cta-button-secondary {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: right 0.3s ease;
        padding: 2rem 0;
        border-top: 1px solid rgba(236, 30, 39, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .burger {
        display: flex;
    }
    
    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.active .line2 {
        opacity: 0;
    }
    
    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .show-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .show-date {
        border-right: none;
        border-bottom: 2px solid var(--primary);
        padding-right: 0;
        padding-bottom: 1rem;
    }
    
    .language-toggle {
        top: 1rem;
        right: 1rem;
    }
}

@media screen and (max-width: 480px) {
    section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-location {
        font-size: 1rem;
    }
}
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
    }
}