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

:root {
    --bg: #000000;
    --surface: #0f0f0f;
    --border: #1f1f1f;
    --border-hover: #2e2e2e;
    --fg: #f5f5f5;
    --muted: #555555;
    --muted-light: #888888;
    --primary: #e8c547;
    --teal: #61faf5;
    --radius: 10px;
}

html,
body {
    height: 100%;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'DM Sans', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(56px, 10vw, 96px) clamp(16px, 5vw, 32px) clamp(56px, 10vw, 96px);
    position: relative;
    overflow-x: hidden;
}

::selection {
    background: var(--teal);
    color: #000;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(97, 250, 245, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: radial-gradient(ellipse 100% 45% at 50% 0%, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 100% 45% at 50% 0%, black 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.page {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* ── Header ── */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: clamp(24px, 5vw, 40px);
    animation: fadeUp 0.5s ease both;
}

.logo {
    width: clamp(80px, 20vw, 104px);
    height: clamp(80px, 20vw, 104px);
    object-fit: contain;
}

.brand {
    font-size: clamp(18px, 4.5vw, 22px);
    font-weight: 600;
    letter-spacing: -0.2px;
    color: var(--fg);
}

.tagline {
    font-size: clamp(12px, 3vw, 13px);
    font-weight: 400;
    color: var(--muted-light);
    text-align: center;
    line-height: 1.65;
}

/* ── Link cards ── */
a.card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: clamp(12px, 2.5vw, 15px) clamp(14px, 3vw, 18px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--fg);
    margin-bottom: clamp(10px, 2.5vw, 14px);
    transition: border-color 0.15s, background 0.15s, transform 0.12s;
    animation: fadeUp 0.5s ease both;
}

a.card:hover {
    border-color: var(--border-hover);
    background: #141414;
    transform: translateY(-1px);
}

a.card:active {
    transform: translateY(0);
}

a.card.featured {
    border-color: rgba(232, 197, 71, 0.18);
    background: rgba(232, 197, 71, 0.04);
}

a.card.featured:hover {
    border-color: rgba(232, 197, 71, 0.3);
    background: rgba(232, 197, 71, 0.07);
}

.card-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 18px;
    height: 18px;
}

.card-text {
    flex: 1;
    min-width: 0;
}

.card-title {
    font-size: clamp(13px, 3.5vw, 14px);
    font-weight: 500;
    color: var(--fg);
    line-height: 1.3;
}

a.card.featured .card-title {
    color: var(--primary);
}

.card-sub {
    font-size: clamp(11px, 2.5vw, 12px);
    color: var(--muted-light);
    margin-top: 3px;
}

.card-arrow {
    width: 14px;
    height: 14px;
    color: var(--border-hover);
    flex-shrink: 0;
    transition: transform 0.15s, color 0.15s;
}

a.card:hover .card-arrow {
    transform: translateX(2px);
    color: var(--muted);
}

/* ── Divider ── */
.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: clamp(28px, 5vw, 36px) 0 clamp(16px, 4vw, 22px);
    animation: fadeUp 0.5s ease both;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.divider span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

/* ── Social grid ── */
.socials {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(8px, 2vw, 10px);
    animation: fadeUp 0.5s ease both;
}

a.social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: clamp(14px, 3vw, 17px) 4px clamp(12px, 2.5vw, 14px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--muted-light);
    font-size: clamp(9px, 2vw, 10px);
    font-weight: 400;
    transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.12s;
}

a.social:hover {
    background: #141414;
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

a.social svg {
    width: clamp(17px, 4vw, 19px);
    height: clamp(17px, 4vw, 19px);
    flex-shrink: 0;
}

@media (max-width: 320px) {
    a.social span {
        display: none;
    }
}

a.social.x:hover {
    color: #ffffff;
    border-color: #333;
}

a.social.ig:hover {
    color: #E1306C;
    border-color: rgba(225, 48, 108, 0.25);
}

a.social.fb:hover {
    color: #1877F2;
    border-color: rgba(24, 119, 242, 0.25);
}

a.social.li:hover {
    color: #0A66C2;
    border-color: rgba(10, 102, 194, 0.25);
}

a.social.yt:hover {
    color: #FF0000;
    border-color: rgba(255, 0, 0, 0.25);
}

/* ── Footer ── */
.footer {
    margin-top: clamp(40px, 7vw, 52px);
    text-align: center;
    animation: fadeUp 0.5s ease both;
    padding-bottom: clamp(40px, 8vw, 60px);
}

.footer p {
    font-size: 11px;
    color: var(--muted);
    line-height: 2;
}

.footer a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
}

.footer a:hover {
    color: var(--muted-light);
}

* {
    scrollbar-width: none;     
    -ms-overflow-style: none; 
}

*::-webkit-scrollbar {
    display: none;              
}

/* ── Animations ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.d1 {
    animation-delay: 0.05s;
}

.d2 {
    animation-delay: 0.10s;
}

.d3 {
    animation-delay: 0.15s;
}

.d4 {
    animation-delay: 0.20s;
}

.d5 {
    animation-delay: 0.25s;
}

.d6 {
    animation-delay: 0.30s;
}

.d7 {
    animation-delay: 0.35s;
}

.d8 {
    animation-delay: 0.40s;
}