* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section - Simple */
.hero-simple {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #e94560 0%, #533483 100%);
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.4);
}

/* Flyer Section */
.flyer-section {
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    margin-bottom: 40px;
}

.flyer-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: glow 3s ease-in-out infinite alternate;
}

.flyer-image:hover {
    transform: scale(1.02);
}

@keyframes glow {
    from {
        box-shadow: 0 20px 60px rgba(233, 69, 96, 0.3);
    }
    to {
        box-shadow: 0 20px 80px rgba(233, 69, 96, 0.6);
    }
}

.title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.6);
    transform: skew(-5deg);
}

.subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 2px;
}

/* Ticket Prices */
.ticket-prices {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.price-box {
    background: linear-gradient(135deg, #e94560 0%, #533483 100%);
    padding: 30px 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    min-width: 200px;
}

.price-label {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: #ffd700;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.tickets h4 {
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}

/* Event Info */
.event-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.event-date h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: #e94560;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.time {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 30px;
}

.djs {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.djs h3 {
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: #aaa;
    margin-bottom: 20px;
}

.dj-main {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #e94560;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.dj-sub {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #533483;
    letter-spacing: 3px;
}

.music-style {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #ffd700;
    font-style: italic;
}

/* Sections */
section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

section h3 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 20px;
    color: #e94560;
    letter-spacing: 2px;
}

section h4 {
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #ffd700;
}

section p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about {
    text-align: left;
}

.releases {
    background: rgba(233, 69, 96, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #e94560;
}

.releases ul {
    list-style: none;
    padding-left: 0;
}

.releases li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.releases li::before {
    content: "▸ ";
    color: #e94560;
    font-weight: bold;
    margin-right: 10px;
}

.highlight {
    font-weight: bold;
    font-size: 1.3rem !important;
    color: #ffd700;
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

/* Location */
.location {
    text-align: center;
}

.venue {
    background: linear-gradient(135deg, #533483 0%, #e94560 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.venue-name {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* Tickets */
.ticket-locations {
    list-style: none;
    padding: 0;
}

.ticket-locations li {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    border-left: 4px solid #e94560;
    font-size: 1.1rem;
}

.ticket-locations strong {
    color: #ffd700;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 5px;
}

/* Charity */
.charity-box {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.3) 0%, rgba(40, 167, 69, 0.1) 100%);
    border: 3px solid #28a745;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.charity-box h3 {
    color: #28a745;
    font-size: 2rem;
    margin-bottom: 20px;
}

.charity-highlight {
    font-size: 1.4rem !important;
    font-weight: bold;
    color: #28a745;
    margin-top: 20px;
}

/* Social */
.social {
    text-align: center;
    font-size: 1.2rem;
}

.instagram {
    font-size: 1.5rem;
    margin: 10px 0;
}

.instagram a {
    color: #e94560;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.instagram a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

footer p {
    margin: 5px 0;
}

.credits {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .hero-simple {
        padding: 40px 15px 30px;
    }

    section {
        padding: 20px;
    }

    .event-info {
        padding: 25px 15px;
    }
    
    .price-box {
        padding: 25px 40px;
        min-width: 150px;
    }
    
    .price {
        font-size: 2.5rem;
    }
}
