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

body {
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(180deg, #1C1C1C 0%, #212121 100%);
    color: #E0E0E0;
}

.container {
    text-align: center;
    max-width: 560px;
    width: 100%;
    padding: 40px 20px;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    color: #9E9E9E;
    margin-bottom: 2.5rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.apps {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #2A2A2A;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #E0E0E0;
    text-decoration: none;
    border-radius: 12px;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    cursor: pointer;
}

.app-link:hover {
    background: #303030;
    border-color: rgba(82, 187, 98, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
}

.app-link--disabled {
    opacity: 0.5;
    cursor: default;
}

.app-link--disabled:hover {
    background: #2A2A2A;
    border-color: rgba(255, 255, 255, 0.06);
    transform: none;
    box-shadow: none;
}

.app-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
}

.app-info {
    text-align: left;
    flex: 1;
}

.app-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: #FFFFFF;
}

.app-desc {
    font-size: 0.85rem;
    color: #9E9E9E;
    margin-top: 3px;
}

.app-badge {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #9E9E9E;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

footer {
    margin-top: 48px;
    font-size: 0.8rem;
    color: #616161;
    letter-spacing: 0.04em;
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .app-link { padding: 16px 18px; gap: 12px; }
    .app-icon { font-size: 1.5rem; }
}
