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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20vh;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

.container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.company-name {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 300;
    background: linear-gradient(45deg, #ffffff, #e0e7ff, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
    line-height: 1.2;
    animation: fadeInUp 1.5s ease-out, shimmer 3s ease-in-out infinite;
    position: relative;
    white-space: nowrap;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.company-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    animation: fadeInUp 2s ease-out 0.5s both, glow 2s ease-in-out infinite alternate;
    border-radius: 1px;
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes glow {
    0% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
        filter: brightness(1.2);
    }
}

@media (max-width: 768px) {
    .content {
        padding: 1rem;
    }
    
    .company-name {
        font-size: clamp(1.5rem, 8vw, 3rem);
        letter-spacing: 0.02em;
    }
    
    .slogan {
        font-size: clamp(0.7rem, 2.5vw, 1.2rem);
        margin-top: 1rem;
        letter-spacing: 0.05em;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: clamp(1rem, 7vw, 2rem);
    }
    
    .company-name::after {
        width: 40px;
        bottom: -8px;
    }
    
    .slogan {
        font-size: clamp(0.5rem, 2vw, 0.9rem);
        margin-top: 0.8rem;
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 80%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.particle:nth-child(3) {
    top: 30%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    top: 70%;
    left: 30%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 10%;
    animation-delay: 3s;
    animation-duration: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.8;
    }
}

.company-name:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.slogan {
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 2s ease-out 1s both, textGlow 4s ease-in-out infinite;
    position: relative;
    white-space: nowrap;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 
            0 0 5px rgba(255, 255, 255, 0.3),
            0 0 10px rgba(255, 255, 255, 0.2);
    }
    50% {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(255, 255, 255, 0.3),
            0 0 30px rgba(255, 255, 255, 0.1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .company-name,
    .company-name::after,
    .slogan,
    body,
    .container::before,
    .container::after,
    .particle {
        animation: none !important;
    }
}

/* Force animations on desktop - debug version */
@media (min-width: 769px) {
    body {
        animation: gradientShift 8s ease-in-out infinite !important;
    }
    
    .container::before {
        animation: pulse 4s ease-in-out infinite !important;
    }
    
    .container::after {
        animation: rotate 20s linear infinite !important;
    }
    
    .company-name {
        animation: fadeInUp 1.5s ease-out, shimmer 3s ease-in-out infinite !important;
    }
    
    .company-name::after {
        animation: fadeInUp 2s ease-out 0.5s both, glow 2s ease-in-out infinite alternate !important;
    }
    
    .slogan {
        animation: fadeInUp 2s ease-out 1s both, textGlow 4s ease-in-out infinite !important;
    }
    
    .particle {
        animation: float 6s ease-in-out infinite !important;
    }
}