* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff006e;
    --secondary-color: #8338ec;
    --accent-color: #ffbe0b;
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: var(--spacing-lg) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

header h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

header .date {
    font-size: 1.5rem;
    margin-top: var(--spacing-sm);
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

header .venue {
    font-size: 1.3rem;
    margin-top: var(--spacing-xs);
    position: relative;
    z-index: 1;
    opacity: 0.85;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Logo Section */
.logo-section {
    padding: var(--spacing-md) 0 var(--spacing-md) 0;
    background: linear-gradient(180deg, rgba(131, 56, 236, 0.15) 0%, rgba(10, 10, 10, 0) 100%);
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(131, 56, 236, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 50px rgba(131, 56, 236, 0.6));
}

.hero-info {
    margin-top: var(--spacing-md);
}

.hero-date {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xs);
    color: var(--text-light);
}

.hero-venue {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    color: var(--text-muted);
}

/* Hero Section */
.hero {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(131, 56, 236, 0.1) 0%, transparent 100%);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Sections */
section {
    padding: var(--spacing-xl) 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    width: 100%;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* About Section */
.about {
    background-color: var(--dark-card);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
    line-height: 1.8;
}

/* DJ Lineup */
.djs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    justify-items: center;
}

.djs-grid .dj-card {
    grid-column: span 2;
    max-width: 300px;
    width: 100%;
}

.djs-grid .dj-card:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
}

.djs-grid .dj-card:nth-child(5) {
    grid-column: 4 / 6;
    grid-row: 2;
}

.dj-card {
    background: var(--dark-card);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: var(--spacing-md);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dj-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.dj-card:hover::before {
    opacity: 0.1;
}

.dj-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.dj-card > * {
    position: relative;
    z-index: 1;
}

.dj-image-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dj-image-placeholder::after {
    content: '🎧';
    font-size: 4rem;
}

.dj-image {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.dj-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dj-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.dj-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.dj-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(131, 56, 236, 0.1);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    background: rgba(131, 56, 236, 0.2);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.social-link .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Gallery */
.gallery {
    background-color: var(--dark-card);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-placeholder::before {
    content: '📸';
    font-size: 3rem;
    opacity: 0.3;
}

.gallery-placeholder:hover {
    transform: scale(1.05);
}

/* Details Section */
.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Venue Section */
.venue {
    background-color: var(--dark-card);
}

.venue h2 {
    margin-bottom: var(--spacing-lg);
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    align-items: start;
}

.venue-map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.venue-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.venue-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.venue-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.venue-title p {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-light);
}

.venue-info .venue-links {
    justify-content: center;
}

.venue-info > p:last-child {
    margin-top: var(--spacing-md);
}

.detail-card {
    background: var(--dark-card);
    padding: var(--spacing-md);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-color);
}

.detail-card p {
    margin-bottom: var(--spacing-xs);
    color: var(--text-muted);
}

.detail-card strong {
    color: var(--text-light);
}

.address-link {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-link:hover {
    color: var(--accent-color);
}

.address-link .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.venue-links {
    display: flex;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.venue-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 190, 11, 0.1);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 15px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.venue-link:hover {
    background: rgba(255, 190, 11, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.venue-link .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Tickets Section */
.tickets {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
}

.ticket-content {
    max-width: 600px;
    margin: 0 auto;
}

.ticket-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
}

.ticket-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.3);
}

.ticket-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 110, 0.5);
}

.ticket-note {
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
    font-style: italic;
    opacity: 0.7;
}

/* Footer */
footer {
    background-color: var(--dark-card);
    padding: var(--spacing-lg) 0;
    text-align: center;
    border-top: 1px solid #2a2a2a;
}

footer p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-xs);
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    header .date {
        font-size: 1.2rem;
    }

    header .venue {
        font-size: 1.1rem;
    }

    .logo-section {
        padding: var(--spacing-lg) 0 var(--spacing-sm) 0;
    }

    .hero-logo {
        max-width: 250px;
    }

    .hero-date {
        font-size: 1.4rem;
    }

    .hero-venue {
        font-size: 1.1rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .djs-grid {
        grid-template-columns: 1fr;
    }

    .djs-grid .dj-card:nth-child(4),
    .djs-grid .dj-card:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }

    .gallery-grid,
    .details-grid {
        grid-template-columns: 1fr;
    }

    .venue-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .venue-map {
        height: 300px;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    section {
        padding: var(--spacing-md) 0;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }

    .logo-section {
        padding: var(--spacing-md) 0 var(--spacing-sm) 0;
    }

    .hero-logo {
        max-width: 180px;
    }

    .hero-date {
        font-size: 1.2rem;
    }

    .hero-venue {
        font-size: 1rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .dj-image-placeholder {
        width: 150px;
        height: 150px;
    }

    .dj-image-placeholder::after {
        font-size: 3rem;
    }

    .dj-image {
        width: 150px;
        height: 150px;
    }
}
