/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff0055;
    --secondary: #00ffff;
    --dark: #0a0a0a;
    --light: #ffffff;
    --accent: #ffff00;
    --purple: #b000ff;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    position: relative;
}

/* Glitch Overlay */
.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    z-index: 9999;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0015 50%, #0a0a0a 100%);
}

.chaos-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 0, 85, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(176, 0, 255, 0.2) 0%, transparent 50%);
    animation: chaos-pulse 4s ease-in-out infinite;
}

@keyframes chaos-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-container h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--light);
    text-shadow:
        0 0 10px var(--primary),
        0 0 20px var(--primary),
        0 0 30px var(--secondary),
        0 0 40px var(--secondary);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--secondary); }
    50% { text-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary), 0 0 60px var(--secondary); }
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2.5s infinite;
    color: var(--secondary);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 2s infinite;
    color: var(--primary);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

.tour-title {
    margin-bottom: 3rem;
}

.tour-title h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 8vw, 4rem);
    letter-spacing: 0.2em;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.year {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent);
}

.event-info {
    margin-bottom: 3rem;
}

.event-info p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin: 0.5rem 0;
    letter-spacing: 0.15em;
}

.date {
    color: var(--primary);
    font-weight: 700;
}

.venue {
    color: var(--secondary);
    font-weight: 700;
}

.warning {
    color: var(--accent);
    font-weight: 700;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    color: var(--light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    border: 3px solid var(--light);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.5);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 0, 85, 0.8);
}

.btn-text {
    display: block;
}

.btn-price {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: var(--accent);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--secondary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Title */
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.15em;
    color: var(--light);
    text-shadow: 0 0 20px var(--primary);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--dark);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.1), rgba(0, 255, 255, 0.1));
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 85, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    color: var(--secondary);
}

.about-card p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Lineup Section */
.lineup {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--dark) 0%, #1a0015 50%, var(--dark) 100%);
}

.lineup-list {
    max-width: 800px;
    margin: 0 auto;
}

.lineup-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

.lineup-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-width: 8px;
    transform: translateX(10px);
}

.lineup-item.main-act {
    border-left-color: var(--primary);
    background: rgba(255, 0, 85, 0.1);
}

.lineup-item.main-act .artist {
    font-size: 2.5rem;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.time {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
}

.artist {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
}

/* Tickets Section */
.tickets {
    padding: 8rem 0;
    background: var(--dark);
}

.ticket-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(176, 0, 255, 0.2), rgba(255, 0, 85, 0.2));
    border: 3px solid var(--primary);
    box-shadow: 0 0 50px rgba(255, 0, 85, 0.3);
    position: relative;
    overflow: hidden;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--purple), var(--accent));
    z-index: -1;
    animation: border-animation 3s linear infinite;
    opacity: 0.5;
}

@keyframes border-animation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ticket-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 1rem;
}

.ticket-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    color: var(--light);
}

.ticket-subtitle {
    color: var(--secondary);
    margin-top: 0.5rem;
}

.ticket-details ul {
    list-style: none;
    margin: 2rem 0;
}

.ticket-details li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.ticket-price {
    text-align: center;
    margin: 2rem 0;
}

.price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent);
    display: block;
}

.price-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.ticket-btn {
    display: block;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    color: var(--light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.ticket-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.6);
}

.ticket-warning {
    text-align: center;
    color: var(--accent);
    font-weight: 700;
    margin-top: 1rem;
    font-size: 0.9rem;
    animation: blink 1.5s infinite;
}

/* Info Section */
.info {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--dark) 0%, #001a1a 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-block {
    padding: 2rem;
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid var(--secondary);
}

.info-block h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.info-block p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--dark);
    text-align: center;
    border-top: 2px solid var(--primary);
}

.footer-warning {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.footer-crypto {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-crypto a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-crypto a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }

    .about-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .lineup-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .ticket-card {
        padding: 2rem;
    }
}
