* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

body.app-links-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 50% 18%, rgba(115, 49, 217, .42), transparent 35%),
        radial-gradient(circle at 50% 100%, rgba(255, 86, 10, .22), transparent 34%),
        linear-gradient(145deg, #08031d, #16063a 55%, #07021c);
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.store-card {
    position: relative;
    width: min(100%, 510px);
    padding: 43px 38px 40px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(168, 113, 239, .55);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(52, 25, 99, .94), rgba(25, 12, 56, .96));
    box-shadow: 0 28px 75px rgba(0, 0, 0, .48), 0 0 35px rgba(114, 48, 217, .24);
}

.store-card::after {
    position: absolute;
    right: -20%;
    bottom: -19%;
    left: -20%;
    height: 34%;
    content: "";
    border-radius: 50%;
    border-top: 1px solid #ff6512;
    box-shadow: 0 -4px 20px rgba(255, 91, 12, .4);
}

.omega-mark {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: brightness(1.5) drop-shadow(0 0 9px rgba(113, 92, 255, .48));
}

.app-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-top: 17px;
}

.app-brand-mark {
    position: relative;
    width: 38px;
    height: 38px;
    background: repeating-linear-gradient(90deg, #ff5700 0 5px, transparent 5px 8px);
}

.app-brand-mark::before,
.app-brand-mark::after {
    position: absolute;
    right: 0;
    left: 0;
    height: 3px;
    content: "";
    background: #211047;
}

.app-brand-mark::before { top: 10px; }
.app-brand-mark::after { bottom: 10px; }

.app-brand > span:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-brand strong {
    font-size: 27px;
    line-height: 1;
    letter-spacing: -.5px;
}

.app-brand small {
    margin-top: 5px;
    color: #cfc4dd;
    font-size: 10px;
    letter-spacing: 3.5px;
}

h1 {
    margin: 31px 0 10px;
    font-size: 27px;
}

p {
    max-width: 390px;
    margin: 0 auto 27px;
    color: #c8bfd6;
    font-size: 14px;
    line-height: 1.55;
}

.store-actions {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.store-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 62px;
    padding: 10px 14px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    background: rgba(9, 5, 29, .72);
    box-shadow: 0 9px 20px rgba(0,0,0,.2);
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.store-button:hover,
.store-button:focus {
    color: #fff;
    border-color: #a85fea;
    outline: none;
    box-shadow: 0 10px 24px rgba(99, 41, 190, .3);
    text-decoration: none;
    transform: translateY(-2px);
}

.store-button i {
    font-size: 27px;
}

.store-button span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 15px;
    font-weight: 700;
}

.store-button small {
    margin-bottom: 2px;
    color: #bdb3cb;
    font-size: 10px;
    font-weight: 400;
}

.store-button.google i { color: #ff6a15; }

@media (max-width: 520px) {
    body.app-links-page { padding: 16px; }
    .store-card { padding: 34px 20px 31px; border-radius: 20px; }
    .store-actions { grid-template-columns: 1fr; }
    h1 { font-size: 24px; }
}
