/* ════════════════════════════════════════════════════════════
   boyprojects — TAMPILAN (style.css)
   File ini mengatur WUJUD halaman: warna, ukuran, animasi.
   Tidak perlu diedit untuk mengubah konten.
   (Konten diatur lewat config.js / admin.html)
   ════════════════════════════════════════════════════════════ */

:root {
    --bg-color: #0a0a0e;
    --card-bg: #15151b;
    --card-border: #2c2c35;
    --primary: #e058c8;
    --primary-soft: #e375c5;
    --primary-glow: rgba(224, 88, 200, 0.5);
    --text-white: #ffffff;
    --text-gray: #a0a0a8;
    --terminal-green: #4ade80;
    --link-bg: #26262c;
    --link-hover: #32323a;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Background ---------- */
body {
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at 50% 0%, rgba(224, 88, 200, 0.06) 0%, transparent 55%),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: auto, 44px 44px, 44px 44px;
    color: var(--text-white);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    overflow-x: hidden;
}

.bg-orbs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.orb-primary {
    width: 420px;
    height: 420px;
    background: var(--primary);
    opacity: 0.16;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    animation: orbA 16s ease-in-out infinite alternate;
}

.orb-accent {
    width: 300px;
    height: 300px;
    background: #602858;
    opacity: 0.12;
    bottom: -120px;
    right: -90px;
    animation: orbB 22s ease-in-out infinite alternate-reverse;
}

@keyframes orbA {
    from { transform: translateX(-50%) translateY(0) scale(1); }
    to   { transform: translateX(-50%) translateY(46px) scale(1.12); }
}

@keyframes orbB {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-42px, -34px) scale(1.15); }
}

/* ---------- Card ---------- */
.profile-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    background-color: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--card-border);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(224, 88, 200, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: translateY(0);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.profile-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 36px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(224, 88, 200, 0.08), 0 0 44px rgba(224, 88, 200, 0.07);
}

.profile-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 18%);
    pointer-events: none;
}

/* Staggered entrance */
.profile-container > * {
    animation: rise 0.9s var(--ease-out) backwards;
}
.profile-container > :nth-child(1) { animation-delay: 0.05s; }
.profile-container > :nth-child(2) { animation-delay: 0.12s; }
.profile-container > :nth-child(3) { animation-delay: 0.19s; }
.profile-container > :nth-child(4) { animation-delay: 0.26s; }
.profile-container > :nth-child(5) { animation-delay: 0.33s; }
.profile-container > :nth-child(6) { animation-delay: 0.40s; }
.profile-container > :nth-child(7) { animation-delay: 0.47s; }
.profile-container > :nth-child(8) { animation-delay: 0.54s; }
.profile-container > :nth-child(9) { animation-delay: 0.61s; }

@keyframes rise {
    from { opacity: 0; transform: translateY(26px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Profile Image ---------- */
.profile-image-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 0 24px var(--primary-glow), inset 0 0 10px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

.profile-image-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--primary), var(--primary-soft), #ffffff33, var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 2.5px;
    z-index: 1;
    animation: spin 6s linear infinite;
    filter: drop-shadow(0 0 10px rgba(224, 88, 200, 0.6));
}

@keyframes spin { to { transform: rotate(360deg); } }

.profile-image-ring-2 {
    position: absolute;
    inset: -13px;
    border-radius: 50%;
    border: 2px dashed rgba(224, 88, 200, 0.4);
    z-index: 0;
    animation: spinRev 16s linear infinite;
}

@keyframes spinRev { to { transform: rotate(-360deg); } }

.status-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    background-color: var(--terminal-green);
    border: 3px solid var(--card-bg);
    border-radius: 50%;
    z-index: 3;
}

.status-dot::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--terminal-green);
    animation: ping 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    0%        { transform: scale(0.6); opacity: 0.8; }
    80%, 100% { transform: scale(1.9); opacity: 0; }
}

/* ---------- Header Text ---------- */
.profile-name {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    display: flex;
    gap: 6px;
}

.profile-name .highlight {
    background: linear-gradient(90deg, var(--primary), var(--primary-soft), var(--primary), var(--primary-soft));
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: nameShimmer 6s linear infinite;
}

@keyframes nameShimmer {
    0%   { background-position: 0% 0; }
    100% { background-position: 250% 0; }
}

.badge-main {
    border: 1px solid transparent;
    background:
        linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
        linear-gradient(90deg, rgba(224, 88, 200, 0.65), rgba(227, 117, 197, 0.25), rgba(224, 88, 200, 0.65)) border-box;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.badge-main span {
    color: var(--text-white);
}

/* ---------- Automotive Video (light motion) ---------- */
.video-wrap {
    width: 100%;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(224, 88, 200, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 32px rgba(224, 88, 200, 0.12);
    background: #000;
    aspect-ratio: 16 / 9;
    animation: videoGlow 5s ease-in-out infinite;
}

@keyframes videoGlow {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 32px rgba(224, 88, 200, 0.12); }
    50%      { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 46px rgba(224, 88, 200, 0.22); }
}

.video-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 14, 0.3), transparent 35%, transparent 70%, rgba(10, 10, 14, 0.6));
    pointer-events: none;
    z-index: 2;
}

.auto-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-badge {
    position: absolute;
    left: 12px;
    bottom: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(10, 10, 14, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.video-badge .vc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    animation: vcBlink 2s ease-in-out infinite;
}

@keyframes vcBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- Links ---------- */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 16px;
    background-color: var(--link-bg);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-white);
    transition: background-color 0.25s ease, transform 0.25s var(--ease-out), box-shadow 0.25s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.link-card:hover {
    background: linear-gradient(135deg, #2b2b33, #33333d);
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px rgba(224, 88, 200, 0.4), 0 14px 30px rgba(0, 0, 0, 0.4), 0 0 22px rgba(224, 88, 200, 0.12);
}

.link-card:active {
    transform: translateY(-1px) scale(0.99);
}

/* Shine sweep */
.link-card::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -70%;
    width: 55%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    border-radius: inherit;
    pointer-events: none;
    transition: left 0.6s ease;
}

.link-card:hover::after { left: 130%; }

.link-highlight {
    background: linear-gradient(135deg, #e058c8, #a04090);
    box-shadow: 0 8px 24px rgba(224, 88, 200, 0.4);
    border: none;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(224, 88, 200, 0.4); }
    50%      { box-shadow: 0 8px 36px rgba(224, 88, 200, 0.62); }
}

@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.link-highlight::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 13px;
    padding: 1.5px;
    background: conic-gradient(from var(--border-angle), rgba(255, 255, 255, 0.9), rgba(227, 117, 197, 0.5), rgba(224, 88, 200, 0.9), rgba(227, 117, 197, 0.5), rgba(255, 255, 255, 0.9));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: borderSpin 5s linear infinite;
}

@keyframes borderSpin { to { --border-angle: 360deg; } }

.link-highlight:hover {
    background: linear-gradient(135deg, #f274d6, #8a2f7c);
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25), 0 16px 36px rgba(224, 88, 200, 0.55);
    animation: none;
}

.link-highlight::after {
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.link-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.25s var(--ease-out), background-color 0.25s ease;
}

.link-card:hover .link-icon {
    transform: scale(1.1) rotate(-5deg);
    background-color: rgba(224, 88, 200, 0.18);
}

.link-highlight .link-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.link-highlight:hover .link-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(255, 255, 255, 0.28);
}

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

.link-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

.link-subtitle {
    font-size: 12px;
    color: var(--text-gray);
}

.link-highlight .link-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.link-arrow {
    color: var(--text-gray);
    font-size: 16px;
    margin-right: 12px;
    transition: transform 0.25s var(--ease-out);
}

.link-card:hover .link-arrow { transform: translateX(5px); }

.link-highlight .link-arrow {
    color: white;
}

.link-counter {
    position: relative;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #e375c5;
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s var(--ease-out);
}

.link-counter:hover {
    transform: scale(1.08);
}

.link-counter:active {
    transform: scale(0.94);
}

.link-counter.bump {
    animation: bump 0.45s var(--ease-out);
}

@keyframes bump {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.3) rotate(-4deg); }
    100% { transform: scale(1); }
}

.link-highlight .link-counter {
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* Floating +1 */
.float-plus {
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #e375c5;
    pointer-events: none;
    z-index: 10;
    animation: floatUp 0.9s ease-out forwards;
}

.link-highlight .float-plus { color: #fff; }

@keyframes floatUp {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-26px); }
}

.recommended-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #f8f6fa;
    color: #8a2f7c;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(160, 64, 144, 0.4);
    animation: tagPop 0.7s var(--ease-out) backwards 0.7s, recPulse 2.4s ease-in-out 1.8s infinite;
    z-index: 4;
}

@keyframes recPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(160, 64, 144, 0.4); }
    50%      { box-shadow: 0 4px 20px rgba(160, 64, 144, 0.85); }
}

@keyframes tagPop {
    from { transform: translateY(-10px) scale(0.6); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* ---------- Social Icons ---------- */
.social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--link-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s var(--ease-out), box-shadow 0.25s ease, color 0.25s ease;
    position: relative;
    animation: rise 0.9s var(--ease-out) backwards;
}

.social-icons a:nth-child(1) { animation-delay: 0.58s; }
.social-icons a:nth-child(2) { animation-delay: 0.64s; }

.social-btn:hover {
    transform: translateY(-4px);
    color: #fff;
}

.social-btn[data-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 10px 22px rgba(225, 48, 108, 0.45);
}

.social-btn[data-label="WhatsApp"]:hover {
    background: #25d366;
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.4);
}

/* Tooltip */
.social-btn::after {
    content: attr(data-label);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #2c2c35;
    border: 1px solid #3a3a44;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
}

.social-btn::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) scale(0.6);
    border: 5px solid transparent;
    border-top-color: #3a3a44;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
}

.social-btn:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.social-btn:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    animation: iconBob 3s ease-in-out infinite;
}

.social-icons a:nth-child(1) svg { animation-delay: 0s; }
.social-icons a:nth-child(2) svg { animation-delay: 0.3s; }

.social-btn:hover svg { animation-play-state: paused; }

@keyframes iconBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

/* ---------- Footer ---------- */
.footer {
    text-align: center;
    font-size: 12px;
    color: var(--text-gray);
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
    margin-top: 4px;
}

.footer-line {
    margin-bottom: 8px;
}

.footer-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer a {
    color: var(--text-gray);
    text-decoration: underline;
    text-decoration-color: rgba(160, 160, 168, 0.4);
    transition: color 0.2s ease;
    cursor: pointer;
}

.footer a:hover {
    color: var(--text-white);
}

.footer a.flash {
    animation: flash 0.5s ease;
}

@keyframes flash {
    0%   { color: var(--primary); text-decoration-color: var(--primary); }
    100% { color: var(--text-gray); }
}

/* ---------- Confetti ---------- */
.confetti {
    position: fixed;
    border-radius: 2px;
    pointer-events: none;
    z-index: 99;
    animation: confettiFly 0.9s ease-out forwards;
}

@keyframes confettiFly {
    0%   { transform: translate(0, 0) rotate(0) scale(1); opacity: 1; }
    100% { transform: translate(var(--dx), var(--dy)) rotate(260deg) scale(0.3); opacity: 0; }
}

/* ---------- Spotlight (mouse glow, via ::after) ---------- */
.profile-container::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 20%), rgba(224, 88, 200, 0.35), transparent 55%);
    mix-blend-mode: screen;
    transition: opacity 0.35s ease;
}

.profile-container:hover::after { opacity: 1; }

/* ---------- Click ripple ---------- */
.ripple {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid var(--primary-soft);
    pointer-events: none;
    z-index: 11;
    animation: rippleOut 0.7s ease-out forwards;
}

.link-highlight .ripple { border-color: #ffffff; }

@keyframes rippleOut {
    from { transform: scale(1); opacity: 0.8; }
    to   { transform: scale(1.7); opacity: 0; }
}

/* ---------- Floating sparkles ---------- */
.sparkle {
    position: fixed;
    bottom: -24px;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    will-change: transform, opacity;
    animation: sparkleRise linear infinite;
}

.sparkle.sp {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-soft);
    box-shadow: 0 0 10px rgba(227, 117, 197, 0.8);
}

@keyframes sparkleRise {
    0%   { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
    12%  { opacity: 0.9; }
    85%  { opacity: 0.45; }
    100% { transform: translateY(-108vh) translateX(var(--drift)) rotate(220deg); opacity: 0; }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb {
    background: #2c2c35;
    border-radius: 8px;
    border: 2px solid var(--bg-color);
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---------- Responsive ---------- */
body {
    padding:
        max(24px, env(safe-area-inset-top, 0px))
        max(16px, env(safe-area-inset-right, 0px))
        max(24px, env(safe-area-inset-bottom, 0px))
        max(16px, env(safe-area-inset-left, 0px));
}

.profile-name { font-size: clamp(24px, 7.5vw, 30px); }
.profile-container { padding: clamp(28px, 8vw, 40px) clamp(18px, 5vw, 24px); }
.link-title { overflow-wrap: anywhere; }
.link-counter { flex-shrink: 0; white-space: nowrap; }
.badge-main { max-width: 100%; text-align: center; overflow-wrap: anywhere; }

@media (max-width: 420px) {
    body { padding: max(18px, env(safe-area-inset-top, 0px)) max(12px, env(safe-area-inset-right, 0px)) max(18px, env(safe-area-inset-bottom, 0px)) max(12px, env(safe-area-inset-left, 0px)); }
    .profile-container { padding: 30px 16px; border-radius: 20px; }
    .profile-name { font-size: 25px; }
    .link-card { padding: 14px 12px; }
    .link-counter { padding: 5px 10px; }
    .link-title { font-size: 14px; }
    .badge-main { letter-spacing: 0.8px; padding: 6px 12px; border-radius: 12px; }
    .video-wrap { border-radius: 12px; }
}

@media (max-width: 360px) {
    body { padding: max(14px, env(safe-area-inset-top, 0px)) max(10px, env(safe-area-inset-right, 0px)) max(14px, env(safe-area-inset-bottom, 0px)) max(10px, env(safe-area-inset-left, 0px)); }
    .profile-container { padding: 26px 14px; }
    .profile-image-wrapper { width: 96px; height: 96px; }
    .profile-name { font-size: 22px; }
    .link-card { padding: 12px 10px; }
    .link-icon { width: 40px; height: 40px; margin-right: 10px; }
    .link-arrow { margin-right: 8px; }
    .link-counter { padding: 4px 8px; font-size: 11px; }
    .badge-main { font-size: 10px; letter-spacing: 0.5px; }
}
