:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #3b82f6; /* A nice blue, can be adjusted */
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Background Gradient Animation */
.background-animation {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, #1a1a2e 0%, #000000 70%);
    z-index: -1;
    animation: pulseBackground 10s ease-in-out infinite alternate;
}

.container {
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.hero-text {
    font-size: 4rem; /* Responsive adjustment below */
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    cursor: default;
    transition: text-shadow 0.3s ease;
}

.hero-text:hover {
    text-shadow: 0 0 30px rgba(165, 180, 252, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseBackground {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2.5rem;
        padding: 0 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 1.8rem;
    }
}
