:root {
    --coffee-100: #faf8f6;
    --coffee-200: #efe8e1;
    --coffee-400: #c0a487;
    --coffee-500: #b18f6a;
    --coffee-700: #816344;
    --coffee-900: #5c4730;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-family: "Segoe UI", Tahoma, sans-serif;
    background: linear-gradient(160deg, var(--coffee-100) 0%, var(--coffee-200) 100%);
    color: #1f1f1f;
}

.launcher-page {
    min-height: 100vh;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.launcher-header {
    width: 100%;
    max-width: 860px;
    padding: 0 4px;
    color: var(--coffee-900);
    text-align: center;
}

.launcher-header h1 {
    margin: 0 0 8px 0;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
}

.launcher-header p {
    margin: 0;
    opacity: 0.8;
    font-size: 14px;
}

.launcher-grid {
    width: 100%;
    max-width: 860px;
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 20px;
}

.launcher-tile {
    aspect-ratio: 1 / 1;
    border: 1px solid #d7c8bb;
    border-radius: 8px;
    text-decoration: none;
    color: var(--coffee-900);
    background: linear-gradient(160deg, #ffffff 0%, #f7f1eb 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

.launcher-tile:hover,
.launcher-tile:focus {
    border-color: var(--coffee-500);
    box-shadow: 0 12px 24px rgba(92, 71, 48, 0.22);
    transform: translateY(-3px);
    outline: none;
}

.launcher-tile:focus-visible {
    outline: 3px solid rgba(177, 143, 106, 0.45);
    outline-offset: 2px;
}

.launcher-tile-title {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
}

@media (max-width: 700px) {
    .launcher-page {
        padding: 14px;
    }

    .launcher-header h1 {
        font-size: 24px;
    }

    .launcher-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .launcher-tile-title {
        font-size: 30px;
    }
}
