/* Additional styles for DJ videos and maps */

/* DJ Video Modal */
.dj-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.dj-video-modal.active {
    display: flex;
}

.dj-video-container {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    border: 2px solid var(--cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.dj-video-container video {
    max-width: 100%;
    max-height: 70vh;
    display: block;
}

.dj-video-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    padding: 8px 16px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
}

.dj-video-close:hover {
    background: var(--cyan);
    color: var(--dark-bg);
}

.dj-video-title {
    color: var(--cyan);
    font-size: 24px;
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

/* Artist Cards in Lineup */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 0 20px;
}

.artist-card {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--cyan);
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.artist-card::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--cyan);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.8);
}

.artist-card:hover::before {
    opacity: 0.8;
}

.artist-card:hover {
    background: rgba(0, 243, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    transform: translateY(-5px);
}

.artist-card.has-video::after {
    content: 'VIDEO';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--purple);
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 3px;
}

.artist-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--cyan);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.artist-time {
    font-size: 14px;
    color: rgba(0, 243, 255, 0.7);
}

/* Map Gallery */
.map-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 0 20px;
}

/* VIP Gallery specific styles */
.vip-gallery {
    background: rgba(0, 243, 255, 0.03);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 10px;
    padding: 30px;
    margin: 20px;
}

.map-item.vip-map {
    border-color: #00f3ff;
    background: rgba(0, 243, 255, 0.08);
}

.map-item.vip-map:hover {
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.5);
    border-color: #00f3ff;
}

.map-item.vvip-map {
    border-color: #ff00ff;
    background: rgba(255, 0, 255, 0.08);
}

.map-item.vvip-map:hover {
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.5);
    border-color: #ff00ff;
}

.map-item.vvip-map .map-item-title {
    color: #ff00ff;
    border-color: rgba(255, 0, 255, 0.3);
}

.map-item {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--cyan);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-item:hover {
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    transform: scale(1.02);
}

.map-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.map-item-title {
    padding: 15px;
    text-align: center;
    color: var(--cyan);
    font-size: 14px;
    text-transform: uppercase;
    border-top: 1px solid rgba(0, 243, 255, 0.3);
}

/* Speaker Icon */
.speaker-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 243, 255, 0.1);
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.speaker-toggle:hover {
    background: rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
    transform: scale(1.1);
}

.speaker-toggle.muted {
    border-color: #666;
    opacity: 0.5;
}

.speaker-toggle.muted:hover {
    border-color: #999;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.speaker-icon {
    font-size: 24px;
    color: var(--cyan);
    transition: all 0.3s ease;
}

.speaker-toggle.muted .speaker-icon {
    color: #666;
}

/* Audio element hidden */
#bg-music {
    display: none;
}

/* Image Modal for Maps */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.image-modal.active {
    display: flex;
}

.image-modal-container {
    position: relative;
    max-width: 95%;
    max-height: 90%;
}

.image-modal-container img {
    max-width: 100%;
    max-height: 85vh;
    border: 2px solid var(--cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
}

.image-modal-close:hover {
    background: var(--cyan);
    color: var(--dark-bg);
}

.image-modal-title {
    color: var(--cyan);
    font-size: 20px;
    margin-top: 15px;
    text-align: center;
    text-transform: uppercase;
}

/* Section Headers */
.section-subtitle {
    color: var(--purple);
    font-size: 16px;
    text-align: center;
    margin: 30px 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Scrollbar styling for page overlays */
.page-overlay::-webkit-scrollbar {
    width: 8px;
}

.page-overlay::-webkit-scrollbar-track {
    background: rgba(0, 243, 255, 0.1);
}

.page-overlay::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 4px;
}
