/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Cover Section */
.cover-section {
    min-height: 70vh;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #000;
    background-image: url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cover-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.cover-container {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    padding: 2rem 1.5rem;
}

.cover-content {
    margin-bottom: 0;
}

.cover-logo {
    margin-bottom: 2rem;
}

.logo-image {
    max-width: 400px;
    height: auto;
}

.cover-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(255, 107, 53, 0.6);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 107, 53, 0.8);
    color: #000;
    border-color: rgba(255, 107, 53, 0.9);
}

.cover-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: rgba(255, 107, 53, 0.8);
    color: #fff;
    border: 2px solid rgba(255, 107, 53, 0.6);
}

.btn-primary:hover {
    background: rgba(255, 140, 66, 0.9);
    border-color: rgba(255, 140, 66, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ff6b35;
    border: 2px solid rgba(255, 107, 53, 0.6);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.8);
    color: #000;
    border-color: rgba(255, 107, 53, 0.9);
}

.btn-orange {
    background: rgba(255, 107, 53, 0.8);
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    margin-left: 1rem;
    border: 2px solid rgba(255, 107, 53, 0.6);
}

.btn-orange:hover {
    background: rgba(255, 140, 66, 0.9);
    border-color: rgba(255, 140, 66, 0.8);
    transform: translateY(-2px);
}

/* Navigation */
.main-nav {
    position: relative;
    width: 100%;
    background: #000;
    padding: 2rem 0;
    z-index: 10;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.nav-content {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.nav-btn {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 107, 53, 0.6);
    border-radius: 8px;
    background: rgba(17, 17, 17, 0.8);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(5px);
}

.nav-btn:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

/* Language Switcher */
.top-controls {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    /* Styles moved to top-controls */
}

.dashboard-login {
    /* Admin login button styles */
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 6px;
    color: #10b981;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.login-btn:hover {
    background: rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.6);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.login-btn i {
    font-size: 1rem;
}

.login-btn span {
    display: none;
}

@media (min-width: 768px) {
    .login-btn span {
        display: inline;
    }
}

.language-dropdown {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    min-width: 140px;
}

.language-dropdown:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-1px);
}

.language-dropdown:focus {
    outline: none;
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.language-dropdown option {
    background: #1a1a1a;
    color: #fff;
    padding: 0.5rem;
}

.nav-btn::after {
    display: none;
}

/* Sections */
section {
    padding: 2.5rem 0;
    background: #000;
}

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

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff6b35;
}

.section-subtitle {
    font-size: 1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Biography Section */
.biography-section {
    background: #000;
}

.bio-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.bio-text {
    color: #fff;
}

.bio-short, .bio-extended {
    margin-bottom: 1.5rem;
}

.bio-short h3, .bio-extended h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.bio-short p, .bio-extended p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.bio-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    background: #111;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Music Section */
.music-section {
    background: #000;
}

.music-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.featured-mix {
    background: #111;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.featured-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.mix-embed-container {
    width: 100%;
    height: 150px;
    background: #222;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* Mixes Container - Isolated from other styles */
.mixes-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 0.5rem !important;
    box-sizing: border-box !important;
}

.mixes-container .mixes-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    width: 100% !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
}

.mixes-container .mix-item {
    background: #111 !important;
    border: 1px solid #333 !important;
    border-radius: 6px !important;
    padding: 0.5rem !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1rem !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    height: auto !important;
    min-height: 60px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.mix-item:hover {
    background: #1a1a1a;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}

.mix-date {
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1rem;
    margin-right: 1.5rem;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.mix-day {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.mix-month {
    font-size: 0.9rem;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.mix-content {
    flex: 1;
    padding-right: 1.5rem;
}

.mix-item h4 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.mix-item p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.mix-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.mix-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.85rem;
}

.mix-meta-item i {
    color: #ff6b35;
    width: 16px;
}

.mixes-container .mix-embed-container {
    flex-shrink: 0 !important;
    width: 280px !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    position: relative !important;
    background: transparent !important;
}

.mixes-container .mix-embed-container iframe {
    width: 100% !important;
    height: 50px !important;
    border: none !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    display: block !important;
    background: transparent !important;
}

/* New Mix Layout Styles */
.mixes-container .mix-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 0.15rem !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

.mixes-container .mix-title {
    color: #fff !important;
    margin: 0 !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
}

.mixes-container .share-mix-btn {
    background: #ff6b35 !important;
    color: #fff !important;
    padding: 0.3rem !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-size: 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    width: 40px !important;
    height: 40px !important;
}

.share-mix-btn:hover {
    background: #e55a2b;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.share-mix-btn i {
    font-size: 0.8rem;
}

.mixes-container .mix-stats {
    display: flex !important;
    gap: 0.25rem !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

.mixes-container .mix-stat {
    display: flex !important;
    align-items: center !important;
    gap: 0.1rem !important;
    color: #ccc !important;
    font-size: 0.65rem !important;
    white-space: nowrap !important;
}

.mix-stat i {
    color: #ff6b35;
    width: 10px;
    text-align: center;
    font-size: 0.65rem;
}

/* Cooperation Mix Styles */
.cooperation-mix {
    border-left: 3px solid #4caf50 !important;
}

.cooperation-badge {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    padding: 0.1rem 0.25rem;
    border-radius: 3px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 0.3rem;
}

.mix-artist-info {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    margin-bottom: 0.15rem;
    flex-wrap: wrap;
}

.mix-artist {
    color: #ff6b35;
    font-size: 0.7rem;
    font-weight: 500;
}

.mix-genre {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 0.1rem 0.25rem;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Press Photos Section */
.press-photos-section {
    background: #000;
    position: relative;
    padding: 2rem 0;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 0;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* When there's only one item, make it more centered and appropriately sized */
.photos-grid:has(.photo-item:only-child) {
    grid-template-columns: minmax(300px, 500px);
    justify-content: center;
}

/* Fallback for browsers that don't support :has() */
.photos-grid.single-item {
    grid-template-columns: minmax(300px, 500px);
    justify-content: center;
}

.photo-item {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.photo-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.photo-item img,
.photo-item video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.photo-item:hover img,
.photo-item:hover video {
    transform: scale(1.05);
}

.photo-item video {
    background: #000;
    object-fit: cover;
}

.photo-item video::-webkit-media-controls {
    display: none !important;
}

.photo-item video::-webkit-media-controls-panel {
    display: none !important;
}

.photo-item video::-webkit-media-controls-play-button {
    display: none !important;
}

.photo-item video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.video-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 2;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 107, 53, 0.9);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 3;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.photo-item:hover .video-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 107, 53, 1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

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

.photo-overlay h4 {
    color: #fff;
    margin-bottom: 0.4rem;
    font-size: 1rem;
    font-weight: 600;
}

.photo-overlay p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox img,
.lightbox video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox video {
    background: #000;
}

.lightbox-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 107, 53, 0.9);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 107, 53, 1);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 53, 0.9);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 107, 53, 1);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-info {
    padding: 1.25rem;
    background: #111;
    color: #fff;
}

.lightbox-info h3 {
    margin-bottom: 0.4rem;
    color: #ff6b35;
}

.lightbox-info p {
    color: #ccc;
    line-height: 1.4;
}

/* Loading Animation */
.photos-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    color: #ff6b35;
    font-size: 1.1rem;
}

.photos-loading::after {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-top: 2px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.75rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Linktree Styles */
.linktree-cover {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.profile-section {
    max-width: 400px;
    margin: 0 auto;
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ff6b35;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
}

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

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-bio {
    font-size: 1.1rem;
    color: #ccc;
    margin: 0;
    font-weight: 400;
}

.links-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-item:hover::before {
    left: 100%;
}

.link-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
}

.link-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.link-item:hover .link-icon {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

.link-icon.soundcloud {
    background: linear-gradient(135deg, #ff8800, #ff5500);
    color: #fff;
}

.link-icon.mixcloud {
    background: linear-gradient(135deg, #3146ff, #1e3a8a);
    color: #fff;
}

.link-icon.spotify {
    background: linear-gradient(135deg, #1db954, #1ed760);
    color: #fff;
}

.link-icon.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584, #833ab4);
    color: #fff;
}

.link-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    color: #fff;
}

.link-icon.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: #fff;
}

.link-content {
    flex: 1;
    text-align: left;
}

.link-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: #fff;
}

.link-content p {
    font-size: 0.9rem;
    margin: 0;
    color: #ccc;
    opacity: 0.8;
}

.link-arrow {
    color: #ff6b35;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.link-item:hover .link-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Link Categories */
.link-item.main-website {
    border-left: 4px solid #ff6b35;
}

.link-item.music-platform {
    border-left: 4px solid #1db954;
}

.link-item.social-media {
    border-left: 4px solid #e4405f;
}

.link-item.downloads {
    border-left: 4px solid #ffa726;
}

.link-item.booking {
    border-left: 4px solid #42a5f5;
}

.link-item.contact {
    border-left: 4px solid #66bb6a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .photos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        max-width: 100%;
        padding: 1rem 0;
    }
    
    .photos-grid.single-item {
        grid-template-columns: minmax(250px, 350px);
    }
    
    .photo-item img {
        height: 200px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-close {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    /* Linktree Responsive */
    .linktree-cover {
        min-height: 50vh;
        padding: 2rem 1rem;
    }

    .profile-image {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }

    .profile-name {
        font-size: 2rem;
    }

    .profile-bio {
        font-size: 1rem;
    }

    .links-container {
        padding: 0 1rem;
    }

    .link-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .link-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .link-content {
        text-align: center;
    }

    .link-arrow {
        display: none;
    }
}

/* Performances Section */
.performances-section {
    background: #000;
}

.performances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.performance-item {
    background: #111;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.performance-item:hover {
    background: #1a1a1a;
    border-color: #ff6b35;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.performance-item.regular {
    border-left: 4px solid #ff6b35;
}

.performance-item.performed {
    border-left: 4px solid #4caf50;
}

.performance-header {
    margin-bottom: 1rem;
}

.performance-venue {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.performance-location {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.performance-type {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.performance-description {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.performance-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.performance-date {
    color: #999;
    font-size: 0.85rem;
    font-weight: 500;
}

.performance-status {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.performance-item.regular .performance-status {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

/* Press Section */
.press-section {
    background: #000;
    padding: 2.5rem 0;
}

.no-press-message {
    text-align: center;
    padding: 2.5rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #cccccc;
    grid-column: 1 / -1;
}

.no-press-message p {
    margin: 0;
    line-height: 1.5;
}

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

.quote-item {
    background: #111;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.quote-item:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.quote-text {
    color: #fff;
    font-style: italic;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

.quote-source {
    color: #ff6b35;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

/* Events Section */
.events-section {
    background: #000;
    padding: 2.5rem 0;
}

.events-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.events-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.event-tab {
    background: rgba(17, 17, 17, 0.8);
    color: #fff;
    border: 1px solid rgba(255, 107, 53, 0.6);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(5px);
}

.event-tab:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.event-tab.active {
    background: rgba(255, 107, 53, 0.8);
    color: #000;
    border-color: rgba(255, 107, 53, 0.9);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.event-item, .event-card {
    background: #111;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-item:hover, .event-card:hover {
    background: #1a1a1a;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}

.event-info {
    flex: 1;
}

.event-info h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.event-info p {
    color: #ccc;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.event-venue {
    color: #ff6b35;
    font-weight: 600;
}

.event-status {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-status.confirmed {
    background: rgba(76, 175, 80, 0.8);
    color: #fff;
    border: 1px solid rgba(76, 175, 80, 0.6);
}

.event-status.pending {
    background: rgba(255, 152, 0, 0.8);
    color: #fff;
    border: 1px solid rgba(255, 152, 0, 0.6);
}

.event-status.completed {
    background: rgba(102, 102, 102, 0.8);
    color: #fff;
    border: 1px solid rgba(102, 102, 102, 0.6);
}

/* Event Card Specific Styles */
.event-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.event-card:hover {
    background: #1a1a1a;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}

.event-date {
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1rem;
    margin-right: 1.5rem;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.event-month {
    font-size: 0.9rem;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.event-info {
    flex: 1;
    padding-right: 1rem;
}

.event-title {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.event-venue {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.event-address {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.85rem;
}

.event-meta-item i {
    color: #ff6b35;
    width: 16px;
}

.event-actions {
    flex-shrink: 0;
}

.more-info-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.more-info-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-1px);
}

/* Downloads Section */
.downloads-section {
    background: #000;
    padding: 2.5rem 0;
    min-height: 60vh;
}

.downloads-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.download-item {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-item:hover {
    transform: translateY(-4px);
    border-color: #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.download-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.download-info {
    flex: 1;
    min-width: 0;
}

.download-info h4 {
    color: #fff;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.download-info p {
    color: #ccc;
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.download-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.file-size {
    color: #ff6b35;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.file-type {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.download-actions {
    flex-shrink: 0;
}

.download-btn {
    background: #ff6b35;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.download-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.download-btn i {
    font-size: 0.8rem;
}

/* File type specific colors */
.download-item[data-type="pdf"] .download-icon {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
}

.download-item[data-type="document"] .download-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.download-item[data-type="image"] .download-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.download-item[data-type="video"] .download-icon {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
}

.download-item[data-type="audio"] .download-icon {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
}

.download-item[data-type="archive"] .download-icon {
    background: linear-gradient(135deg, #6c757d, #495057);
}

/* Responsive Design for Downloads */
@media (max-width: 768px) {
    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .download-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .download-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .download-info {
        order: 2;
    }
    
    .download-actions {
        order: 3;
        width: 100%;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .downloads-section {
        padding: 2rem 0;
    }
    
    .downloads-content {
        padding: 0 0.5rem;
    }
    
    .download-item {
        padding: 0.75rem;
    }
    
    .download-info h4 {
        font-size: 1rem;
    }
    
    .download-info p {
        font-size: 0.8rem;
    }
}

/* Tech Rider Section */
.tech-rider-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 2.5rem 0;
}

.tech-rider-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.equipment-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.category-title {
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-title i {
    font-size: 1.1rem;
}

.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.equipment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.equipment-item.required {
    border-left-color: #4caf50;
}

.equipment-item.optional {
    border-left-color: #ff9800;
}

.equipment-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.equipment-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.2rem;
}

.equipment-icon i {
    font-size: 1.1rem;
}

.equipment-icon i.required {
    color: #4caf50;
}

.equipment-icon i.optional {
    color: #ff9800;
}

.equipment-details h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.equipment-details p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.tech-rider-footer {
    grid-column: 1 / -1;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    text-align: center;
}

.requirement-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

.legend-item i.required {
    color: #4caf50;
}

.legend-item i.optional {
    color: #ff9800;
}

.tech-rider-note {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tech-rider-note i {
    color: #ff6b35;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    background: #000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
        flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.contact-item i {
    color: #ff6b35;
    font-size: 1.5rem;
    width: 30px;
}

.contact-details h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #ccc;
}

.contact-details a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.contact-section .social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 107, 53, 0.6);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(10px);
}

.contact-section .social-link:hover {
    background: rgba(255, 107, 53, 0.8);
    color: #000;
    border-color: rgba(255, 107, 53, 0.9);
}


/* Footer */
.footer {
    background: #111;
    padding: 2rem 0;
    border-top: 1px solid #333;
}

.footer-content {
        text-align: center;
    color: #ccc;
}

.footer-content p {
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
        justify-content: center;
        gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ff6b35;
}

/* Responsive Design */
@media (min-width: 1200px) {
    .mixes-container {
        padding: 0 0.5rem !important;
    }
    
    .mixes-container .mix-embed-container {
        width: 300px !important;
    }
    
    .mixes-container .mix-content {
        max-width: calc(100% - 380px) !important;
    }
}

@media (max-width: 1400px) {
    .container {
        padding: 0 1rem;
    }
    
    .mixes-container {
        max-width: 100% !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .mix-header {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .share-mix-btn {
        align-self: flex-start;
    }
    
    .mix-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .bio-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .music-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    
    .tech-rider-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .requirement-legend {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Language switcher responsive */
    .top-controls {
        top: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .language-dropdown {
        width: 100%;
        min-width: auto;
        font-size: 0.8rem;
    }
    
    .login-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .login-btn i {
        font-size: 0.9rem;
    }
    
    .nav-content {
        gap: 1rem;
    }
    
    .cover-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .events-tabs {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    
    .cover-container {
        padding: 2rem 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Accessibility */
*:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

button:focus, .btn:focus, .nav-btn:focus, .event-tab:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #ff6b35;
    color: #000;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff8c42;
}

/* Impressum Header */
.impressum-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 6rem 0 4rem 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

.impressum-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.impressum-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.impressum-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.back-to-home {
    margin-top: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: 1px solid #ff6b35;
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.1);
}

.back-link:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

/* Impressum Section */
.impressum-section {
    background: #0a0a0a;
    padding: 2.5rem 0;
    border-top: 1px solid #333;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.impressum-section-item {
    background: #111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.impressum-section-item:hover {
    background: #1a1a1a;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}

.impressum-section-item h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.impressum-section-item p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.impressum-section-item a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-section-item a:hover {
    color: #ff8c42;
    text-decoration: underline;
}

.impressum-link {
    color: #ff6b35;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.impressum-link:hover {
    color: #ff8c42;
    text-decoration: underline;
}

/* Footer with Impressum link */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

/* Footer sections for downloads page */
.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ff6b35;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-section p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff8c42;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

.footer-section .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-section .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    color: #ff6b35;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-section .social-links a:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

/* Responsive Impressum */
@media (max-width: 768px) {
    .impressum-header {
        padding: 4rem 0 3rem 0;
    }
    
    .impressum-title {
        font-size: 2.5rem;
    }
    
    .impressum-subtitle {
        font-size: 1.1rem;
    }
    
    .impressum-section {
        padding: 3rem 0;
    }
    
    .impressum-content {
        gap: 1.5rem;
    }
    
    .impressum-section-item {
        padding: 1.5rem;
    }
    
    .impressum-section-item h3 {
        font-size: 1.2rem;
    }
    
    .impressum-section-item p {
        font-size: 0.9rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-section {
        min-width: auto;
        margin-bottom: 1.5rem;
    }
    
    .footer-section .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .impressum-header {
        padding: 3rem 0 2rem 0;
    }
    
    .impressum-title {
        font-size: 2rem;
    }
    
    .impressum-subtitle {
        font-size: 1rem;
    }
    
    .impressum-section {
        padding: 2rem 0;
    }
    
    .impressum-section-item {
        padding: 1rem;
    }
    
    .impressum-section-item h3 {
        font-size: 1.1rem;
    }
    
    .impressum-section-item p {
        font-size: 0.85rem;
    }
}/* Mixes Container - New Design */
.mixes-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.mixes-container .mixes-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    align-items: stretch;
    justify-content: flex-start;
}

.mix-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mix-card:hover {
    background: #1a1a1a;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.mix-card.cooperation-mix {
    border-color: #4caf50;
}

.mix-card.cooperation-mix:hover {
    border-color: #66bb6a;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
}

/* Title Section */
.mix-title-section {
    margin-bottom: 1rem;
}

.mix-title {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cooperation-badge {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

/* Embed Section */
.mix-embed-section {
    margin-bottom: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.mix-embed-section iframe {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 8px;
    background: transparent;
    display: block;
    overflow: hidden;
}


/* Stats Section */
.mix-stats-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.mix-stats {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.mix-stat {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 500;
}

.mix-stat i {
    color: #ff6b35;
    font-size: 0.9rem;
}

.mix-share-btn {
    background: #ff6b35;
    color: #fff;
    padding: 0.5rem;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 40px;
    height: 40px;
}

.mix-share-btn:hover {
    background: #e55a2b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mixes-container {
        padding: 0 0.5rem;
    }
    
    .mix-card {
        padding: 1rem;
    }
    
    .mix-title {
        font-size: 1rem;
    }
    
    .mix-embed-section iframe {
        height: 70px;
    }
    
    .mix-placeholder {
        height: 80px;
    }
    
    .mix-stats {
        gap: 0.5rem;
    }
    
    .mix-stat {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .mixes-container {
        padding: 0 0.25rem;
    }
    
    .mix-card {
        padding: 0.75rem;
    }
    
    .mix-title {
        font-size: 0.9rem;
    }
    
    .mix-embed-section iframe {
        height: 60px;
    }
    
    .mix-stats {
        gap: 0.5rem;
    }
    
    .mix-stat {
        font-size: 0.75rem;
    }
    
    .mix-share-btn {
        min-width: 36px;
        height: 36px;
        padding: 0.4rem;
    }
}
