@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:wght@700&display=swap');

:root {
    --forest: #06351f;
    --forest-2: #0a4b2b;
    --deep: #021d12;
    --gold: #e8c878;
    --gold-light: #f7e7b2;
    --cream: #fff8e8;
    --text: #f8f4e8;
    --muted: rgba(248, 244, 232, .78);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 50% 0%, rgba(41, 112, 66, .45), transparent 34rem),
        linear-gradient(145deg, #021d12 0%, #06351f 48%, #021d12 100%);
}

.link-page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 28px 16px 34px;
}

.background-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .12;
    pointer-events: none;
}

.glow-1 {
    background: #86b63d;
    top: -160px;
    left: -160px;
}

.glow-2 {
    background: #e8c878;
    right: -200px;
    bottom: -180px;
}

.profile-card {
    width: min(100%, 620px);
    text-align: center;
    position: relative;
    z-index: 2;
}

.profile-logo-wrap {
    width: min(270px, 68vw);
    aspect-ratio: 1;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--forest);
    box-shadow:
        0 0 0 2px rgba(232, 200, 120, .75),
        0 16px 45px rgba(0, 0, 0, .38);
}

.profile-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

h1 {
    margin: 10px 0 7px;
    font-size: clamp(1.35rem, 4vw, 2rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: .045em;
    color: var(--cream);
}

.tagline {
    margin: 0;
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .23em;
}

.intro {
    max-width: 500px;
    margin: 15px auto 25px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.65;
}

.links-list {
    display: grid;
    gap: 13px;
}

.link-button {
    min-height: 66px;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid rgba(232, 200, 120, .55);
    border-radius: 18px;
    background: rgba(3, 40, 23, .82);
    color: var(--cream);
    text-decoration: none;
    box-shadow: 0 9px 25px rgba(0, 0, 0, .18);
    backdrop-filter: blur(10px);
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.link-button:hover {
    transform: translateY(-3px);
    background: rgba(13, 78, 44, .95);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .28);
}

.primary-link {
    background: linear-gradient(135deg, #0d5a32, #06351f);
    border-color: var(--gold);
}

.button-icon,
.button-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
}

.button-icon {
    background: rgba(232, 200, 120, .13);
    color: var(--gold-light);
    font-size: 1.18rem;
}

.button-text {
    font-size: .87rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.button-arrow {
    justify-self: end;
    color: rgba(247, 231, 178, .75);
    font-size: 1rem;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 25px 0 24px;
}

.social-circle {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(232, 200, 120, .48);
    border-radius: 50%;
    background: rgba(3, 40, 23, .7);
    color: var(--gold-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.social-circle:hover {
    transform: translateY(-3px);
    background: var(--gold);
    color: var(--deep);
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(247, 231, 178, .62);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .16em;
}

.footer-dot {
    color: var(--gold);
}

@media (max-width: 480px) {
    .link-page {
        padding-top: 20px;
    }

    .profile-logo-wrap {
        width: 220px;
    }

    .intro {
        font-size: .83rem;
        padding: 0 8px;
        margin-bottom: 21px;
    }

    .link-button {
        min-height: 62px;
        border-radius: 16px;
        grid-template-columns: 44px 1fr 40px;
    }

    .button-icon,
    .button-arrow {
        width: 38px;
        height: 38px;
    }

    .button-text {
        font-size: .76rem;
    }

    footer {
        font-size: .55rem;
    }
}
