/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0b0c2a;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Hero section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}



/* Content container */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* Logo container */
.logo-container {
    margin: 0 auto 3rem;
    text-align: center;
}

.logo {
    max-width: 200px;
    height: auto;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Headline */
.headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #00BFFF, #00CFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

/* Description */
.description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Call to action button */
.cta-button {
    background: linear-gradient(90deg, #00BFFF, #8A2BE2);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 191, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .logo-container {
        margin-bottom: 2rem;
    }
    
    .headline {
        margin-bottom: 1rem;
    }
    
    .description {
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 120px;
    }
    
    .logo-container {
        margin-bottom: 1.5rem;
    }
}
