:root {
    --bg: #050810;
    --card-bg: rgba(255, 255, 255, 0.03);
    --primary: #3b82f6;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-y: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(5, 8, 16, 0) 70%);
    border-radius: 50%;
    filter: blur(50px);
}

.blob-1 {
    top: -100px;
    right: -100px;
    animation: float 20s infinite alternate;
}

.blob-2 {
    bottom: -100px;
    left: -100px;
    animation: float 20s infinite alternate-reverse;
}

@keyframes float {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(100px, 100px);
    }
}

.container {
    max-width: 900px;
    width: 100%;
    padding: 2rem;
    text-align: center;
}

.header {
    margin-bottom: 4rem;
}

.header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
}

.header h1 span {
    color: var(--primary);
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.launcher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem 2rem;
    transition: transform 0.4s, border-color 0.4s;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.project-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.project-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.project-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-launch {
    background: var(--primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

.btn-launch:hover {
    background: #2563eb;
    transform: scale(1.05);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.project-card:hover .card-glow {
    opacity: 1;
}

footer {
    margin-top: 5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

@media (max-width: 600px) {
    .header h1 {
        font-size: 2.5rem;
    }

    body {
        height: auto;
        padding: 4rem 0;
        overflow-y: auto;
    }
}