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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a1a;
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: #e0e0e0;
    overflow: hidden;
}

#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d2ff, #7b2ff7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    animation: fadeUp 1s ease-out;
}

.subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-top: 0.5rem;
    animation: fadeUp 1s ease-out 0.2s both;
}

.links {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeUp 1s ease-out 0.4s both;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    color: #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    will-change: transform;
}

.card:hover {
    border-color: rgba(123, 47, 247, 0.4);
    box-shadow: 0 8px 40px rgba(123, 47, 247, 0.15);
}

.card-icon {
    font-size: 2.5rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
}

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