@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

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

:root {
    --primary-purple: #A855F7;
    --primary-orange: #FB923C;
    --primary-yellow: #FCD34D;
    --primary-blue: #1E3A8A;
    --dark-blue: #1E40AF;
    --bright-cyan: #06B6D4;
    --electric-blue: #0EA5E9;
    --dark-bg: #0A0A0F;
    --darker-bg: #050507;
    --grid-color: rgba(168, 85, 247, 0.08);
    --text-light: #D8D8E8;
    --glow-intensity: 0 0 25px;
}

body {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(107, 58, 160, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107, 58, 160, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 10s linear infinite;
    z-index: -1;
    opacity: 0.7;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes flicker {
    0%, 100% { 
        opacity: 1; 
        filter: brightness(1) saturate(1);
    }
    4% { 
        opacity: 0.9; 
        filter: brightness(0.8) saturate(0.8);
    }
    6% { 
        opacity: 1; 
        filter: brightness(1.1) saturate(1.1);
    }
    8% { 
        opacity: 0.95; 
        filter: brightness(0.9) saturate(0.9);
    }
    10% { 
        opacity: 1; 
        filter: brightness(1) saturate(1);
    }
    42% { 
        opacity: 1; 
        filter: brightness(1) saturate(1);
    }
    43% { 
        opacity: 0.6; 
        filter: brightness(0.6) saturate(0.6);
    }
    44% { 
        opacity: 1; 
        filter: brightness(1.2) saturate(1.2);
    }
    46% { 
        opacity: 1; 
        filter: brightness(1) saturate(1);
    }
    86% { 
        opacity: 1; 
        filter: brightness(1) saturate(1);
    }
    87% { 
        opacity: 0.8; 
        filter: brightness(0.7) saturate(0.7);
    }
    88% { 
        opacity: 1; 
        filter: brightness(1) saturate(1);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease-out;
}

.band-name {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.neon-text {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 30px rgba(251, 146, 60, 0.8),
        0 0 60px rgba(251, 146, 60, 0.6),
        0 0 90px rgba(252, 211, 77, 0.4);
}

.neon-text.accent {
    background: linear-gradient(45deg, var(--bright-cyan), var(--electric-blue));
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 
        0 0 35px rgba(6, 182, 212, 1),
        0 0 70px rgba(14, 165, 233, 0.8),
        0 0 100px rgba(6, 182, 212, 0.6);
    animation: flicker 3s infinite alternate;
    animation-delay: 0.5s;
}

@keyframes neon-pulse {
    0% { 
        filter: brightness(1) saturate(1);
        transform: scale(1);
    }
    100% { 
        filter: brightness(1.2) saturate(1.2);
        transform: scale(1.02);
    }
}

.tagline {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    opacity: 1;
    font-weight: 600;
    animation: fadeIn 2s ease-out 0.5s both;
}

.tagline.primary {
    font-size: 1.8rem;
    color: var(--bright-cyan);
    text-shadow: 
        0 0 25px rgba(6, 182, 212, 0.8),
        0 0 50px rgba(14, 165, 233, 0.5),
        0 0 75px rgba(6, 182, 212, 0.3);
    margin-bottom: 0.5rem;
}

.tagline.secondary {
    font-size: 1.2rem;
    color: var(--primary-purple);
    text-shadow: 
        0 0 15px rgba(168, 85, 247, 0.6),
        0 0 30px rgba(168, 85, 247, 0.4);
    animation-delay: 0.7s;
}

.signup-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(157, 78, 221, 0.05);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.signup-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(251, 146, 60, 0.3);
}

.signup-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.6;
}

.form-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 50px;
    color: var(--text-light);
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(224, 224, 255, 0.5);
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(30, 64, 175, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    position: relative;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--dark-blue), var(--electric-blue));
    border: none;
    border-radius: 50px;
    color: white;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 30px rgba(14, 165, 233, 0.5),
        0 0 40px rgba(6, 182, 212, 0.3);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn:hover .btn-glow {
    opacity: 1;
}

.success-message {
    display: none;
    margin-top: 2rem;
    padding: 1rem;
    background: linear-gradient(45deg, rgba(30, 64, 175, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid var(--primary-blue);
    border-radius: 10px;
    color: var(--primary-blue);
    animation: fadeIn 0.5s ease;
}

footer {
    margin-top: 4rem;
    text-align: center;
    animation: fadeIn 1s ease-out 0.6s both;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    font-size: 1.5rem;
}

.social-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary-blue);
    transform: translateY(-3px);
    text-shadow: 0 0 20px currentColor;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .band-name {
        font-size: clamp(2rem, 12vw, 4rem);
    }
    
    .tagline.primary {
        font-size: 1.2rem;
        letter-spacing: 0.25em;
    }
    
    .tagline.secondary {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }
    
    .signup-section {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .email-input {
        width: 100%;
    }
    
    .submit-btn {
        width: 100%;
    }
}