* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    overflow-x: hidden;
    color: #333;
}

section {
    padding: 80px 20px;
    min-height: 100vh;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #ffffff;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.4);
    color: rgb(237, 213, 255);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

nav {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    animation: slideIn 1s ease-out;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #7548a8;
}

.artists {
    background-color: #150221;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.artist-card:hover {
    transform: translateY(-10px);
}

.artist-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.artist-info {
    padding: 20px;
}

.gallery {
    background-color: #150221;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.faq {
    background-color: #000000;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 3px solid #150221;
    padding-bottom: 20px;
}

.faq-question {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.faq-answer { 
    color: #ffffff;
    opacity: 0.5;
}

footer {
    background-color: #150221;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.schedule {
    background-color: #150221;
    padding: 80px 20px;
}

.schedule-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stage-column {
    flex: 1;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.stage-title {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #7548a8;
    text-align: center;
}

.performance {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    flex: 1;
}

.performance:hover {
    transform: translateY(-5px);
    background: rgba(117, 72, 168, 0.3);
    box-shadow: 0 5px 15px rgba(117, 72, 168, 0.4);
}

.time {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.artist {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.artist::before {
    content: "•";
    color: #7548a8;
    position: absolute;
    left: 0;
}

.tickets {
    background-color: #0a0114;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.tickets::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(117, 72, 168, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.ticket-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ticket-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 4px solid;
}

.ticket-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.ticket-card.basic {
    border-color: #4a90e2;
}

.ticket-card.vip {
    border-color: #f39c12;
}

.ticket-card.group {
    border-color: #2ecc71;
}

.ticket-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.ticket-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #150221;
    margin: 15px 0;
}

.ticket-features {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.ticket-features li {
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
    color: #555;
    border-bottom: 1px dashed #eee;
}

.ticket-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7548a8;
    font-weight: bold;
}

.ticket-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 60px 0;
    border-color: transparent rgba(117, 72, 168, 0.2) transparent transparent;
}

.btn {
    display: block;
    text-align: center;
    background-color: #7548a8;
    color: white;
    padding: 12px 0;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s;
    font-weight: bold;
}

.btn:hover {
    background-color: #5d3a8a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .schedule-container, .ticket-container {
        flex-direction: column;
    }
    
    .stage-column, .ticket-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    nav ul {
        gap: 15px;
    }
    
    nav a {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    nav {
        top: 10px;
        left: 10px;
        padding: 8px 12px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 5px;
    }

    section {
        padding: 60px 15px;
    }
}