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

body {
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(ellipse at top left, rgba(0, 82, 255, 0.22), transparent 45%),
        radial-gradient(ellipse at bottom right, rgba(129, 140, 248, 0.18), transparent 40%),
        linear-gradient(160deg, #07090f 0%, #0b0e18 50%, #10182a 100%);
    color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.launcher-page { width: 100%; max-width: 860px; }

.launcher-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 36px;
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.launcher-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.launcher-logo {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.launcher-brand h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.launcher-brand p {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 4px;
}

.launcher-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 640px) {
    .launcher-options { grid-template-columns: 1fr; }
    .launcher-card { padding: 24px; }
}

.layout-option {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.28);
    border-radius: 22px;
    padding: 0;
    cursor: pointer;
    text-align: left;
    color: inherit;
    transition: transform 0.22s ease, border-color 0.22s, box-shadow 0.22s;
    overflow: hidden;
    position: relative;
}

.layout-option:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.layout-option-1:hover { border-color: rgba(129, 140, 248, 0.55); }
.layout-option-2:hover { border-color: rgba(0, 102, 255, 0.7); }

.layout-option-preview {
    height: 150px;
    position: relative;
}

.preview-1 {
    background:
        radial-gradient(circle at top right, rgba(129, 140, 248, 0.35), transparent 55%),
        linear-gradient(160deg, #0b0e18, #111827);
}

.preview-1::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 28px;
    transform: translateX(-50%);
    width: 46%;
    height: 88px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.preview-2 {
    background: linear-gradient(135deg, #0052ff 0%, #0039b8 100%);
}

.preview-2::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 18px;
    bottom: 18px;
    width: 34px;
    background: #0a0a0a;
    border-radius: 8px;
}

.preview-2::after {
    content: '';
    position: absolute;
    left: 58px;
    right: 16px;
    top: 28px;
    height: 58px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.layout-option-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.layout-option-body strong {
    font-size: 17px;
    font-weight: 800;
}

.layout-option-body span {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.45;
}

.layout-option-cta {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    color: #93c5fd;
}

.layout-option-2 .layout-option-cta { color: #93c5fd; }
.layout-option-1 .layout-option-cta { color: #a5b4fc; }

.launcher-remember {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    font-size: 13px;
    color: #94a3b8;
    cursor: pointer;
    user-select: none;
}

.launcher-remember input { accent-color: #0052ff; width: 16px; height: 16px; }
