@import url('https://fonts.googleapis.com/css2?family=Pricedown:wght@400&family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    font-family: 'Bebas Neue', cursive;
    overflow: hidden;
    background: #000;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(
        to bottom,
        #FF6B9D 0%,
        #FFA07A 15%,
        #FF8C69 25%,
        #FF6347 35%,
        #FF4500 45%,
        #8B008B 65%,
        #4B0082 75%,
        #191970 85%,
        #0a0a1f 100%
    );
    animation: sunsetPulse 8s ease-in-out infinite;
}

@keyframes sunsetPulse {
    0%, 100% { filter: brightness(1) saturate(1.2); }
    50% { filter: brightness(1.1) saturate(1.4); }
}

.sunset-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.retro-sun {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        rgba(255, 255, 200, 1) 0%,
        rgba(255, 200, 100, 0.95) 20%,
        rgba(255, 150, 0, 0.9) 40%,
        rgba(255, 100, 50, 0.7) 60%,
        rgba(255, 69, 0, 0.4) 80%,
        transparent 100%
    );
    box-shadow: 
        0 0 60px rgba(255, 150, 0, 0.8),
        0 0 120px rgba(255, 100, 0, 0.6),
        0 0 180px rgba(255, 69, 0, 0.4);
    animation: sunPulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes sunPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

.sun-stripes {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}

.sun-stripes::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 18px,
        rgba(255, 0, 100, 0.3) 18px,
        rgba(255, 0, 100, 0.3) 20px
    );
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.city-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent 0%, #000 20%, #000 100%);
}

.city-silhouette::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to top, #000 0%, transparent 100%),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 10px,
            #000 10px,
            #000 12px,
            transparent 12px,
            transparent 30px,
            #000 30px,
            #000 35px,
            transparent 35px,
            transparent 50px,
            #000 50px,
            #000 55px,
            transparent 55px,
            transparent 80px,
            #000 80px,
            #000 90px,
            transparent 90px,
            transparent 120px
        );
    clip-path: polygon(
        0% 100%, 2% 70%, 4% 65%, 6% 68%, 8% 50%, 12% 48%, 14% 40%, 18% 42%, 20% 35%, 
        22% 38%, 26% 30%, 28% 32%, 32% 28%, 34% 55%, 36% 58%, 40% 45%, 42% 48%, 
        46% 35%, 48% 38%, 52% 25%, 54% 28%, 58% 50%, 60% 52%, 64% 40%, 66% 42%, 
        70% 60%, 72% 58%, 76% 45%, 78% 48%, 82% 55%, 84% 52%, 88% 65%, 90% 68%, 
        94% 70%, 96% 75%, 98% 72%, 100% 78%, 100% 100%
    );
}

.palm-trees {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    height: 40%;
    background-image: 
        radial-gradient(ellipse 3px 15px at 10% 60%, #000 40%, transparent 40%),
        radial-gradient(ellipse 3px 15px at 25% 70%, #000 40%, transparent 40%),
        radial-gradient(ellipse 3px 15px at 85% 65%, #000 40%, transparent 40%),
        radial-gradient(ellipse 3px 15px at 92% 72%, #000 40%, transparent 40%);
    background-repeat: no-repeat;
    opacity: 0.7;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.main-logo {
    font-family: 'Pricedown', 'Bebas Neue', cursive;
    font-size: clamp(8rem, 25vw, 28rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 100, 200, 0.6),
        0 0 40px rgba(255, 0, 150, 0.5),
        0 0 70px rgba(255, 0, 150, 0.4),
        0 0 100px rgba(255, 0, 150, 0.3),
        5px 5px 0px rgba(0, 255, 255, 0.3),
        -5px -5px 0px rgba(255, 255, 0, 0.3),
        8px 8px 15px rgba(0, 0, 0, 0.8);
    animation: logoFloat 4s ease-in-out infinite, neonFlicker 3s ease-in-out infinite;
    -webkit-text-stroke: 3px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

@keyframes neonFlicker {
    0%, 100% { 
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 100, 200, 0.6),
            0 0 40px rgba(255, 0, 150, 0.5),
            0 0 70px rgba(255, 0, 150, 0.4),
            0 0 100px rgba(255, 0, 150, 0.3),
            5px 5px 0px rgba(0, 255, 255, 0.3),
            -5px -5px 0px rgba(255, 255, 0, 0.3),
            8px 8px 15px rgba(0, 0, 0, 0.8);
    }
    50% { 
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 1),
            0 0 25px rgba(255, 255, 255, 0.8),
            0 0 35px rgba(255, 100, 200, 0.8),
            0 0 50px rgba(255, 0, 150, 0.7),
            0 0 80px rgba(255, 0, 150, 0.6),
            0 0 120px rgba(255, 0, 150, 0.5),
            6px 6px 0px rgba(0, 255, 255, 0.5),
            -6px -6px 0px rgba(255, 255, 0, 0.5),
            10px 10px 20px rgba(0, 0, 0, 0.9);
    }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, 
        rgba(255, 0, 150, 0.3) 0%, 
        rgba(255, 100, 200, 0.2) 30%, 
        transparent 70%);
    filter: blur(40px);
    animation: glowExpand 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowExpand {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.9; }
}

.tagline {
    margin-top: 2rem;
    font-size: clamp(1.5rem, 4vw, 3rem);
    letter-spacing: 0.3em;
    color: #00ffff;
    text-shadow: 
        0 0 10px rgba(0, 255, 255, 0.8),
        0 0 20px rgba(0, 255, 255, 0.6),
        0 0 30px rgba(0, 255, 255, 0.4),
        2px 2px 5px rgba(0, 0, 0, 0.8);
    animation: taglineGlow 2s ease-in-out infinite;
}

@keyframes taglineGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
    z-index: 100;
    animation: scanlineMove 8s linear infinite;
}

@keyframes scanlineMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

.vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    z-index: 99;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-logo {
        -webkit-text-stroke: 2px rgba(0, 0, 0, 0.5);
    }
    
    .tagline {
        letter-spacing: 0.2em;
    }
}

@media (max-width: 480px) {
    .main-logo {
        -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
    }
}
