* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    height: 100vh;
    font-family: 'Sora', sans-serif;
    background: #0b1120;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 2;
}

/* Subtle animated glow */
body::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(56,189,248,0.15), transparent 70%);
    animation: float 8s ease-in-out infinite alternate;
}

@keyframes float {
    from { transform: translate(-20%, -20%); }
    to { transform: translate(20%, 20%); }
}

h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(270deg, #38bdf8, #6366f1, #a855f7);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 10s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.subtitle {
    margin-top: 20px;
    font-size: 20px;
    color: #94a3b8;
}

.button {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(90deg, #6366f1, #38bdf8);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.footer {
    margin-top: 60px;
    font-size: 14px;
    color: #64748b;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #38bdf8;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor.expand {
    transform: translate(-50%, -50%) scale(1.6);
}