/* ═══════════════════════════════════════════════════
   CELAL YAĞCI — LINK PAGE
   ═══════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
    --bg: #111110;
    --bg-elevated: #1a1a18;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-2: rgba(255, 255, 255, 0.055);
    --surface-hover: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 255, 255, 0.16);
    --glass-bg: rgba(18, 18, 16, 0.7);
    --glass-border: rgba(255, 255, 255, 0.06);

    --text-1: #f2f0ec;
    --text-2: #a09a8e;
    --text-3: #5c584f;

    --accent: #e8a838;
    --accent-dim: #c48a20;
    --accent-glow: rgba(232, 168, 56, 0.15);
    --accent-subtle: rgba(232, 168, 56, 0.06);

    --cta-from: #25d366;
    --cta-to: #1da851;

    --grad-accent: linear-gradient(135deg, #e8a838 0%, #f0c060 100%);
    --grad-warm: linear-gradient(135deg, rgba(232, 168, 56, 0.1), rgba(240, 192, 96, 0.05));

    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 0 40px rgba(232, 168, 56, 0.08);
    --shadow-cta: 0 8px 36px rgba(37, 211, 102, 0.25);

    --radius-xs: 10px;
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-pill: 100px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur-fast: 0.2s;
    --dur-smooth: 0.4s;
    --dur-slow: 0.6s;
}

[data-theme="light"] {
    --bg: #faf9f7;
    --bg-elevated: #f0eeeb;
    --surface: rgba(0, 0, 0, 0.025);
    --surface-2: rgba(0, 0, 0, 0.04);
    --surface-hover: rgba(0, 0, 0, 0.06);
    --border: rgba(0, 0, 0, 0.07);
    --border-hover: rgba(0, 0, 0, 0.14);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.05);

    --text-1: #1a1914;
    --text-2: #6b6560;
    --text-3: #a8a29c;

    --accent: #c48a20;
    --accent-dim: #a87418;
    --accent-glow: rgba(196, 138, 32, 0.1);
    --accent-subtle: rgba(196, 138, 32, 0.05);

    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.1);
    --shadow-accent: 0 0 40px rgba(196, 138, 32, 0.06);
    --shadow-cta: 0 8px 36px rgba(37, 211, 102, 0.12);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg) radial-gradient(circle at 50% -20%, rgba(232, 168, 56, 0.18), transparent 80%);
    background-color: var(--bg);
    color: var(--text-1);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background var(--dur-smooth) var(--ease-out), color var(--dur-smooth) var(--ease-out);
}

/* ─── BACKGROUND LAYERS ─── */
.mesh-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.mesh-gradient {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.7;
}

.mesh-gradient:nth-child(1) {
    background: radial-gradient(circle, rgba(232, 168, 56, 0.35), transparent 70%);
    top: -12%;
    right: -8%;
    animation: meshFloat1 30s ease-in-out infinite;
}

.mesh-gradient-2 {
    background: radial-gradient(circle, rgba(232, 168, 56, 0.2), transparent 70%);
    bottom: -12%;
    left: -12%;
    animation: meshFloat2 35s ease-in-out infinite;
}

.mesh-gradient-3 {
    background: radial-gradient(circle, rgba(255, 220, 160, 0.15), transparent 70%);
    top: 45%;
    left: 45%;
    width: 400px;
    height: 400px;
    animation: meshFloat3 25s ease-in-out infinite;
}

@keyframes meshFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-80px, 120px) scale(1.15);
    }

    50% {
        transform: translate(60px, 60px) scale(0.9);
    }

    75% {
        transform: translate(-40px, -80px) scale(1.1);
    }
}

@keyframes meshFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, -60px) scale(1.2);
    }

    66% {
        transform: translate(-60px, 80px) scale(0.85);
    }
}

@keyframes meshFloat3 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.4);
    }
}

.grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

[data-theme="light"] .grain {
    opacity: 0.015;
}

.grid-pattern {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.025;
    background-image:
        linear-gradient(var(--text-3) 1px, transparent 1px),
        linear-gradient(90deg, var(--text-3) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 15%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 15%, transparent 100%);
}

#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ─── THEME TOGGLE ─── */
.theme-btn {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 100;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dur-smooth) var(--ease-out);
    box-shadow: var(--shadow-xs);
}

.theme-btn-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-btn svg {
    width: 20px;
    height: 20px;
    transition: all var(--dur-smooth) var(--ease-out);
}

.theme-btn:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

[data-theme="dark"] .icon-sun {
    display: none;
}

[data-theme="dark"] .icon-moon {
    display: block;
}

[data-theme="light"] .icon-sun {
    display: block;
}

[data-theme="light"] .icon-moon {
    display: none;
}

/* ─── PAGE LAYOUT ─── */
.page {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 20px 48px;
}

.content {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* ─── HERO ─── */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding-bottom: 4px;
}

/* Avatar */
.avatar-block {
    position: relative;
}

.avatar-outer {
    position: relative;
    width: 130px;
    height: 130px;
}

.avatar-glow-ring {
    position: absolute;
    inset: -18px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    border-radius: 50%;
    animation: avatarGlow 4s ease-in-out infinite;
}

@keyframes avatarGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.04);
    }
}

.avatar-border-spin {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--grad-accent);
    animation: spinGrad 6s linear infinite;
}

@keyframes spinGrad {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }

    50% {
        filter: hue-rotate(15deg) brightness(1.1);
    }

    100% {
        filter: hue-rotate(0deg) brightness(1);
    }
}

.avatar-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 3px;
    background: var(--bg);
    overflow: hidden;
}

.avatar-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-status {
    position: absolute;
    bottom: 6px;
    right: 6px;
    z-index: 5;
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    border: 3px solid var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-ping {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #22c55e;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    75%,
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Name */
.hero-name {
    font-family: 'Sora', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.name-char {
    display: inline-block;
    color: var(--text-1);
    animation: charReveal 0.5s var(--ease-out) both;
    animation-delay: calc(0.4s + var(--i) * 0.04s);
}

@keyframes charReveal {
    from {
        opacity: 0;
        transform: translateY(16px);
        filter: blur(3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.name-space {
    display: inline-block;
    width: 12px;
}

/* Typed Role */
.hero-role {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 28px;
    font-size: 0.95rem;
    color: var(--text-2);
}

.role-line {
    width: 20px;
    height: 1px;
    background: var(--accent);
    opacity: 0.4;
    flex-shrink: 0;
}

.typed-text {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px;
}

.typed-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--accent);
    margin-left: 1px;
    animation: cursorBlink 0.9s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-2);
}

.badge-pulse {
    display: block;
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* ─── BIO ─── */
.bio-section {
    width: 100%;
}

.bio-glass {
    position: relative;
    padding: 28px 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    overflow: hidden;
}

.bio-accent-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.5;
}

.bio-main {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 4px;
}

.bio-main strong {
    color: var(--text-1);
    font-weight: 600;
}

.bio-detail {
    font-size: 0.92rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 12px;
}

.highlight-chip {
    display: inline-block;
    background: var(--accent-subtle);
    padding: 1px 8px;
    border-radius: 5px;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid rgba(232, 168, 56, 0.12);
}

.bio-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-1);
}

/* ─── CTA PRIMARY ─── */
.cta-primary {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--grad-cta);
    color: #fff;
    box-shadow: var(--shadow-cta);
    transition: all var(--dur-smooth) var(--ease-out);
}

.cta-bg-animation {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent 0%, rgba(255, 255, 255, 0.06) 30%,
            rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.06) 70%,
            transparent 100%);
    background-size: 200% 100%;
    animation: ctaWave 3s ease-in-out infinite;
}

@keyframes ctaWave {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.cta-shimmer-line {
    position: absolute;
    top: 0;
    left: -50%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    animation: shimmerSlide 4.5s infinite;
}

@keyframes shimmerSlide {
    0% {
        left: -50%;
    }

    100% {
        left: 150%;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    width: 100%;
}

.cta-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon-box svg {
    width: 22px;
    height: 22px;
}

.cta-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cta-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.cta-subtitle {
    font-size: 0.76rem;
    opacity: 0.8;
    font-weight: 400;
}

.cta-arrow-wrap {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--dur-smooth) var(--ease-out);
}

.cta-arrow-wrap svg {
    width: 17px;
    height: 17px;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 50px rgba(37, 211, 102, 0.35);
}

.cta-primary:hover .cta-arrow-wrap {
    transform: translateX(3px);
    background: rgba(255, 255, 255, 0.25);
}

.cta-primary:active {
    transform: translateY(-1px);
}

/* ─── GLASS LINK CARDS ─── */
.cards-stack {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.glass-link-card {
    position: relative;
    width: 100%;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition: all var(--dur-smooth) var(--ease-out);
    box-shadow: var(--shadow-xs);
    transform-style: preserve-3d;
    will-change: transform;
}

.glc-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    opacity: 0;
    transition: opacity var(--dur-smooth);
    z-index: 0;
}

.glc-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
}

.glc-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-xs);
    background: var(--accent-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--dur-smooth) var(--ease-out);
    border: 1px solid rgba(232, 168, 56, 0.08);
}

.glc-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    transition: all var(--dur-fast);
}

.glc-body {
    flex: 1;
    min-width: 0;
}

.glc-body h3 {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    margin-bottom: 1px;
}

.glc-body p {
    font-size: 0.76rem;
    color: var(--text-3);
    font-weight: 400;
}

.glc-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 5px 10px;
    background: var(--surface-2);
    border-radius: var(--radius-xs);
    flex-shrink: 0;
}

.glc-badge-count {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.glc-badge-label {
    font-size: 0.62rem;
    color: var(--text-3);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.glc-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(-5px, 5px);
    transition: all var(--dur-smooth) var(--ease-out);
    flex-shrink: 0;
}

.glc-arrow svg {
    width: 15px;
    height: 15px;
    color: var(--accent);
}

.glc-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    z-index: 1;
    transition: left 0.6s ease;
}

.glass-link-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md), var(--shadow-accent);
}

.glass-link-card:hover .glc-glow {
    opacity: 0.5;
}

.glass-link-card:hover .glc-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.glass-link-card:hover .glc-shine {
    left: 150%;
}

.glass-link-card:hover .glc-icon {
    background: var(--grad-accent);
    border-color: transparent;
}

.glass-link-card:hover .glc-icon svg {
    color: #1a1914;
}

.glass-link-card:active {
    transform: scale(0.985) !important;
}

/* ─── SOCIAL DOCK ─── */
.social-dock {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
}

.social-dock a {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    transition: all var(--dur-smooth) var(--ease-spring);
}

.social-dock a svg {
    width: 19px;
    height: 19px;
}

.social-dock a::before {
    content: attr(data-label);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    padding: 5px 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 7px;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--dur-fast) var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.social-dock a::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--bg-elevated);
    opacity: 0;
    pointer-events: none;
    transition: all var(--dur-fast) var(--ease-out);
}

.social-dock a:hover::before,
.social-dock a:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.social-dock a:hover {
    transform: translateY(-6px) scale(1.08);
    border-color: var(--accent);
    color: var(--accent);
    background: var(--surface-hover);
    box-shadow: var(--shadow-accent);
}

/* ─── FOOTER ─── */
.site-footer {
    width: 100%;
    text-align: center;
    padding-top: 16px;
    margin-top: auto;
}

.footer-divider {
    width: 40px;
    height: 1px;
    background: var(--border);
    margin: 0 auto 14px;
}

.footer-copy {
    font-size: 0.76rem;
    color: var(--text-3);
    font-weight: 400;
}

/* ─── REVEAL ANIMATIONS ─── */
.anim-item {
    opacity: 0;
    transform: translateY(24px);
    animation: animReveal 0.7s var(--ease-out) forwards;
    animation-delay: calc(var(--delay, 0) * 1ms + 0.1s);
}

@keyframes animReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 520px) {
    .page {
        padding: 56px 16px 32px;
    }

    .content {
        gap: 20px;
    }

    .hero-name {
        font-size: 2rem;
    }

    .avatar-outer {
        width: 110px;
        height: 110px;
    }

    .cta-content {
        padding: 18px 20px;
        gap: 12px;
    }

    .cta-title {
        font-size: 0.98rem;
    }

    .glc-inner {
        padding: 16px 18px;
    }

    .bio-glass {
        padding: 22px 20px;
    }

    .theme-btn {
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }

    .typed-text {
        max-width: 200px;
        font-size: 0.88rem;
    }

    .hero-role {
        gap: 8px;
    }

    .role-line {
        width: 14px;
    }
}

@media (max-width: 380px) {
    .hero-name {
        font-size: 1.75rem;
    }

    .social-dock a {
        width: 42px;
        height: 42px;
    }

    .social-dock a svg {
        width: 17px;
        height: 17px;
    }

    .glc-meta {
        display: none;
    }
}

::selection {
    background: var(--accent);
    color: #1a1914;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-3);
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}