* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 88, 128, 0.6);
    border-radius: 50%;
    animation: float 3s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Container */
.container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 90%;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Container */
.logo-container {
    margin-bottom: 3rem;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    animation: fadeIn 2s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.logo {
    max-width: 300px;
    width: 80vw;
    height: auto;
    filter: none;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.logo:hover {
    transform: scale(1.05);
}

.glow-effect {
    display: none;
}

/* Tagline - Typewriter Effect */
.tagline {
    margin: 2rem 0 3rem;
    min-height: 60px;
    opacity: 0;
    animation: fadeIn 1s ease-out 2.2s forwards;
}

.typewriter {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ff5880, #ff88a8, #ffb3c6, #ff5880);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.cursor {
    animation: blink 0.7s infinite;
    -webkit-text-fill-color: #ff5880;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 5.2s forwards;
}

.social-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 88, 128, 0.3);
    border-radius: 50%;
    color: #ff5880;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: rgba(255, 88, 128, 0.15);
    border-color: #ff5880;
    transform: scale(1.1);
}

/* Decorative Line */
.music-wave {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 6.2s forwards;
}

.bar {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff5880, transparent);
    animation: lineGlow 2s ease-in-out infinite;
}

.bar:nth-child(1) {
    width: 40px;
    animation-delay: 0s;
}
.bar:nth-child(2) {
    animation-delay: 0.2s;
}
.bar:nth-child(3) {
    animation-delay: 0.4s;
}
.bar:nth-child(4) {
    animation-delay: 0.6s;
}
.bar:nth-child(5) {
    animation-delay: 0.8s;
}
.bar:nth-child(6) {
    animation-delay: 1s;
}
.bar:nth-child(7) {
    animation-delay: 1.2s;
}
.bar:nth-child(8) {
    width: 40px;
    animation-delay: 1.4s;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 5px rgba(255, 88, 128, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(255, 88, 128, 0.8);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo {
        max-width: 250px;
    }

    .social-icons {
        gap: 1.5rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .music-wave {
        margin-top: 2rem;
        gap: 0.5rem;
    }

    .bar {
        width: 40px;
    }

    .bar:nth-child(1), .bar:nth-child(8) {
        width: 25px;
    }

    .tagline {
        margin: 1.5rem 0 2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 200px;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .typewriter {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .container {
        max-height: 90vh;
        overflow-y: auto;
    }

    .logo {
        max-width: 150px;
    }

    .tagline {
        margin: 1rem 0;
        min-height: 40px;
    }

    .social-icons {
        margin: 1.5rem 0;
        gap: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .music-wave {
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .bar {
        width: 30px;
    }

    .bar:nth-child(1), .bar:nth-child(8) {
        width: 20px;
    }
}