* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #08090d;
    --card: #11131a;
    --card-hover: #181b24;
    --text: #ffffff;
    --muted: #a5a8b3;
    --border: rgba(255,255,255,0.09);
    --accent: #ffbf00;
    --accent-dark: #e0a700;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}

.page {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    padding: 50px 18px;
    background:
        radial-gradient(circle at top,
        rgba(255,191,0,0.12),
        transparent 35%),
        var(--bg);
}

.container {
    width: 100%;
    max-width: 620px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* Background */

.glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    pointer-events: none;
}

.glow-one {
    background: #ffbf00;
    top: -100px;
    left: -100px;
}

.glow-two {
    background: #0066ff;
    bottom: -120px;
    right: -100px;
}

/* Profile */

.profile {
    text-align: center;
}

.logo-box {
    width: 92px;
    height: 92px;
    border-radius: 24px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        145deg,
        #24262e,
        #0e0f14
    );

    border: 1px solid var(--border);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.35),
        inset 0 0 25px rgba(255,255,255,0.03);
}

.logo-text {
    text-align: center;
    line-height: 1;
}

.logo-text span {
    display: block;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-text small {
    display: block;
    font-size: 7px;
    margin-top: 5px;
    letter-spacing: 2px;
    color: var(--accent);
}

h1 {
    font-size: 27px;
    font-weight: 800;
    margin-bottom: 7px;
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--accent);
    font-size: 12px;
    font-weight: 600;

    margin-bottom: 13px;
}

.tagline {
    color: #e4e5e9;
    font-size: 14px;
    line-height: 1.5;
}

.location {
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
}

/* Social */

.socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
}

.socials a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;

    border-radius: 50%;

    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);

    transition: 0.25s ease;
}

.socials a:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-3px);
}

/* Cards */

.buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 72px;
    padding: 12px 15px;

    border-radius: 17px;

    background: rgba(17,19,26,0.92);
    border: 1px solid var(--border);

    color: white;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border 0.25s ease;

    backdrop-filter: blur(12px);
}

.link-card:hover {
    transform: translateY(-3px);
    background: var(--card-hover);
    border-color: rgba(255,191,0,0.35);
}

.icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: rgba(255,255,255,0.07);

    font-size: 20px;
}

.link-content {
    flex: 1;
    margin-left: 13px;
}

.link-content strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.link-content small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}

.arrow {
    color: #777b87;
    font-size: 12px;
    margin-left: 10px;
}

/* WhatsApp */

.whatsapp {
    border-color: rgba(37,211,102,0.3);
}

.whatsapp .icon {
    color: #25d366;
}

/* Featured */

.featured {
    background:
        linear-gradient(
            110deg,
            rgba(255,191,0,0.16),
            rgba(255,255,255,0.04)
        );

    border-color: rgba(255,191,0,0.35);
}

.featured .icon {
    color: var(--accent);
}

.badge {
    position: absolute;
    top: 8px;
    right: 12px;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;

    padding: 4px 7px;
    border-radius: 5px;

    background: var(--accent);
    color: #000;
}

/* Product */

.product-icon {
    color: var(--accent);
}

/* Section */

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 17px 4px 2px;

    color: #858995;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title::before,
.section-title::after {
    content: "";
    height: 1px;
    background: var(--border);
    flex: 1;
}

/* Share */

.share-btn,
.copy-btn {
    width: 100%;
    margin-top: 15px;

    padding: 14px;

    border-radius: 14px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.25s ease;
}

.share-btn {
    background: var(--accent);
    color: #000;
    border: none;
}

.share-btn:hover {
    background: #ffd34d;
    transform: translateY(-2px);
}

.copy-btn {
    background: transparent;
    color: #aaaeba;
    border: 1px solid var(--border);
}

.copy-btn:hover {
    color: white;
    border-color: rgba(255,255,255,0.25);
}

/* Footer */

footer {
    text-align: center;
    padding: 30px 0 15px;
}

.footer-brand {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent);
}

footer p {
    color: #6e727e;
    font-size: 9px;
    margin: 9px 0;
}

footer span {
    color: #565a65;
    font-size: 9px;
}

/* Toast */

.toast {
    position: fixed;

    left: 50%;
    bottom: 25px;

    transform:
        translate(-50%, 100px);

    padding: 12px 18px;

    border-radius: 12px;

    background: #1b1e27;
    border: 1px solid var(--border);

    color: white;
    font-size: 12px;

    opacity: 0;

    transition: 0.3s ease;

    z-index: 100;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Mobile */

@media (max-width: 480px) {

    .page {
        padding: 35px 13px;
    }

    h1 {
        font-size: 24px;
    }

    .logo-box {
        width: 82px;
        height: 82px;
    }

    .link-card {
        min-height: 68px;
        border-radius: 15px;
    }

    .icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .link-content strong {
        font-size: 13px;
    }

    .link-content small {
        font-size: 10px;
    }
}

/* Desktop */

@media (min-width: 900px) {

    .page {
        padding-top: 70px;
    }

    .container {
        max-width: 650px;
    }

    .link-card {
        min-height: 76px;
    }
}