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

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(ellipse at center, #404040 0%, #000000 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Navigation */
.custom-navbar {
    background: radial-gradient(ellipse at top left, #160d35 0%, #0f0f0f 75%);
    backdrop-filter: blur(10px);
}

/* Hero Section */
.hero {
    padding-top: 80px;
}

.hero-logo-top {
    position: relative;
    display: inline-block;
}

.hero-logo-img {
    width: 100%;
    max-width: 350px;
    filter: drop-shadow(0px 0px 50px rgba(50, 30, 120, 1));
    animation: logoFloat 4s ease-in-out infinite;
}

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

/* Join Event Section */
.join-event-hero {
    background-color: rgba(106, 212, 124, 0.1);
    border: 1px solid rgba(106, 212, 124, 0.2);
}

/* Divider */
.divider-text {
    position: relative;
    text-align: center;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.divider-text::before {
    margin-right: 1rem;
}

.divider-text::after {
    margin-left: 1rem;
}

/* Sections */
.fans-section {
    background-color: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(5px);
}

.bands-section {
    background-color: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(5px);
}

.how-section {
    background-color: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(5px);
}

/* Feature Cards */
.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
}

/* Band Features */
.band-feature {
    background: linear-gradient(135deg, rgba(106, 212, 124, 0.05) 0%, rgba(45, 122, 61, 0.05) 100%);
    border: 1px solid rgba(106, 212, 124, 0.2);
    transition: all 0.3s ease;
}

.band-feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(106, 212, 124, 0.2);
}

.feature-number {
    position: absolute;
    top: -20px;
    right: 10px;
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

/* Steps */
.step {
    background-color: var(--dark-bg);
    border: 1px solid rgba(106, 212, 124, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(106, 212, 124, 0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Footer */
.footer {
    background-color: rgba(10, 10, 10, 0.9);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(106, 212, 124, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Event input error state */
.event-input.error {
    border: 2px solid #ff4444;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-logo-img {
        max-width: 250px;
    }
    
    .note-4, .note-8, .note-10, .note-11 {
        display: none;
    }
    
    .music-note {
        font-size: 1.5rem !important;
    }
    
    .feature-number {
        font-size: 3rem;
        top: 5px;
    }
}