/* Standard Farben */
:root {
    --bg:        #060a08;
    --bg2:       #090e0b;

    --surface:   #0d1510;
    --surface2:  #121c15;

    --green:        #1f7a45;
    --green-bright: #2ecc71;
    --green-glow:   #00ff6a;
    --green-muted:  #1a5c35;
    --green-dark:   #0a2e18; /* nicht mehr dark */

    --text:      #e8f0ea;
    --text-muted:#7a9a82;
    --text-dim:  #3d5c44;

    --border:    #122018;

    --twitch:    #9147ff;
    --youtube:   #ff0000;
    --discord:   #5865f2;

    --radius:     25px;
    --radius-big: 50px;
    --radius-tiny: 8px;
}

/* White- bzw Lightmode Farben */
body.light {
    --bg:        #f6fbf8;
    --bg2:       #eef7f1;

    --surface:   #d0f7e083;
    --surface2:  #95cca769;

    --green:        #1f7a45;
    --green-bright: #27ae60;
    --green-glow:   #2ecc71;
    --green-muted:  #5f8f73;
    --green-dark:   #cfe9da; /* gegenteil von dark */

    --text:      #0f1a14;
    --text-muted:#445c4d;
    --text-dim:  #738d7e;

    --border:    #d7e5dc;
}

/* etc */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

code {
    font-family: inherit;
    font-size: calc(100% - 30%);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-tiny);
    color: var(--green-bright);
    vertical-align: middle;
}

/* NOISE */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.35;
}

/* SCANLINES */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.025) 2px, rgba(0,0,0,0.025) 4px
    );
    pointer-events: none;
    z-index: 999;
}

/* FLASHBANG */

.flash-btn {
    position: fixed;
    bottom: 10px; left: 10px;
    z-index: 2000;
    animation: fadeInUp 1s ease 0.2s both;
}

.flashbang {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 3000;
    position: fixed;
}

.flash-inner {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: flashIn 4s ease both;
}
.flash-inner h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 9vw, 8rem);
    color: var(--green);
}

@keyframes flashIn {
    0% { opacity: 0; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* AvoGPT */

#avoGPTbtn {
    position: fixed;
    bottom: 10px; right: 10px;
    z-index: 2000;
    animation: fadeInUp 1s ease 0.2s both;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}
nav.scrolled {
    background: rgba(6,10,8,0.92);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}
body.light nav.scrolled {
    background: rgba(212, 255, 234, 0.92) !important;
}
.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    color: var(--text);
    transition: all 0.3s ease;
}
.nav-logo:hover {
    scale: 1.05;
    text-shadow: 0 0 60px rgba(46,204,113,0.25), 0 0 120px rgba(31,122,69,0.1);
}
.nav-logo a { text-decoration: none; color: inherit; }
.nav-logo span { color: var(--green-bright); }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-bright); }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 55% 70% at 100% 50%, rgba(31,122,69,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 0% 50%,  rgba(46,204,113,0.05) 0%, transparent 70%),
    var(--bg);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(31,122,69,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,122,69,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero-left {
    position: relative;
    z-index: 2;
    padding: 8rem 4rem 8rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-bright);
    border: 1px solid var(--green-muted);
    border-radius: var(--radius);
    padding: 0.4rem 1rem;
    margin-bottom: 2rem;
    background: rgba(31,122,69,0.08);
    width: fit-content;
    animation: fadeInDown 0.8s ease both;
}

.hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green-bright);
    border-radius: 50%;
    animation: blink 1.5s ease infinite;
}

@keyframes blink {
    0%,100% { opacity:1; } 50% { opacity:0.15; }
}

.hero-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.9;
    letter-spacing: 0.03em;
    color: var(--text);
    text-shadow:
    0 0 60px rgba(46,204,113,0.25),
    0 0 120px rgba(31,122,69,0.1);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-name span {
    color: var(--green-bright);
    -webkit-text-stroke: 0px;
}

.hero-handle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    margin-top: 1.2rem;
    margin-bottom: 1.8rem;
    animation: fadeInUp 1s ease 0.35s both;
}

.hero-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 380px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-cta {
    display: flex;
    gap: 0.8rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.65s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid;
    border-radius: var(--radius-tiny);
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--green-dark);
    border-color: var(--green-muted);
    color: var(--green-bright);
}
.btn-primary:hover {
    background: var(--green);
    color: var(--text);
    box-shadow: 0 0 24px rgba(46,204,113,0.2);
}

.btn-outline {
    background: transparent;
    border-color: var(--border);
    color: var(--text-muted);
}
.btn-outline:hover {
    border-color: var(--green-muted);
    color: var(--text);
    background: rgba(31,122,69,0.08);
}

.btn svg { width: 14px; height: 14px; fill: currentColor; }

/* HERO RIGHT — avatar panel */
.hero-right {
    position: relative;
    height: 100vh;
    z-index: 2;
    overflow: hidden;
}

.avatar-frame {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-img {
    width: 380px;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.4s;
}

.avatar-placeholder-hero {
    width: 380px;
    height: 480px;
    background: linear-gradient(160deg, var(--surface2), var(--bg2));
    border: 1px solid var(--border);
    border-radius: var(--radius-big);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    color: var(--green-dark);
    position: relative;
    overflow: hidden;
}

.avatar-placeholder-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(46,204,113,0.06) 0%, transparent 60%);
}

/* green vertical glow line on avatar */
.avatar-glow-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--green-bright), transparent);
    opacity: 0.5;
}

/* floating stat pills */
.stat-pill {
    position: absolute;
    background: rgba(9,14,11,0.92);
    border: 1px solid var(--border);
    border-radius: 0 var(--radius) var(--radius) 0;
    backdrop-filter: blur(12px);
    padding: 0.8rem 1.2rem;
    display: flex;
    flex-direction: column;
    animation: floatIn 1s ease both;
}
body.light .stat-pill {
    background: rgba(212, 255, 234, 0.92) !important;
} 
.stat-pill.right { border-radius: var(--radius) 0 0 var(--radius) !important; }

.stat-pill:nth-of-type(1) { top: 20%; left: -40px; animation-delay: 0.8s; }
.stat-pill:nth-of-type(2) { bottom: 25%; right: -20px; animation-delay: 1s; }
.stat-pill:nth-of-type(3) { top: 55%; left: -30px; animation-delay: 1.2s; }

@keyframes floatIn {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.stat-pill .val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--text);
}

.stat-pill .lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 0.2rem;
}

.stat-pill .accent { color: var(--green-bright); }

/* ── SEPARATOR ── */
.sep {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-muted), transparent);
}

/* ── SECTION BASE ── */
.section {
    padding: 8rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.section-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--green-bright);
    letter-spacing: 0.1em;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 0.04em;
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--green-muted), transparent);
}

/* ── CONTENT SECTION ── */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.content-block h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    margin-bottom: 1.2rem;
    color: var(--text);
}

.content-block p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 1rem;
}

/* Schedule Table */
.schedule {
    width: 100%;
    border-collapse: collapse;
}

.schedule tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.schedule tr:hover { background: var(--surface); }

.schedule td {
    padding: 0.85rem 0.5rem;
    font-size: 0.85rem;
}

.schedule .day {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-bright);
    width: 100px;
}

.schedule .show { color: var(--text); }
.schedule .time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: var(--text-dim);
    text-align: right;
}

.live-dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--green-bright);
    border-radius: 50%;
    margin-right: 0.4rem;
    animation: blink 1.5s ease infinite;
}

/* ── STREAM ── */
.stream-player iframe {
    border-radius: var(--radius-tiny);
}

/* ── VIDEO GRID ── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.video-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-tiny);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: border-color 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s;
}

.video-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-card:hover { border-color: var(--green-muted); transform: translateY(-4px); }

.video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--surface2), var(--bg2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    position: relative;
    overflow: hidden;
}

.video-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(46,204,113,0.04), transparent);
}

.play-btn {
    position: absolute;
    width: 40px; height: 40px;
    background: var(--text-dim);
    border: 1px solid var(--green-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-card:hover .play-btn {
    background: rgba(46,204,113,0.25);
    box-shadow: 0 0 20px rgba(46,204,113,0.15);
}
.video-card:hover .play-btn svg { fill: var(--green); }

.play-btn svg { width: 14px; height: 14px; fill: var(--green-bright); margin-left: 2px; }

.video-info { padding: 1rem; }

.video-title {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.video-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    text-transform: uppercase;
}

/* ── PROJEKTE ── */
/* https://cssgridgenerator.io/ zum erstellen der Grids */

.projects-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    height: max-content;
}

.project-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-tiny);
    padding: 1rem 2rem;
    height: 100%;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
    overflow: hidden;
}

.project-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-muted), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover {
    border-color: var(--green-muted);
    transform: translateY(-3px);
}

.project-card:hover::after {
    opacity: 1;
}

/* Featured card — extra accent on left border */
.project-card--featured {
    border-left: 2px solid var(--green-muted);
    background: linear-gradient(135deg, rgba(31,122,69,0.06) 0%, var(--surface) 50%);
}

.project-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.project-status--active {
    color: var(--green-bright);
    background: rgba(46,204,113,0.08);
    border: 1px solid var(--green-muted);
}

.project-status--active span {
    width: 6px;
    height: 6px;
    background: var(--green-bright);
    border-radius: 50%;
    animation: blink 1.5s ease infinite;
    flex-shrink: 0;
}

.project-status--soon {
    color: var(--text-dim);
    background: var(--surface2);
    border: 1px solid var(--border);
}

.project-status--soon span {
    width: 6px;
    height: 6px;
    background: var(--text-dim);
    border-radius: 50%;
    flex-shrink: 0;
}

.project-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.project-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    letter-spacing: 0.05em;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.project-desc {
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 0.5rem;
}
.project-desc strong {
    color: var(--green-muted);
    font-weight: 600;
}

.project-desc a {
    color: var(--green);
    text-decoration: underline;
    transition: all 0.3s;
}
.project-desc a:hover {
    color: var(--green-bright);
}

.project-desc u {
    text-decoration-color: var(--green);
}

/* Progress bar — only for featured card */
.project-progress {
    margin-bottom: 0.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.progress-label .accent {
    color: var(--green-bright);
}

.progress-bar {
    width: 100%;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green-muted), var(--green-bright));
    border-radius: 2px;
    position: relative;
    transition: width 1s ease;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--green-bright);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green-bright);
}

.project-card .tag-cloud {
    margin-top: 0;
}

/* ── SOCIAL LINKS ── */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.social-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-tiny);
    padding: 1.5rem;
    background: var(--surface);
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 2px;
    transition: width 0.3s ease;
}

.social-card.yt::before  { background: var(--youtube); }
.social-card.tw::before  { background: var(--twitch); }
.social-card.dc::before  { background: var(--discord); }
.social-card.ig::before  { background: linear-gradient(90deg, #e1306c, #f77737); }

.social-card:hover { border-color: var(--green-muted); transform: translateY(-2px); }
.social-card:hover::before { width: 100%; }

.social-icon {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.social-icon svg { width: 18px; height: 18px; fill: var(--text-muted); }

/*.social-info {}*/
.social-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    color: var(--text);
    line-height: 1;
}
.social-handle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.social-arrow {
    margin-left: auto;
    font-size: 1.2rem;
    color: var(--text-dim);
    transition: color 0.2s, transform 0.2s;
}
.social-card:hover .social-arrow { color: var(--green-bright); transform: translateX(4px); }

/* ── ABOUT ── */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 5rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 1rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-tiny);
    background: var(--surface2);
}

.about-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-big);
    background: var(--surface);
    padding: 2rem;
    position: relative;
}

.about-corner {
    position: absolute;
    width: 12px; height: 12px;
    border-color: var(--green-muted);
    border-style: solid;
}
.about-corner.tl { top:-1px;left:-1px; border-width:2px 0 0 2px; }
.about-corner.tr { top:-1px;right:-1px; border-width:2px 2px 0 0; }
.about-corner.bl { bottom:-1px;left:-1px; border-width:0 0 2px 2px; }
.about-corner.br { bottom:-1px;right:-1px; border-width:0 2px 2px 0; }

.about-card-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 1.5rem;
}

.fact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
}

.fact-row:last-child { border-bottom: none; }

.fact-key {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.fact-val {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 400;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--border);
    padding: 3rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    text-transform: uppercase;
}

footer p span { color: var(--green-bright); }

/* ── ANIMATIONS ── */
@keyframes fadeInDown {
    from { opacity:0; transform:translateY(-20px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInUp {
    from { opacity:0; transform:translateY(20px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
    from { opacity:0; } to { opacity:1; }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 7rem 1.5rem 3rem; }
    .hero-right { height: 300px; }
    .avatar-placeholder-hero { width: max-content; height: 300px; font-size: 6rem; }
    .flash-btn, #avoGPTbtn { bottom: -2px; border-radius: var(--radius)var(--radius) 0 0; }
    .stat-pill { display: none; }
    .section { padding: 5rem 1.5rem; }
    .content-grid, .about-layout { grid-template-columns: 1fr; gap: 3rem; }
    .stream-player iframe { height: 250px !important; }
    .video-grid { grid-template-columns: 1fr 1fr; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .project-card { grid-row: span 2 / span 2; grid-column: span 2 / span 2; }
    .social-grid { grid-template-columns: 1fr; }
    .social-card { border-radius: var(--radius);}
    footer { padding: 2rem 1.5rem; flex-direction: column; gap: 0.8rem; text-align: center; }
}