:root {
    --asphalt: #1C1C1E;
    --offwhite: #F2F2F2;
    --navy: #1F2A44;
    --acid: #C3FF00;
    --warmgray: #8A8A8A;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--asphalt);
    color: var(--offwhite);
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    position: relative;
    overflow-x: hidden;
}

/* MOVING BACKGROUND GRADIENT */
.background-anim {
    position: fixed;
    inset: -20%;
    z-index: -3;
    background-image:
            radial-gradient(circle at 0% 0%, rgba(31,42,68,0.9) 0, transparent 55%),
            radial-gradient(circle at 100% 100%, rgba(195,255,0,0.35) 0, transparent 60%),
            radial-gradient(circle at 50% 120%, #000 0, #050505 70%);
    background-size: 200% 200%;
    animation: gradientShift 16s ease-in-out infinite;
    filter: blur(3px);
}

@keyframes gradientShift {
    0%   { background-position: 0% 0%; }
    35%  { background-position: 80% 30%; }
    65%  { background-position: 20% 80%; }
    100% { background-position: 0% 0%; }
}

.grain-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    mix-blend-mode: soft-light;
    background-image:
            radial-gradient(circle at 0 0, rgba(255,255,255,0.08) 0, transparent 50%),
            radial-gradient(circle at 100% 100%, rgba(0,0,0,0.6) 0, transparent 55%),
            repeating-linear-gradient(45deg, rgba(0,0,0,0.28) 0, rgba(0,0,0,0.28) 1px, transparent 1px, transparent 3px);
    z-index: -2;
}

/* PAGE SHELL + GLASS PANEL */

.page-shell {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 16px;
}

.site {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 32px 26px 38px;
    border-radius: 32px;

    /* transparent glass letting gradient through */
    background: rgba(8, 8, 12, 0.25);
    border: 1px solid rgba(242, 242, 242, 0.20);
    box-shadow:
            0 26px 70px rgba(0, 0, 0, 0.9),
            0 0 0 1px rgba(0,0,0,0.5);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    position: relative;
    overflow: hidden;
}

.site::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.04);
    pointer-events: none;
}

/* HEADER / LOGO */

.header {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
}

.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.monogram-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.monogram {
    width: 68px;
    height: 68px;
    border-radius: 999px;
    border: 1px solid rgba(242, 242, 242, 0.18);
    background: rgba(8, 8, 12, 0.25); /* transparent glass effect */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.monogram-inner {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monogram-inner img.monogram-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.monogram-waves {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.16em;
    color: var(--acid);
    text-transform: lowercase;
}

.sticker {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--warmgray);
    padding: 3px 7px;
    border-radius: 999px;
    border: 1px solid rgba(138, 138, 138, 0.5);
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sticker-dot {
    width: 5px;
    height: 5px;
    border-radius: 99px;
    background: var(--acid);
}

.top-meta {
    text-align: right;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    color: var(--warmgray);
}

.top-meta span {
    display: block;
}

.tagline {
    font-size: 13px;
    color: var(--warmgray);
    max-width: 100%;
}

/* SOCIALS / BUTTONS */

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.pill {
    position: relative;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 11px;
    font-family: "IBM Plex Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--offwhite);
    border: 1px solid rgba(138,138,138,0.65);
    background: rgba(10, 10, 14, 0.7);
    overflow: hidden;
    cursor: pointer;
    transition:
            border-color 0.25s ease,
            box-shadow 0.25s ease,
            color 0.25s ease,
            transform 0.2s ease;
    z-index: 0;
}

.pill::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 0 0, rgba(195,255,0,0.40) 0, transparent 55%),
            radial-gradient(circle at 120% 120%, rgba(31,42,68,1) 0, rgba(12,12,18,1) 50%);
    background-size: 220% 220%;
    background-position: 10% 20%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.pill--accent {
    border-color: var(--acid);
    color: var(--acid);
}

@keyframes pillShift {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 80% 40%; }
    100% { background-position: 20% 90%; }
}

.pill:hover::before {
    opacity: 1;
    animation: pillShift 8s ease-in-out infinite alternate;
}

.pill:hover {
    border-color: var(--acid);
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    color: var(--offwhite);
    transform: translateY(-1px);
}

/* SECTION LAYOUTS */

.section {
    margin-top: 38px;
    position: relative;
    z-index: 1;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-title {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warmgray);
}

.section-line {
    flex: 1;
    margin-left: 14px;
    border-top: 1px solid rgba(138, 138, 138, 0.6);
    position: relative;
}

.section-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: -1px;
    width: 22px;
    border-top: 2px solid var(--acid);
}

/* CARDS + HOVER ANIM */

.cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card {
    position: relative;
    border-radius: 12px;
    padding: 16px 16px 14px;
    background-image:
            radial-gradient(circle at 90% 0%, rgba(195,255,0,0.10) 0, transparent 55%),
            radial-gradient(circle at 10% 120%, rgba(31,42,68,0.95) 0, #05060a 55%);
    background-size: 180% 180%;
    background-position: 10% 0%;
    border: 1px solid rgba(242,242,242,0.09);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    transition:
            transform 0.25s ease-out,
            box-shadow 0.25s ease-out,
            border-color 0.25s ease-out;
    min-height: 100px;
}

.card-link {
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 32%;
    width: 120px;
    border-top: 1px solid rgba(195,255,0,0.4);
    transform: rotate(-7deg);
    opacity: 0.5;
    pointer-events: none;
}

.card--bgimg {
    position: relative;
    overflow: hidden;
}

/* actual artwork layer */
.card--bgimg .card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: var(--card-bg-pos, top);
    background-repeat: no-repeat;
    filter: brightness(0.8);
    z-index: 0;
    transition:
        background-position 5s cubic-bezier(.4,.2,.2,1),
        transform 5s cubic-bezier(.4,.2,.2,1);
}

/* Animate card-bg on card hover */
.card--bgimg:hover .card-bg {
    --card-bg-pos: bottom;
    transform: scale(1.06);
}

/* tint overlay sitting on top of the photo */
.card--bgimg::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(
            120deg,
            rgba(8, 8, 12, 0.75) 0%,
            rgba(31, 42, 68, 0.85) 100%
    );
    z-index: 1;
}

/* text/content above everything */
.card--bgimg .card-link,
.card--bgimg .card-main {
    position: relative;
    z-index: 2;
}

.card-main {
    max-width: 80%;
}

.card-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--acid);
    margin-bottom: 5px;
}

.card-title {
    font-size: 16px;
    font-weight: 500;
}

.card-meta {
    margin-top: 6px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    color: var(--warmgray);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.65);
    border-color: rgba(195,255,0,0.55);
}

/* ARTWORK / PROFILE STYLE */

.art-block {
    margin-top: 30px;
    padding: 30px 26px 22px;
    border-radius: 24px;
    border: 1px solid rgba(242,242,242,0.1);

    /* animated background */
    background-image:
            radial-gradient(circle at 30% 0, rgba(195,255,0,0.18) 0, transparent 55%),
            radial-gradient(circle at 100% 110%, rgba(0,0,0,0.9) 0, transparent 60%),
            radial-gradient(circle at 0 130%, rgba(31,42,68,0.9) 0, transparent 60%);
    background-size: 220% 220%;
    background-position: 10% 40%;
    animation: artShift 30s ease-in-out infinite alternate;
}

@keyframes artShift {
    0%   { background-position: 0% 40%; }
    40%  { background-position: 80% 10%; }
    80%  { background-position: 20% 90%; }
    100% { background-position: 0% 40%; }
}

.art-photo {
    width: 100%;
    border-radius: 18px;
    background:
            radial-gradient(circle at 50% 25%, rgba(255,255,255,0.18) 0, transparent 55%),
            linear-gradient(145deg, #050506 0, #050506 30%, #1f2a44 55%, #050506 100%);
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;   /* keep 16:9, scales with width */
}

.art-photo .art-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.art-photo .art-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.art-caption {
    margin-top: 10px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    color: var(--warmgray);
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.art-caption span {
    white-space: nowrap;
}

.art-caption-main {
    max-width: 70%;
    white-space: normal;
}

/* FOOTER */

.footer {
    margin: 46px 0 0;
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    color: var(--warmgray);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 520px) {
    .page-shell {
        padding: 20px 10px;
    }
    .site {
        padding: 24px 18px 30px;
        border-radius: 24px;
    }
    .tagline {
        max-width: 100%;
    }
}
