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

:root {
    --bg: #030611;
    --card: rgba(20, 19, 54, 0.68);
    --card-hover: rgba(29, 27, 69, 0.86);
    --border: rgba(142, 150, 255, 0.20);
    --border-hover: rgba(91, 181, 255, 0.48);
    --text: #ffffff;
    --muted: #8d91b7;
    --blue: #65a9ff;
    --purple: #a15cff;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Orbitron", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 50% -10%, rgba(88, 75, 211, 0.22), transparent 36%),
        radial-gradient(circle at 100% 70%, rgba(39, 96, 255, 0.10), transparent 30%),
        var(--bg);
}

a {
    text-decoration: none;
    color: inherit;
}

.grid-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .18;
    background-image:
        linear-gradient(rgba(111, 126, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111, 126, 255, .06) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.bg-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: .18;
}

.glow-one {
    top: 5%;
    left: -220px;
    background: #5146e5;
}

.glow-two {
    right: -220px;
    bottom: 0;
    background: #1688ff;
}

.page {
    width: min(720px, calc(100% - 28px));
    margin: 0 auto;
    padding: 58px 0 28px;
    position: relative;
    z-index: 2;
}

.hero {
    text-align: center;
    margin-bottom: 34px;
}

.brand-mark {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 21px;
    display: grid;
    place-items: center;
    position: relative;
    background: linear-gradient(145deg, #151e50, #10112e);
    border: 1px solid rgba(115, 183, 255, .42);
    box-shadow:
        0 0 0 5px rgba(89, 102, 255, .06),
        0 0 40px rgba(77, 116, 255, .24),
        inset 0 1px 0 rgba(255,255,255,.16);
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 23px;
    border: 1px solid rgba(191, 94, 255, .35);
    pointer-events: none;
}

.brand-mark span {
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #6fd5ff, #8e6cff, #e16bff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero h1 {
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.hero h1 span {
    background: linear-gradient(90deg, #71bfff, #a05cff, #ef71dc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    margin-top: 10px;
    color: #c2c5e4;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.description {
    max-width: 560px;
    margin: 14px auto 0;
    color: var(--muted);
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-card {
    min-height: 92px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background:
        linear-gradient(110deg, rgba(27, 29, 72, .80), rgba(19, 16, 48, .72));
    backdrop-filter: blur(18px);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, .22),
        inset 0 1px 0 rgba(255,255,255,.035);
    transition: transform .3s ease, border-color .3s ease,
                background .3s ease, box-shadow .3s ease;
}

.link-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(91, 108, 255, .18);
    filter: blur(35px);
    transition: .35s ease;
}

.link-card:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: var(--border-hover);
    background: var(--card-hover);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, .34),
        0 0 28px rgba(91, 108, 255, .10);
}

.link-card:hover::before {
    transform: scale(1.8);
}

.icon-wrap {
    width: 62px;
    height: 62px;
    min-width: 62px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 7px 18px rgba(0,0,0,.25);
}

.icon-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.link-info {
    flex: 1;
    min-width: 0;
}

.link-info h2 {
    font-size: clamp(15px, 3vw, 18px);
    font-weight: 700;
    letter-spacing: -.4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link-info p {
    margin-top: 6px;
    color: #8589ad;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #80baff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.07);
    font-family: Arial, sans-serif;
    font-size: 21px;
    transition: .3s ease;
}

.link-card:hover .arrow {
    color: #fff;
    background: linear-gradient(135deg, #4e86ff, #965cff);
    box-shadow: 0 0 20px rgba(102, 108, 255, .35);
    transform: rotate(4deg);
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-top: 32px;
    color: #555a82;
    font-size: 8px;
    letter-spacing: 2.5px;
}

footer i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #7d63ff;
    box-shadow: 0 0 9px #7d63ff;
}

@media (max-width: 520px) {
    .page {
        width: min(100% - 20px, 720px);
        padding-top: 34px;
    }

    .hero {
        margin-bottom: 25px;
    }

    .brand-mark {
        width: 60px;
        height: 60px;
        border-radius: 18px;
    }

    .link-card {
        min-height: 84px;
        padding: 11px;
        gap: 13px;
        border-radius: 14px;
    }

    .icon-wrap {
        width: 56px;
        height: 56px;
        min-width: 56px;
        border-radius: 13px;
    }

    .arrow {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 19px;
    }

    .description {
        font-size: 13px;
    }
}
