/* ============================================
   MINO THE SPECIALIST - Portfolio
   Watermelon ASCII / Cyberpunk Aesthetic
   Green body + Pink headings
   ============================================ */

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

:root {
    /* Watermelon palette */
    --pink: #ff2d78;
    --pink-light: #ff6ba6;
    --pink-glow: rgba(255, 45, 120, 0.4);
    --pink-dim: rgba(255, 45, 120, 0.15);
    --green: #00ff41;
    --green-dim: #00aa2a;
    --green-glow: rgba(0, 255, 65, 0.4);
    --cyan: #00ffff;
    --cyan-dim: #007a7a;
    --magenta: #ff00ff;
    --yellow: #ffff00;
    --bg-deep: #020206;
    --bg-card: rgba(2, 2, 6, 0.75);
    --bg-float: rgba(20, 5, 12, 0.92);
    --border-subtle: rgba(0, 255, 65, 0.15);
    --border-pink: rgba(255, 45, 120, 0.25);
    --text-body: #b0ffb0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #020206;
    color: var(--green);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 17px;
}

/* ============================================
   ASCII STARFIELD BACKGROUND
   Exact v7 architecture: canvas fixed, overlays fixed,
   content floats above with position relative + z-index
   ============================================ */
#space {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

#glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.12;
    mix-blend-mode: screen;
    background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(60, 100, 220, 0.4), transparent),
        radial-gradient(ellipse 40% 35% at 25% 35%, rgba(40, 60, 180, 0.15), transparent),
        radial-gradient(ellipse 35% 40% at 75% 65%, rgba(80, 50, 160, 0.1), transparent);
    animation: glowPulse 20s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0%   { opacity: .08; transform: scale(1); }
    100% { opacity: .15;  transform: scale(1.06); }
}

#vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 8, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

#scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    opacity: 0.03;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.4) 2px,
        rgba(0, 0, 0, 0.4) 4px
    );
}

/* ============================================
   INTERGALACTIC369 BADGE — centered, galactic blue
   ============================================ */
.ig-badge {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    font-family: 'Source Code Pro', monospace;
    line-height: 1.25;
    pointer-events: none;
    user-select: none;
    text-align: center;
}

.ig-badge-line1 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #7db4ff;
    text-shadow:
        0 0 10px rgba(80, 140, 255, 0.5),
        0 0 30px rgba(80, 140, 255, 0.2),
        0 0 60px rgba(60, 100, 220, 0.1);
}

.ig-badge-line2 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: right;
    color: #a8d0ff;
    text-shadow: 0 0 10px rgba(120, 170, 255, 0.4);
}

.ig-badge-number {
    color: #a8d0ff;
}

.ig-badge-star {
    color: #e0e8ff;
    font-size: 17px;
    text-shadow: 0 0 14px rgba(200, 220, 255, 0.7), 0 0 30px rgba(100, 150, 255, 0.3);
    display: inline-block;
    animation: ig-star-pulse 2s ease-in-out infinite;
}

.ig-badge-sparkle {
    color: #5b9eff;
    text-shadow: 0 0 12px rgba(80, 140, 255, 0.5);
}

@keyframes ig-star-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

/* ============================================
   FLOATING ASCII HEADING CONTAINERS
   - Left aligned with offset
   - Pink/Watermelon color
   - Much bigger font
   - Bubbly weightless parallax
   ============================================ */
.ascii-heading-float {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 18px 20px;
    margin: 0 0 50px 0;
    margin-left: 0;
    max-width: 100%;
    overflow: visible;
    position: relative;
    text-align: left;
    box-shadow: none;
    /* No CSS transform transition — JS lerp handles all smoothing */
    transition: none;
    will-change: transform, box-shadow;
}

/* No pseudo-element borders */
.ascii-heading-float::before,
.ascii-heading-float::after {
    display: none;
}

/* HOVER STATE — glow only, no border */
.ascii-heading-float:hover {
    box-shadow:
        0 0 60px rgba(255, 45, 120, 0.15),
        0 0 120px rgba(255, 45, 120, 0.06);
}

.ascii-heading-float:hover .ascii-art {
    text-shadow:
        0 0 15px var(--pink-glow),
        0 0 50px rgba(255, 45, 120, 0.4),
        0 0 80px rgba(255, 45, 120, 0.15);
    color: #fff;
}

/* float-heading removed — JS controls all motion */

/* ASCII Art inside containers — BRIGHT PINK, left-aligned, bold, MUCH bigger */
.ascii-art {
    font-family: 'Source Code Pro', 'Courier New', monospace;
    font-size: 10px;
    line-height: 1.1;
    color: #ffb8d9;
    font-weight: 700;
    text-shadow:
        0 0 8px rgba(255, 45, 120, 0.6),
        0 0 25px rgba(255, 45, 120, 0.35),
        0 0 50px rgba(255, 45, 120, 0.15),
        0 0 80px rgba(255, 45, 120, 0.08);
    white-space: pre;
    margin: 0;
    text-align: left;
    letter-spacing: 0.5px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: color 0.6s ease, text-shadow 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
}

/* ============================================
   SCROLL-TRIGGERED HEADING STATES
   Default: dimmed. In-view: flash-in bright.
   ============================================ */

/* Default dimmed state — only opacity/filter transitions for scroll trigger */
.ascii-heading-float {
    opacity: 0.25;
    filter: brightness(0.4);
    transition: opacity 0.7s ease, filter 0.7s ease;
}

/* Active / in-view state — full brightness */
.ascii-heading-float.heading-visible {
    opacity: 1;
    filter: brightness(1);
}

/* Flash-in animation when entering viewport */
.ascii-heading-float.heading-flash .ascii-art {
    animation: heading-flash-in 0.8s ease-out;
}

@keyframes heading-flash-in {
    0% {
        color: #fff;
        text-shadow:
            0 0 30px rgba(255, 255, 255, 0.9),
            0 0 60px rgba(255, 45, 120, 0.7),
            0 0 100px rgba(255, 45, 120, 0.4),
            0 0 150px rgba(255, 45, 120, 0.2);
        filter: brightness(2.5);
    }
    30% {
        color: #ffe0ee;
        text-shadow:
            0 0 20px rgba(255, 200, 230, 0.6),
            0 0 50px rgba(255, 45, 120, 0.4),
            0 0 80px rgba(255, 45, 120, 0.15);
        filter: brightness(1.5);
    }
    100% {
        color: #ffadd2;
        text-shadow:
            0 0 15px var(--pink-glow),
            0 0 40px rgba(255, 45, 120, 0.2);
        filter: brightness(1);
    }
}

/* Hero heading even bigger */
#home .ascii-art {
    font-size: 13px;
    line-height: 1.05;
    font-weight: 700;
}

/* Loading placeholder */
.ascii-art:empty::after {
    content: '> loading...';
    font-size: 12px;
    color: rgba(255, 45, 120, 0.3);
    animation: blink 1s step-end infinite;
}

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

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
}

.section-container {
    max-width: 1100px;
    width: 92%;
    margin-left: max(4vw, 30px);
    margin-right: auto;
}

.section-enter .section-container {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.section-enter.section-enter-active .section-container {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.welcome-content {
    margin-top: 10px;
}

.typing-text {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--green);
    min-height: 1.5em;
    font-family: 'Source Code Pro', monospace;
}

.typing-cursor {
    display: inline-block;
    width: 8px;
    height: 1.15em;
    background: var(--green);
    margin-left: 2px;
    animation: cursor-blink 0.7s step-end infinite;
    vertical-align: text-bottom;
}

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

.sub-text {
    font-size: 1.15rem;
    color: var(--text-body);
    opacity: 0;
    animation: fadeIn 2s forwards 3s;
}

@keyframes fadeIn {
    to { opacity: 0.8; }
}

/* ============================================
   I AM MINO SECTION
   ============================================ */
.mino-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.avatar-container {
    flex-shrink: 0;
    position: relative;
}

#avatar-particles {
    position: absolute;
    top: -40px;
    left: -40px;
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    pointer-events: none;
    z-index: 1;
}

.ascii-frame {
    border: 1px solid var(--cyan);
    padding: 4px;
    display: inline-block;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
    position: relative;
}

.ascii-frame::before {
    content: '┌──────────────────────┐';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: var(--cyan-dim);
    white-space: nowrap;
}

.ascii-frame::after {
    content: '└──────────────────────┘';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: var(--cyan-dim);
    white-space: nowrap;
}

#avatar {
    width: 180px;
    height: 180px;
    object-fit: cover;
    filter: saturate(0.7) brightness(0.9);
    transition: all 0.4s ease;
    animation: avatar-pulse 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes avatar-pulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.15);
        filter: saturate(0.7) brightness(0.9);
    }
    50% {
        box-shadow: 0 0 35px rgba(0, 255, 255, 0.3), 0 0 60px rgba(0, 255, 65, 0.1);
        filter: saturate(0.85) brightness(1.0);
    }
}

#avatar:hover {
    filter: saturate(1) brightness(1.15);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5), 0 0 100px rgba(0, 255, 255, 0.15);
    animation: none;
}

.mino-text {
    flex: 1;
}

.motto {
    font-size: 1.6rem;
    color: var(--pink-light);
    font-weight: 700;
    margin-bottom: 22px;
    text-shadow: 0 0 20px rgba(255, 45, 120, 0.25);
    line-height: 1.5;
}

.mino-desc {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 16px;
}

.mino-desc-extra {
    opacity: 0.85;
    font-style: italic;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
    padding-bottom: 30px;
}

.about-content {
    text-align: left;
    max-width: 800px;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-body);
}

.about-content p {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 2px solid var(--border-subtle);
    transition: border-color 0.3s ease;
}

.about-content p:hover {
    border-left-color: var(--green);
}

/* ============================================
   LIGHTBULB QUOTE — warm flicker-on effect
   ============================================ */
.bulb-quote {
    margin-bottom: 50px;
    padding: 20px 0 30px 0;
    text-align: center;
    position: relative;
    padding-right: 60px;
}

#bulbQuote2 {
    margin-top: 80px;
    margin-bottom: 0;
    padding: 50px 0 10px 0;
}

.bulb-quote-text {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: clamp(36px, 5.5vw, 58px);
    font-weight: 700;
    font-style: italic;
    line-height: 1.3;
    color: rgba(60, 45, 20, 0.08);
    text-shadow: none;
    display: inline-block;
    transition: none;
}

/* Bulb OFF — default dim/invisible state */
.bulb-quote.bulb-off .bulb-quote-text {
    color: rgba(60, 45, 20, 0.08);
    text-shadow: none;
}

/* Bulb ON — warm glowing state, much stronger radiating glow */
.bulb-quote.bulb-on .bulb-quote-text {
    color: #ffe082;
    text-shadow:
        0 0 8px rgba(255, 220, 100, 1),
        0 0 20px rgba(255, 210, 80, 0.9),
        0 0 45px rgba(255, 190, 50, 0.7),
        0 0 80px rgba(255, 170, 30, 0.45),
        0 0 130px rgba(255, 150, 20, 0.25),
        0 0 200px rgba(255, 130, 10, 0.12);
    animation: bulb-idle-flicker 4s ease-in-out infinite;
}

/* Flicker-on keyframe sequence — simulates lightbulb struggling to turn on */
@keyframes bulb-flicker-on {
    0%   { color: rgba(60, 45, 20, 0.08); text-shadow: none; }
    4%   { color: #ffe082; text-shadow: 0 0 12px rgba(255, 220, 100, 0.9), 0 0 35px rgba(255, 190, 50, 0.5), 0 0 60px rgba(255, 170, 30, 0.2); }
    6%   { color: rgba(80, 60, 25, 0.12); text-shadow: none; }
    14%  { color: rgba(80, 60, 25, 0.12); text-shadow: none; }
    17%  { color: #ffe082; text-shadow: 0 0 14px rgba(255, 220, 100, 0.95), 0 0 40px rgba(255, 190, 50, 0.6), 0 0 70px rgba(255, 170, 30, 0.3); }
    20%  { color: rgba(100, 75, 30, 0.18); text-shadow: 0 0 5px rgba(255, 200, 60, 0.2); }
    28%  { color: rgba(100, 75, 30, 0.18); text-shadow: none; }
    32%  { color: #ffcc55; text-shadow: 0 0 10px rgba(255, 210, 80, 0.8), 0 0 30px rgba(255, 180, 40, 0.45), 0 0 55px rgba(255, 160, 25, 0.2); }
    35%  { color: rgba(120, 90, 35, 0.25); text-shadow: 0 0 4px rgba(255, 200, 60, 0.15); }
    42%  { color: #ffe082; text-shadow: 0 0 12px rgba(255, 220, 100, 0.9), 0 0 40px rgba(255, 190, 50, 0.55), 0 0 70px rgba(255, 170, 30, 0.25); }
    45%  { color: #e8b830; text-shadow: 0 0 8px rgba(255, 200, 60, 0.5); }
    52%  { color: #ffe082; text-shadow: 0 0 14px rgba(255, 220, 100, 0.95), 0 0 45px rgba(255, 190, 50, 0.6), 0 0 80px rgba(255, 170, 30, 0.3); }
    56%  { color: #f0c040; text-shadow: 0 0 10px rgba(255, 200, 60, 0.7), 0 0 30px rgba(255, 180, 40, 0.3); }
    65%  { color: #ffe082; text-shadow: 0 0 14px rgba(255, 220, 100, 1), 0 0 50px rgba(255, 190, 50, 0.65), 0 0 90px rgba(255, 170, 30, 0.35), 0 0 140px rgba(255, 150, 20, 0.15); }
    78%  { color: #ffe082; text-shadow: 0 0 12px rgba(255, 220, 100, 1), 0 0 45px rgba(255, 190, 50, 0.7), 0 0 100px rgba(255, 170, 30, 0.4), 0 0 160px rgba(255, 150, 20, 0.2); }
    100% { color: #ffe082; text-shadow: 0 0 8px rgba(255, 220, 100, 1), 0 0 20px rgba(255, 210, 80, 0.9), 0 0 45px rgba(255, 190, 50, 0.7), 0 0 80px rgba(255, 170, 30, 0.45), 0 0 130px rgba(255, 150, 20, 0.25), 0 0 200px rgba(255, 130, 10, 0.12); }
}

/* Flicker-on animation class — applied by JS on scroll trigger */
.bulb-quote.bulb-flickering .bulb-quote-text {
    animation: bulb-flicker-on 1.8s ease-out forwards;
}

/* Subtle idle breathing once fully on — warm radiating pulsing glow */
@keyframes bulb-idle-flicker {
    0%, 100% {
        text-shadow:
            0 0 8px rgba(255, 220, 100, 1),
            0 0 20px rgba(255, 210, 80, 0.9),
            0 0 45px rgba(255, 190, 50, 0.7),
            0 0 80px rgba(255, 170, 30, 0.45),
            0 0 130px rgba(255, 150, 20, 0.25);
    }
    30% {
        text-shadow:
            0 0 6px rgba(255, 220, 100, 0.85),
            0 0 16px rgba(255, 210, 80, 0.7),
            0 0 35px rgba(255, 190, 50, 0.5),
            0 0 65px rgba(255, 170, 30, 0.3),
            0 0 100px rgba(255, 150, 20, 0.15);
    }
    60% {
        text-shadow:
            0 0 10px rgba(255, 220, 100, 1),
            0 0 25px rgba(255, 210, 80, 0.95),
            0 0 55px rgba(255, 190, 50, 0.75),
            0 0 95px rgba(255, 170, 30, 0.5),
            0 0 150px rgba(255, 150, 20, 0.3);
    }
}

/* Fade-out when scrolling away */
.bulb-quote.bulb-fading .bulb-quote-text {
    animation: bulb-fade-out 0.6s ease-in forwards;
}

@keyframes bulb-fade-out {
    0% {
        color: #ffe082;
        text-shadow:
            0 0 8px rgba(255, 220, 100, 1),
            0 0 20px rgba(255, 210, 80, 0.9),
            0 0 45px rgba(255, 190, 50, 0.7),
            0 0 80px rgba(255, 170, 30, 0.45);
    }
    100% {
        color: rgba(60, 45, 20, 0.08);
        text-shadow: none;
    }
}

/* ============================================
   SKILLS SECTION
   ============================================ */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.skill-item {
    background: var(--bg-card);
    padding: 20px;
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
    transform: translateY(-4px);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 30px;
    opacity: 0.8;
    font-style: italic;
    max-width: 700px;
}

.skill-name {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--cyan);
    letter-spacing: 0.5px;
}

.skill-desc {
    font-size: 0.95rem;
    color: var(--text-body);
    opacity: 0.7;
    margin-bottom: 14px;
    line-height: 1.6;
}

.skill-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.1);
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--green-dim), var(--green));
    width: 0;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

/* ============================================
   PROJECTS / DEVELOPMENT
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.project-card {
    background: var(--bg-card);
    padding: 24px;
    border: 1px solid rgba(255, 0, 255, 0.15);
    border-radius: 2px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.project-card:hover::before { left: 100%; }

.project-card:hover {
    border-color: var(--magenta);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.15);
    transform: translateY(-6px);
}

.project-header h3 {
    color: var(--cyan);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.project-header h3::before {
    content: '// ';
    color: var(--green-dim);
    font-weight: 300;
}

.project-content { color: var(--text-body); font-size: 1.05rem; line-height: 1.8; }

/* ============================================
   CONTACT SECTION — STRONG VISIBLE FORM
   ============================================ */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    margin-top: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-body);
    transition: all 0.3s ease;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 2px;
}

.contact-info p i {
    color: var(--pink);
    width: 22px;
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-info p:hover {
    color: var(--green);
    transform: translateX(8px);
    border-color: var(--border-pink);
    background: rgba(255, 45, 120, 0.03);
}

.contact-info p:hover i {
    color: var(--pink-light);
    text-shadow: 0 0 10px var(--pink-glow);
}

/* === FORM — Big, bold, visible === */
.contact-form {
    background: rgba(2, 2, 6, 0.85);
    padding: 32px;
    border: 2px solid var(--pink);
    border-radius: 4px;
    box-shadow:
        0 0 30px rgba(255, 45, 120, 0.1),
        inset 0 0 40px rgba(255, 45, 120, 0.02);
    position: relative;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Glow on form hover */
.contact-form:hover {
    box-shadow:
        0 0 50px rgba(255, 45, 120, 0.18),
        0 0 100px rgba(255, 45, 120, 0.06),
        inset 0 0 50px rgba(255, 45, 120, 0.03);
    border-color: var(--pink-light);
}

/* Corner decorations */
.contact-form::before {
    content: '╔══════════════════════════════════╗';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: var(--pink-dim);
    white-space: nowrap;
    letter-spacing: 1px;
    pointer-events: none;
}

.contact-form::after {
    content: '╚══════════════════════════════════╝';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: var(--pink-dim);
    white-space: nowrap;
    letter-spacing: 1px;
    pointer-events: none;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    color: var(--pink);
    margin-bottom: 6px;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Source Code Pro', monospace;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 45, 120, 0.25);
    color: var(--green);
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    border-radius: 3px;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: rgba(255, 45, 120, 0.5);
    background: rgba(0, 0, 0, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--pink);
    box-shadow:
        0 0 15px rgba(255, 45, 120, 0.15),
        inset 0 0 10px rgba(255, 45, 120, 0.03);
    background: rgba(0, 0, 0, 0.8);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 45, 120, 0.25);
}

.contact-form textarea {
    height: 140px;
    resize: vertical;
}

.contact-form button {
    background: transparent;
    color: var(--pink);
    border: 2px solid var(--pink);
    padding: 14px 36px;
    cursor: pointer;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    border-radius: 3px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 45, 120, 0.15), transparent);
    transition: left 0.5s ease;
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:hover {
    background: rgba(255, 45, 120, 0.1);
    box-shadow:
        0 0 30px rgba(255, 45, 120, 0.2),
        0 0 60px rgba(255, 45, 120, 0.08);
    transform: translateY(-2px);
    color: var(--pink-light);
    text-shadow: 0 0 10px var(--pink-glow);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    min-height: auto;
    padding: 50px 20px;
    border-top: 1px solid var(--border-pink);
}

.footer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--green-dim);
    font-size: 0.85rem;
}

/* ============================================
   CURSOR TRAIL
   ============================================ */
.cursor-dot {
    position: fixed;
    width: 3px;
    height: 3px;
    background: var(--green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .section {
        padding: 70px 15px;
    }

    .section-container {
        margin-left: 15px;
    }

    .ascii-heading-float {
        padding: 12px 14px;
        margin-bottom: 35px;
        margin-left: 0;
        max-width: 100%;
    }

    /* ── Mobile performance: reduce text-shadow layers ── */
    .ascii-art {
        font-size: 5.5px !important;
        line-height: 1.05;
        text-shadow:
            0 0 8px rgba(255, 45, 120, 0.5),
            0 0 20px rgba(255, 45, 120, 0.2) !important;
    }

    #home .ascii-art {
        font-size: 7px !important;
    }

    /* Reduce bulb glow layers on mobile */
    .bulb-quote.bulb-on .bulb-quote-text {
        text-shadow:
            0 0 8px rgba(255, 220, 100, 1),
            0 0 25px rgba(255, 210, 80, 0.7),
            0 0 50px rgba(255, 190, 50, 0.4) !important;
    }

    .bulb-quote-text {
        font-size: clamp(24px, 5vw, 38px) !important;
    }

    .bulb-quote {
        padding-right: 20px;
    }

    /* Reduce hover glow on mobile (no hover anyway) */
    .ascii-heading-float:hover {
        box-shadow: none;
    }

    /* Simplify glow overlay on mobile */
    #glow {
        opacity: 0.06;
        background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(60, 100, 220, 0.3), transparent);
    }

    .mino-content {
        flex-direction: column;
        text-align: center;
    }

    .motto {
        font-size: 1.3rem;
    }

    .mino-desc,
    .about-content,
    .project-content {
        font-size: 1.05rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .skills-container,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    #avatar {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .section-container {
        margin-left: 10px;
    }

    .ascii-heading-float {
        margin-left: 0;
        max-width: 100%;
    }

    .ascii-art {
        font-size: 4px !important;
    }

    #home .ascii-art {
        font-size: 6px !important;
    }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--pink-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }

::selection {
    background: rgba(255, 45, 120, 0.2);
    color: var(--pink-light);
}
