@font-face {
            font-family: 'Roabla';
            src: url('../fonts/Roabla-DemoVersion-Regular.ttf') format('truetype'),
                url('../fonts/Roabla-DemoVersion-Regular.otf') format('opentype');
            font-weight: normal;
            
      font-display: swap;
        }

        :root {
            --bg: #0a0a0a;
            --panel: rgba(12, 12, 12, 0.72);
            --panel-soft: rgba(255, 255, 255, 0.04);
            --line: rgba(255, 255, 255, 0.1);
            --line-strong: rgba(255, 255, 255, 0.18);
            --text: #f2eee7;
            --muted: #b7b0a6;
            --accent: #e1d2be;
            --accent-soft: #8f948d;
            --shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            min-height: 100vh;
            font-family: 'Source Sans Pro', sans-serif;
            color: var(--text);
            background:
                linear-gradient(180deg, rgba(5, 5, 5, 0.42) 0%, rgba(5, 5, 5, 0.78) 100%),
                linear-gradient(90deg, rgba(6, 6, 6, 0.88) 0%, rgba(6, 6, 6, 0.4) 45%, rgba(6, 6, 6, 0.78) 100%),
                url('../images/HalfAwakeEyes-annicmrn-07798.jpg') center center / cover no-repeat fixed;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background:
                radial-gradient(circle at 18% 16%, rgba(193, 132, 96, 0.16), transparent 22%),
                radial-gradient(circle at 78% 12%, rgba(73, 102, 146, 0.18), transparent 24%),
                rgba(0, 0, 0, 0.18);
            pointer-events: none;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .page {
            position: relative;
            z-index: 1;
            width: min(100%, calc(100% - 1.25rem));
            max-width: 620px;
            margin: 0 auto;
            min-height: 100vh;
            display: grid;
            align-items: center;
            padding: 2rem 0;
        }

        .profile-shell {
            border: 1px solid rgba(255, 255, 255, 0.11);
            border-radius: 34px;
            background: rgba(4, 4, 4, 0.86);
            backdrop-filter: blur(16px);
            box-shadow: var(--shadow);
            padding: 1.55rem 1.25rem 1.2rem;
        }

        .profile-top {
            display: grid;
            justify-items: center;
            text-align: center;
            gap: 0.85rem;
            padding: 0.15rem 0 1.1rem;
        }

        .avatar {
            width: 96px;
            height: 96px;
            border-radius: 999px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.16);
            box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
        }

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

        .title {
            margin: 0;
            font-family: 'Roabla', 'Oswald', sans-serif;
            text-transform: uppercase;
            color: var(--accent);
            font-size: clamp(2.4rem, 8vw, 3.8rem);
            font-weight: 400;
            line-height: 0.94;
            letter-spacing: 0.02em;
        }

        .subtitle {
            margin: 0;
            color: #e2ddd5;
            font-size: 1rem;
        }

        .bio {
            max-width: 34ch;
            margin: 0;
            color: var(--muted);
            font-size: 0.98rem;
            line-height: 1.55;
        }

        .social-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.8rem;
            margin-top: 0.1rem;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.025);
            color: var(--text);
            transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
        }

        .social-link:hover {
            transform: translateY(-1px);
            border-color: var(--line-strong);
            background: rgba(255, 255, 255, 0.08);
        }

        .social-link svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
            display: block;
        }

        .link-stack {
            display: grid;
            gap: 1.2rem;
            margin-top: 1.25rem;
        }

        .signup-shell {
            display: grid;
            gap: 0.4rem;
            margin-top: 1rem;
            padding: 0.64rem 0.68rem;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.015);
        }

        .signup-copy {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 0.6rem;
            text-align: left;
        }

        .signup-title {
            margin: 0;
            color: var(--accent-strong);
            font-size: 0.8rem;
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .signup-description {
            margin: 0;
            color: var(--muted);
            font-size: 0.68rem;
            line-height: 1.2;
            text-align: right;
        }

        .signup-form {
            display: contents;
        }

        .signup-form-row {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.18rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
        }

        .signup-input,
        .signup-submit {
            min-height: 34px;
            border-radius: 9px;
            font: inherit;
        }

        .signup-input {
            flex: 1 1 auto;
            width: 100%;
            border: 0;
            background: transparent;
            color: var(--text);
            padding: 0.44rem 0.56rem;
            outline: none;
        }

        .signup-input::placeholder {
            color: rgba(255, 255, 255, 0.38);
        }

        .signup-input:-webkit-autofill,
        .signup-input:-webkit-autofill:hover,
        .signup-input:-webkit-autofill:focus {
            -webkit-text-fill-color: var(--text);
            box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0) inset;
            transition: background-color 9999s ease-in-out 0s;
        }

        .signup-submit {
            flex: 0 0 auto;
            border: 1px solid rgba(225, 210, 190, 0.2);
            background: rgba(225, 210, 190, 0.14);
            color: var(--accent-strong);
            min-width: 82px;
            padding: 0.44rem 0.78rem;
            font-weight: 700;
            cursor: pointer;
        }

        .signup-submit:hover,
        .signup-submit:focus {
            background: rgba(225, 210, 190, 0.22);
        }

        .signup-status {
            min-height: 0.9rem;
            color: var(--muted);
            font-size: 0.72rem;
            padding: 0 0.05rem;
        }

        .signup-status.is-error {
            color: #f0b1a8;
        }

        .signup-status.is-success {
            color: #cfe8d5;
        }

        .links-section {
            display: grid;
            gap: 0.7rem;
        }

        .section-heading {
            margin: 0;
            text-align: center;
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 1.28rem;
            font-weight: 700;
            color: var(--text);
        }

        .section-links {
            display: grid;
            gap: 0.72rem;
        }

        .shows-links {
            gap: 0.58rem;
        }

        .link-empty-note {
            padding: 1rem 1.05rem;
            border-radius: 18px;
            border: 1px dashed var(--line);
            background: rgba(255, 255, 255, 0.02);
            color: var(--muted);
            text-align: center;
            font-size: 0.94rem;
        }

        .link-card {
            display: grid;
            grid-template-columns: 56px minmax(0, 1fr) auto;
            gap: 0.95rem;
            align-items: center;
            min-height: 86px;
            padding: 0.8rem 0.95rem;
            border-radius: 22px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            background: rgba(255, 255, 255, 0.035);
            transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
        }

        .link-card:hover {
            transform: translateY(-1px);
            border-color: rgba(255, 255, 255, 0.34);
            background: rgba(255, 255, 255, 0.06);
        }

        .link-card.primary {
            background: linear-gradient(135deg, rgba(225, 210, 190, 0.1), rgba(255, 255, 255, 0.04));
            border-color: rgba(225, 210, 190, 0.26);
        }

        .link-card.compact {
            grid-template-columns: 46px minmax(0, 1fr) auto;
            gap: 0.78rem;
            min-height: 70px;
            padding: 0.62rem 0.8rem;
            border-radius: 18px;
        }

        .link-thumb {
            width: 56px;
            height: 56px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            background:
                radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 42%),
                rgba(255, 255, 255, 0.04);
            display: grid;
            place-items: center;
            color: var(--accent);
            font-family: 'Roabla', 'Oswald', sans-serif;
            font-size: 1rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            overflow: hidden;
        }

        .link-card.compact .link-thumb {
            width: 46px;
            height: 46px;
            border-radius: 14px;
        }

        .link-card.compact .link-thumb svg {
            width: 22px;
            height: 22px;
        }

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

        .link-thumb svg {
            width: 26px;
            height: 26px;
            fill: currentColor;
            display: block;
        }

        .link-copy {
            min-width: 0;
        }

        .kicker {
            display: block;
            margin-bottom: 0.18rem;
            font-family: 'Roabla', 'Oswald', sans-serif;
            text-transform: uppercase;
            color: var(--muted);
            font-size: 0.72rem;
            letter-spacing: 0.08em;
        }

        .link-title {
            display: block;
            color: var(--text);
            font-size: 1.08rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .link-card.compact .link-title {
            font-size: 1rem;
            line-height: 1.15;
        }

        .link-meta {
            margin-top: 0.18rem;
            color: var(--muted);
            font-size: 0.92rem;
            line-height: 1.42;
        }

        .link-card.compact .link-meta {
            margin-top: 0.12rem;
            font-size: 0.85rem;
            line-height: 1.35;
        }

        .link-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 1.05rem;
            flex: 0 0 auto;
        }

        .link-card.compact .link-arrow {
            font-size: 0.98rem;
        }

        .footer {
            display: flex;
            justify-content: center;
            gap: 0.9rem;
            flex-wrap: wrap;
            margin-top: 1rem;
            color: var(--muted);
            font-size: 0.8rem;
        }

        .footer a {
            color: inherit;
        }

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

        @media (max-width: 576px) {
            body {
                background-attachment: scroll;
            }

            .page {
                width: min(100%, calc(100% - 0.8rem));
                padding: 0.7rem 0;
            }

            .profile-shell {
                border-radius: 26px;
                padding: 1.15rem 0.95rem 0.95rem;
            }

            .avatar {
                width: 84px;
                height: 84px;
            }

            .title {
                font-size: 2.35rem;
            }

            .subtitle,
            .bio,
            .link-meta {
                font-size: 0.94rem;
            }

            .social-row {
                gap: 0.62rem;
            }

            .social-link {
                width: 44px;
                height: 44px;
            }

            .social-link svg {
                width: 20px;
                height: 20px;
            }

            .section-heading {
                font-size: 1.12rem;
            }

            .link-card {
                grid-template-columns: 48px minmax(0, 1fr) auto;
                min-height: 78px;
                padding: 0.72rem 0.75rem;
                border-radius: 18px;
            }

            .link-card.compact {
                grid-template-columns: 42px minmax(0, 1fr) auto;
                min-height: 64px;
                padding: 0.56rem 0.7rem;
                border-radius: 16px;
            }

            .link-title {
                font-size: 1rem;
            }

            .link-thumb {
                width: 48px;
                height: 48px;
                font-size: 0.86rem;
                border-radius: 14px;
            }

            .link-card.compact .link-thumb {
                width: 42px;
                height: 42px;
                border-radius: 12px;
            }

            .link-thumb svg {
                width: 22px;
                height: 22px;
            }

            .link-arrow {
                width: 16px;
                height: 16px;
            }

            .signup-copy {
                display: grid;
                gap: 0.08rem;
            }

            .signup-description {
                text-align: left;
            }

            .signup-form-row {
                display: flex;
                align-items: center;
                gap: 0.24rem;
                padding: 0.16rem;
            }

            .signup-input {
                min-width: 0;
                padding: 0.42rem 0.52rem;
            }

            .signup-submit {
                min-width: 74px;
            }
        }

