@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #4169E1;
    --text-color: #ffffff;
    --background: #0a0f1c;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-color);
    min-height: 100vh;
    overflow: hidden;
}

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

.content {
    text-align: center;
    z-index: 1;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.logo i {
    color: var(--primary-color);
}

.title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.gradient-circle {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.15) 0%, rgba(65, 105, 225, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.floating-shapes .shape {
    position: absolute;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 50%;
}

.floating-shapes .shape:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 20%;
    animation: float 6s ease-in-out infinite;
}

.floating-shapes .shape:nth-child(2) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 20%;
    animation: float 8s ease-in-out infinite reverse;
}

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

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
} 