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

body {
    font-family: 'Space Grotesk', sans-serif;
    overflow: hidden;
    background: #000;
    color: #fff;
}

/* Fullscreen Video Background */
.video-background {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

/* Overlay for better contrast */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(20, 0, 40, 0.6) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
    backdrop-filter: blur(1px);
}

/* Main Content Container */
.content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
    animation: fadeInDown 1.5s ease-out;
}

.logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.5));
}

/* Coming Soon Text */
.coming-soon {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    margin: 2rem 0;
    background: linear-gradient(
        45deg,
        #ff00ff,
        #00ffff,
        #ff00ff,
        #00ffff
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite, glitchText 5s infinite;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    position: relative;
}

/* Amazon Music Link */
.amazon-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    margin: 2rem 0;
    background: rgba(0, 168, 255, 0.1);
    border: 2px solid #00a8ff;
    border-radius: 50px;
    text-decoration: none;
    color: #00a8ff;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

.amazon-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 168, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.amazon-link:hover::before {
    width: 400px;
    height: 400px;
}

.amazon-link:hover {
    background: rgba(0, 168, 255, 0.2);
    border-color: #00a8ff;
    box-shadow: 0 0 30px rgba(0, 168, 255, 0.5);
    transform: translateY(-5px);
}

.amazon-icon {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(0, 168, 255, 0.5));
}

.amazon-text {
    position: relative;
    z-index: 1;
}

/* Contact */
.contact {
    margin-top: 3rem;
    animation: fadeInUp 1.5s ease-out 0.7s both;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.contact-link:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.email-icon {
    width: 24px;
    height: 24px;
}

/* Decorative Glitch Lines */
.glitch-line {
    position: fixed;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff00ff, transparent);
    opacity: 0.3;
    animation: glitchMove 3s infinite;
}

.line-1 {
    top: 20%;
    left: 0;
    width: 100%;
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    left: 0;
    width: 100%;
    animation-delay: 1s;
}

.line-3 {
    top: 80%;
    left: 0;
    width: 100%;
    animation-delay: 2s;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes glitchText {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
    98% {
        transform: translate(2px, 2px);
    }
}

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

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

@keyframes glitchMove {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 350px;
    }
    
    .coming-soon {
        font-size: clamp(2rem, 8vw, 4rem);
        letter-spacing: 0.15em;
    }
    
    .amazon-link {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        gap: 0.8rem;
    }
    
    .amazon-icon {
        width: 30px;
        height: 30px;
    }
    
    .contact-link {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    .content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 250px;
    }
    
    .coming-soon {
        margin: 1.5rem 0;
    }
    
    .amazon-link {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
    }
}
