:root {
    /* 90s Eurodance / Trash Pop Palette */
    --bg-color: #1a0b2e; /* Deep purple background */
    --card-bg: rgba(43, 20, 62, 0.9); /* Slightly lighter purple for card */
    --text-color: #ffffff;
    
    /* Neon Accents - Popping on dark bg */
    --accent-pink: #ff00cc; /* Hot Magenta */
    --accent-cyan: #00ffff; /* Electric Cyan */
    --accent-purple: #9400d3; /* Vivid Purple */
    --accent-yellow: #ffee00; /* Sunny Yellow */
    --accent-green: #39ff14; /* Neon Green */
    
    --pattern-color: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Verdana', 'Geneva', sans-serif; /* Classic 90s web font, readable */
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column; /* Better for scrolling */
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding: 1rem 0; /* Vertical breathing room */
    
    /* Radial gradient background - typical rave flyer style */
    background-image: 
        radial-gradient(circle at 50% 50%, #431259 0%, #1a0b2e 100%);
}

/* 90s Memphis Pattern Overlay */
body::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(45deg, var(--pattern-color) 25%, transparent 25%, transparent 75%, var(--pattern-color) 75%),
        linear-gradient(45deg, var(--pattern-color) 25%, transparent 25%, transparent 75%, var(--pattern-color) 75%);
    background-position: 0 0, 10px 10px;
    background-size: 20px 20px;
    opacity: 0.1; /* Very subtle texture */
    z-index: -1;
}

/* Floating Geometric Shapes */
.background-animation {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.background-animation span {
    position: absolute;
    display: block;
    width: 0; height: 0;
    border-style: solid;
    opacity: 0.6;
    animation: float 15s infinite linear;
}

/* Triangle */
.background-animation span:nth-child(1) {
    top: 20%; left: 10%;
    border-width: 0 40px 70px 40px;
    border-color: transparent transparent var(--accent-pink) transparent;
    transform: rotate(20deg);
}

/* Circle (Square with border-radius) */
.background-animation span:nth-child(2) {
    top: 70%; left: 80%;
    width: 100px; height: 100px;
    border: 5px solid var(--accent-cyan);
    border-radius: 50%;
    background: transparent;
    animation-duration: 25s;
    animation-delay: -5s;
}

/* Zig Zag (Simulated with text or image, here simple block for now) */
.background-animation span:nth-child(3) {
    top: 40%; left: 60%;
    width: 80px; height: 80px;
    background: var(--accent-yellow);
    transform: rotate(45deg);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    animation-duration: 20s;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

.card {
    background: var(--card-bg);
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2), 
                10px 10px 0px rgba(255, 0, 204, 0.3); /* Neon shadow offset */
    border-radius: 15px; /* Slightly rounded, widely supported */
    padding: 3rem 2rem;
    max-width: 500px;
    width: 90%;
    margin: auto; /* Magic trick for safe centering + scrolling */
    text-align: center;
    position: relative;
    backdrop-filter: blur(5px);
}

.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
    transform: scale(1.1) rotate(3deg);
}

.tagline {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--accent-pink);
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: var(--accent-yellow);
    text-shadow: 3px 3px 0px var(--accent-purple); /* Hard block shadow */
    letter-spacing: 1px;
    font-style: italic;
}

.tags {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px var(--accent-cyan);
}

.tags .dot {
    color: var(--accent-pink);
    margin: 0 8px;
}

.description {
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #eeeeee;
    font-size: 1.1rem;
}

/* "Coming Soon" styling - tape/sticker look */
.status-badge {
    display: inline-block;
    background: var(--accent-pink);
    color: white;
    padding: 0.5rem 2rem;
    font-family: 'Impact', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transform: rotate(-3deg);
    box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
    border: 1px dashed white;
    margin-bottom: 2.5rem;
}

.status-badge .pulse {
    display: none; /* No modern pulse */
}

/* Add blink animation efficiently */
.status-badge {
    animation: blink-text 1s infinite alternate;
}
@keyframes blink-text {
    0% { opacity: 1; }
    100% { opacity: 0.8; }
}

.event-meta {
    margin: -1.2rem 0 2.3rem;
    line-height: 1.6;
    color: #f1f1f1;
    font-size: 1rem;
}

.event-meta strong {
    color: var(--accent-yellow);
}

.event-meta a,
.event-meta a:visited {
    color: var(--accent-cyan);
    font-weight: 700;
    text-decoration: underline;
}

.event-meta a:hover {
    color: #7afafa;
}

/* Features Grid (What to Expect) */
.features-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column layout for cleaner look */
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.feature-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--accent-purple);
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    border-color: var(--accent-cyan);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.feature-title {
    font-weight: 800;
    color: var(--accent-yellow);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.feature-desc {
    font-size: 0.8rem;
    color: #eee;
    line-height: 1.3;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    background: white;
    padding: 1rem;
    border-radius: 0;
    transition: all 0.2s ease;
    border: 3px solid var(--text-color);
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 6px 6px 0px var(--text-color);
    position: relative;
    overflow: hidden;
}

.social-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px var(--text-color);
}

.social-btn:active {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0px var(--text-color);
}

.instagram {
    background: var(--accent-cyan);
}

.instagram:hover {
    background: #4ae2e2;
    border-color: var(--text-color);
}

.instagram svg {
    color: var(--text-color);
}

.tiktok {
    background: var(--accent-green);
}

.tiktok:hover {
    background: #4cec4c;
    border-color: var(--text-color);
}

.tiktok svg {
    color: var(--text-color);
}

footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--text-color);
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}

.legal-links {
    margin-top: 0.5rem;
}

.legal-links a,
.legal-links a:visited {
    color: var(--accent-cyan);
    font-weight: 700;
    text-decoration: underline;
}

.legal-page {
    max-width: 760px;
    text-align: left;
}

.legal-page a,
.legal-page a:visited {
    color: var(--accent-cyan);
    font-weight: 700;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #7afafa;
}

.legal-page h1 {
    margin-bottom: 1.2rem;
}

.legal-page h2 {
    font-family: 'Arial Black', 'Impact', sans-serif;
    color: var(--accent-yellow);
    margin-top: 1.4rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.legal-page p {
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.legal-note {
    font-size: 0.85rem;
    color: #ddd;
    margin-top: 1rem;
}

/* Responsive adjustments (Mobile First approach for small screens) */
@media (max-width: 600px) {
    body {
        padding: 0; /* Remove vertical padding to let card fill screen */
    }

    .card {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
        min-height: 100vh; /* Full screen height */
        margin: 0;
        border: none; /* No border */
        border-radius: 0; /* No rounded corners */
        box-shadow: none; /* No shadow */
        background: rgba(26, 11, 46, 0.95); /* Nearly opaque background */
    }
    
    /* Disable Hover/Transform effects on Touch Devices */
    .card:hover, 
    .logo:hover, 
    .feature-item:hover,
    .social-btn:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    /* Reset specific hover colors to defaults */
    .feature-item:hover {
        border-color: var(--accent-purple);
    }
    
    .instagram:hover { background: var(--accent-cyan); }
    .tiktok:hover { background: var(--accent-green); }
    
    h1 {
        font-size: 1.8rem;
    }
    
    body {
        background-image: none; /* Remove radial gradient on mobile for cleaner look */
        background-color: var(--bg-color);
    }
}
