:root {
    --bg: #07070a;
    --card: #0f1116;
    --accent1: #08f;
    --accent2: #48ff6b;
    --glass: rgba(255, 255, 255, 0.03);
    --muted: rgba(255, 255, 255, 0.55);
    color-scheme: dark;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial;
    background: radial-gradient(1200px 600px at 10% 10%, rgba(72, 255, 107, 0.03), transparent 8%),
        linear-gradient(180deg, #06060a 0%, #1b1b27 50%, #0a0a0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 480px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 18px;
    padding: 28px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px) saturate(120%);
    overflow: hidden;
}

.container::before {
    content: "";
    position: absolute;
    left: -20%;
    top: -30%;
    width: 160%;
    height: 220px;
    background: linear-gradient(90deg, var(--accent2), transparent);
    filter: blur(60px);
    opacity: 0.12
}

.container::after {
    content: "";
    position: absolute;
    right: -30%;
    bottom: -40%;
    width: 220px;
    height: 220px;
    background: linear-gradient(180deg, var(--accent1), transparent);
    filter: blur(60px);
    opacity: 0.08
}

.profile {
    display: flex;
    align-items: center;
    gap: 16px
}

.avatar {
    width: 86px;
    height: 86px;
    border-radius: 14px;
    overflow: hidden;
    flex: 0 0 86px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6) inset, 0 6px 18px rgba(0, 0, 0, 0.45);
}

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

.meta h1 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 0.6px;
    font-weight: 800
}

.meta p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 13px
}

.links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.link-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: transform .15s ease, box-shadow .15s ease;
}

.link-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.link-btn .icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.03)
}

.link-label {
    flex: 1;
    text-align: left
}

.link-extra {
    font-size: 12px;
    color: var(--muted)
}

.cta-row {
    display: flex;
    gap: 10px;
    margin-top: 18px
}

.small-btn {
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    color: var(--muted);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.03)
}
.small-btn:hover {
    background: var(--glass);
}

.footer {
    margin-top: 18px;
    color: var(--muted);
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.link-btn[data-accent="green"] {
    box-shadow: 0 6px 18px rgba(72, 255, 107, 0.06);
    border-left: 4px solid rgba(72, 255, 105, 0.432)
}

.link-btn[data-accent="blue"] {
    box-shadow: 0 6px 18px rgba(8, 136, 255, 0.06);
    border-left: 4px solid rgba(8, 136, 255, 0.411)
}

.link-btn[data-accent="purple"] {
    box-shadow: 0 6px 18px rgba(8, 136, 255, 0.06);
    border-left: 4px solid rgba(98, 0, 255, 0.418)
}
.link-btn[data-accent="white"] {
    box-shadow: 0 6px 18px rgba(8, 136, 255, 0.06);
    border-left: 4px solid rgba(255, 255, 255, 0.589)
}

@media (max-width:420px) {
    .container {
        padding: 20px
    }

    .avatar {
        width: 72px;
        height: 72px;
        border-radius: 12px
    }
}

.metal-tag {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.03);
    font-weight: 700;
    font-size: 12px
}

.iconbutton {
    width: 30px;
}

.iconbutton2 {
    width: 50px;
}
bold {
    color: white;
}
.link-2 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;

    text-decoration: none;
    color: #fff;

}