* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    overflow-x: hidden;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
}

.main-container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin: 2rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 30%;
    height: auto;
    max-height: 200px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
    pointer-events: none;
}

.content-section {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff4d4d, #f9cb28);
}

.shows-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.show-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 3px solid #ff4d4d;
}

.show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.show-date {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f9cb28;
    margin-bottom: 0.5rem;
}

.show-location {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.show-address {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.show-time {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icon {
    color: white;
    font-size: clamp(1.5rem, 4vw, 2rem);
    transition: all 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
}

.fa-instagram:hover {
    color: #e4405f;
}

.fa-facebook:hover {
    color: #3b5998;
}

.fa-youtube:hover {
    color: #cd201f;
}

.fa-spotify:hover {
    color: #1db954;
}

.fa-tiktok:hover {
    color: #00f2ea;
}

.footer {
    margin-top: 3rem;
    padding: 1.5rem 0;
    color: #aaa;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
}

/* Galeria Prévia */
.gallery-preview {
    margin-top: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    transition: transform 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-link {
    display: inline-block;
    color: #f9cb28;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: color 0.3s;
}

.gallery-link:hover {
    color: #ff4d4d;
    text-decoration: underline;
}
/* Loading Spinner */
.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #aaa;
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Error State */
.error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #ff4d4d;
}

.error a {
    color: #f9cb28;
    text-decoration: underline;
}
/* Responsivo */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Proteção contra cópia */
body::selection {
    background: #f9cb28;
    color: #000;
}

body::-moz-selection {
    background: #f9cb28;
    color: #000;
}

@media (max-width: 768px) {
    .main-container {
        padding: 1rem;
    }
    
    .logo {
        max-height: 150px;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .shows-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        max-height: 120px;
    }
    
    .content-section {
        padding: 1rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
}