* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #0f172a;
    color: #f8fafc;
}

.launcher-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.launcher-card {
    width: 100%;
    max-width: 1100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);
}

.launcher-card h1 {
    margin: 0 0 10px;
    font-size: 42px;
    line-height: 1.1;
}

.launcher-desc {
    margin: 0 0 30px;
    color: #cbd5e1;
    font-size: 18px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.tool-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.16);
}

.tool-card-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

.tool-card h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.tool-card p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.5;
}

@media (max-width: 800px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .launcher-card {
        padding: 24px;
    }

    .launcher-card h1 {
        font-size: 32px;
    }
}