/* --- Custom Properties & Theme Setup --- */
:root {
    --bg-dark: #06050f;
    --bg-card: rgba(12, 10, 28, 0.6);
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(255, 42, 117, 0.3);
    
    --primary: #ff2a75;
    --secondary: #00f0ff;
    --accent: #8b5cf6;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    --glow-primary: 0 0 15px rgba(255, 42, 117, 0.4);
    --glow-secondary: 0 0 15px rgba(0, 250, 255, 0.4);
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-quick: all 0.2s ease-out;
}

/* --- Loading Screen --- */
#loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoPulse 1.2s ease-in-out infinite alternate;
    letter-spacing: -2px;
}

@keyframes logoPulse {
    from { filter: drop-shadow(0 0 10px rgba(255, 42, 117, 0.4)); transform: scale(0.97); }
    to { filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.6)); transform: scale(1.03); }
}

.loader-bar {
    width: 240px;
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    animation: loadProgress 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    width: 0%;
}

@keyframes loadProgress {
    0% { width: 0%; }
    60% { width: 75%; }
    100% { width: 100%; }
}

.loader-text {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: loaderBlink 1s infinite;
}

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

/* --- Document Defaults & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

body {
    background: transparent;
    min-height: 100vh;
    line-height: 1.6;
    cursor: default;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 42, 117, 0.3);
    border-radius: 4px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
    box-shadow: var(--glow-primary);
}

/* --- Global Background Canvas --- */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    pointer-events: none;
}

/* --- Custom Cursor --- */
#custom-cursor {
    width: 32px;
    height: 32px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    display: none; /* Hidden on touch devices */
}

#custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--secondary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }
    #custom-cursor, #custom-cursor-dot {
        display: block;
    }
}

/* --- Reusable Components & Glassmorphism --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px 0 rgba(255, 42, 117, 0.15), 0 0 25px rgba(0, 240, 255, 0.08);
    background: rgba(16, 14, 38, 0.75);
}

.section-header {
    margin-bottom: 60px;
    position: relative;
}

.sub-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--text-main) 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin-top: 10px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-smooth);
    gap: 10px;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #d91c5c 100%);
    color: var(--text-main);
    border: none;
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 42, 117, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
    box-shadow: var(--glow-secondary);
    transform: translateY(-2px);
}

/* --- Navigation Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 5, 15, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

#logo-canvas {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: filter 0.4s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.logo-link:hover #logo-canvas {
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.7)) drop-shadow(0 0 4px rgba(255, 42, 117, 0.5));
    transform: scale(1.08) rotate(10deg);
}



.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--text-main) 45%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-smooth);
}

.logo-link:hover .logo-text {
    filter: drop-shadow(0 0 8px var(--secondary));
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

nav ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-quick);
}

nav ul li a:hover, nav ul li a.active {
    color: var(--text-main);
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    position: absolute;
    left: 0;
    bottom: 0;
    transition: var(--transition-smooth);
}

nav ul li a:hover::after {
    width: 100%;
}

.open-menu, .close-menu {
    display: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition-quick);
}

.open-menu:hover, .close-menu:hover {
    color: var(--primary);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    height: 100%;
}

.hero-content {
    z-index: 10;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 30px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.05);
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary) 0%, #ff6e97 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-3d {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

#hero-canvas-container {
    width: 100%;
    height: 100%;
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite ease-in-out;
}

@keyframes scrollMouse {
    0% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

/* --- About Section --- */
.about-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
}

.about-col-1 {
    flex-basis: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-wrapper {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 4/5;
    border-radius: 16px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(110%);
    transition: var(--transition-smooth);
    border-radius: 16px;
}

.img-wrapper:hover img {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.03);
}

.glowing-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.img-wrapper:hover .glowing-border {
    opacity: 1;
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.2);
}

.about-col-2 {
    flex-basis: 60%;
    padding: 40px;
}

.about-intro {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: 500;
}

.about-intro strong {
    color: var(--primary);
}

.about-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.about-desc strong {
    color: var(--primary);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 42, 117, 0.25);
}

.tab-titles {
    display: flex;
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 30px;
    gap: 30px;
}

.tab-links {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    transition: var(--transition-quick);
}

.tab-links:hover {
    color: var(--text-main);
}

.tab-links::after {
    content: '';
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    position: absolute;
    bottom: -1px;
    left: 0;
    transition: var(--transition-smooth);
}

.tab-links.active-link {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 42, 117, 0.2);
}

.tab-links.active-link::after {
    width: 100%;
}

.tab-contents {
    display: none;
    animation: fadeInTab 0.5s ease;
}

.tab-contents.active-tab {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Skills Content Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    list-style: none;
}

.skills-grid li {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 20px;
    transition: var(--transition-smooth);
}

.skills-grid li:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-3px);
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.skill-info span {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-main);
}

.skill-info i {
    color: var(--primary);
    font-size: 18px;
}

.skills-grid li p {
    font-size: 13px;
    color: var(--text-muted);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.skill-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 4px 10px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.skills-grid li:hover .skill-tag {
    border-color: rgba(0, 240, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 240, 255, 0.02);
}

.skills-grid li:hover .skill-tag:hover {
    border-color: var(--secondary);
    color: var(--text-main);
    background: rgba(0, 240, 255, 0.08);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    transform: translateY(-1px);
}

/* Timelines (Experience & Education) */
.timeline {
    list-style: none;
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 2px;
    height: 95%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), transparent);
}

.timeline li {
    position: relative;
    margin-bottom: 30px;
}

.timeline li:last-child {
    margin-bottom: 0;
}

.timeline li::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--secondary);
    box-shadow: var(--glow-secondary);
    transition: var(--transition-smooth);
}

.timeline li:hover::before {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.timeline-date {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
}

.timeline-subtitle {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 8px;
}

.timeline-detail {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- Services Section --- */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 50px 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-3d-container {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .service-3d-container {
    opacity: 0.95;
    transform: scale(1.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 42, 117, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 42, 117, 0.15);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--text-main);
    box-shadow: var(--glow-primary);
    transform: scale(1.08);
}

.service-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main);
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.service-link {
    text-decoration: none;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-quick);
    position: relative;
    z-index: 2;
}

.service-link i {
    font-size: 11px;
    transition: transform 0.2s;
}

.service-link:hover {
    color: var(--text-main);
    text-shadow: var(--glow-secondary);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* --- Tech Stack Section --- */
.techstack-section {
    position: relative;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 14px;
    max-width: 580px;
}

.tech-category {
    margin-bottom: 50px;
}

.tech-category-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-category-title i {
    font-size: 14px;
    color: var(--primary);
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: default;
    transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    min-width: 100px;
    position: relative;
    overflow: hidden;
    /* Start hidden — IntersectionObserver adds .tech-card--visible */
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

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

.tech-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-card--visible:hover {
    border-color: var(--secondary);
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.12), 0 0 0 1px rgba(0, 240, 255, 0.1);
}

.tech-card--visible:hover::before {
    opacity: 1;
}

.tech-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.tech-card--visible:hover img {
    transform: scale(1.15) rotate(-4deg);
}

.tech-card span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.tech-card--visible:hover span {
    color: var(--text-main);
}

/* Invert dark icons (Express, GitHub, Socket.io, Vercel) for dark bg */
.tech-card img.icon-invert {
    filter: invert(1) brightness(0.85);
}

.tech-card--visible:hover img.icon-invert {
    filter: invert(1) brightness(1.1);
}

/* Three.js card SVG color */
.tech-card--threejs svg {
    color: var(--text-muted);
    transition: color 0.3s, transform 0.3s ease;
    position: relative;
    z-index: 1;
}
.tech-card--threejs.tech-card--visible:hover svg {
    color: var(--secondary);
    transform: scale(1.15) rotate(-4deg);
}

/* Vercel card SVG color */
.tech-card--vercel svg {
    color: var(--text-main);
    transition: color 0.3s, transform 0.3s ease;
    position: relative;
    z-index: 1;
}
.tech-card--vercel.tech-card--visible:hover svg {
    color: var(--secondary);
    transform: scale(1.15) rotate(-4deg);
}


/* Infinite Marquee Strip */
.tech-marquee-wrap {
    margin-top: 20px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    /* Start hidden */
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.tech-marquee {
    display: flex;
    width: 100%;
}

.tech-marquee-track {
    display: flex;
    gap: 0;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
    flex-shrink: 0;
}

.tech-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.tech-marquee-track span img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.tech-marquee-track span svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.tech-marquee-track span:hover {
    color: var(--secondary);
    border-color: var(--secondary);
    background: rgba(0, 240, 255, 0.05);
}

.tech-marquee-track span:hover img {
    transform: scale(1.15) rotate(-4deg);
}

.tech-marquee-track span:hover svg {
    transform: scale(1.15) rotate(-4deg);
    color: var(--secondary);
}

/* Invert dark icons in marquee */
.tech-marquee-track img.icon-invert {
    filter: invert(1) brightness(0.85);
}

.tech-marquee-track span:hover img.icon-invert {
    filter: invert(1) brightness(1.1);
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Work / Portfolio Section --- */

.work-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.work-card {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.work-img-container {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
}

.work-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.work-card:hover .work-img-container img {
    transform: scale(1.05);
}

.work-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.work-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
}

.work-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.work-tags span {
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 4px 12px;
    border-radius: 30px;
    color: var(--text-muted);
}

.work-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-quick);
}

.work-link:hover {
    color: var(--text-main);
    text-shadow: var(--glow-primary);
}

.work-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.work-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-quick);
    padding: 6px 14px;
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 20px;
    background: rgba(0, 240, 255, 0.04);
}

.work-preview-link:hover {
    color: var(--text-main);
    border-color: var(--secondary);
    background: rgba(0, 240, 255, 0.1);
    box-shadow: var(--glow-secondary);
    transform: translateY(-2px);
}

.work-preview-link i {
    font-size: 12px;
}

.btn-container {
    display: flex;
    justify-content: center;
}

/* --- Contact Section --- */
.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
}

.contact-left {
    flex-basis: 45%;
    padding: 40px;
}

.contact-intro-text {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 35px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-item i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 18px;
    box-shadow: var(--glow-secondary);
}

.contact-info-item h4 {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-info-item p a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition-quick);
}

.contact-info-item p a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.social-icons a svg {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
}

.social-icons a:hover {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
    transform: translateY(-3px);
}

.btn-cv {
    width: 100%;
}

.contact-right {
    flex-basis: 50%;
    padding: 40px;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.form-group input, .form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--text-main);
    font-size: 16px;
    outline: none;
    transition: var(--transition-quick);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--secondary);
    background: rgba(0, 240, 255, 0.01);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.btn-submit {
    width: 100%;
    border: none;
    margin-top: 10px;
}

#msg {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;
    color: #4ade80;
    text-align: center;
    min-height: 22px;
}

/* --- Footer --- */
footer {
    border-top: 1px solid var(--border-glass);
    background: rgba(6, 5, 15, 0.9);
    padding: 25px 0;
    text-align: center;
    z-index: 10;
    position: relative;
}

.copyright {
    font-size: 14px;
    color: var(--text-muted);
}

.copyright i {
    color: var(--primary);
    margin: 0 4px;
    animation: heartBeat 1.4s infinite ease-in-out;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* --- Responsive Adjustments & Small Screens --- */
@media only screen and (max-width: 992px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-3d {
        height: 300px;
        order: -1; /* Place 3D model on top for mobile */
    }
    
    .about-row, .contact-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-col-1, .about-col-2, .contact-left, .contact-right {
        flex-basis: 100%;
    }
    
    .about-col-1 {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 768px) {
    .sub-title {
        font-size: 34px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    /* Navigation burger menu */
    .open-menu {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -240px;
        width: 240px;
        height: 100vh;
        background: rgba(6, 5, 15, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-glass);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 40px;
        gap: 25px;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        font-size: 18px;
        width: 100%;
    }
    
    nav ul .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .about-col-2, .contact-left, .contact-right {
        padding: 24px;
    }
}

@media only screen and (max-width: 480px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

/* ==========================================
   AI SHIBA AGENT STYLES
   ========================================== */

/* 1. Speech Bubble in Hero */
.hero-3d {
    position: relative;
}

.shiba-speech-bubble {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(12, 10, 28, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 10px 16px;
    max-width: 200px;
    z-index: 100;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), var(--glow-secondary);
    animation: bubbleFloat 4s ease-in-out infinite;
    transition: var(--transition-smooth);
}

.shiba-speech-bubble:hover {
    transform: scale(1.05);
    border-color: var(--secondary);
    box-shadow: 0 6px 25px rgba(0, 240, 255, 0.25), var(--glow-secondary);
}

.bubble-content {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-main);
    text-align: center;
}

.bubble-arrow {
    position: absolute;
    bottom: -8px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(12, 10, 28, 0.8);
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* 2. Chat Widget Container */
.ai-agent-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Outfit', sans-serif;
}

/* 3. Toggle Button */
.ai-widget-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    padding: 12px 20px;
    border-radius: 30px;
    color: var(--text-main);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 42, 117, 0.1);
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 14px;
    position: relative;
}

.ai-widget-toggle i {
    font-size: 18px;
    color: var(--secondary);
    transition: var(--transition-smooth);
}

.ai-widget-toggle:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 25px rgba(255, 42, 117, 0.3), var(--glow-primary);
    transform: translateY(-3px);
}

.ai-widget-toggle:hover i {
    transform: rotate(15deg) scale(1.1);
    color: var(--primary);
}

/* Notification Ping */
.notification-ping {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: var(--glow-primary);
    animation: pingPulse 1.8s infinite;
}

@keyframes pingPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 42, 117, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 42, 117, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 42, 117, 0); }
}

/* 4. Chat Window */
.ai-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition-smooth);
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    background: rgba(12, 10, 28, 0.85);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.1);
}

.ai-chat-window.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

/* Chat Header */
.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-glass);
}

.chat-header-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 16px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.chat-header-info {
    flex: 1;
}

.chat-header-info h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: var(--text-main);
    font-family: 'Space Grotesk', sans-serif;
}

.chat-status {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: statusPulse 2s infinite;
}

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

.chat-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-quick);
    padding: 4px;
}

.chat-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
}

/* Custom message scrollbar */
.chat-messages::-webkit-scrollbar {
    width: 4px;
}
.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, 0.15);
    border-radius: 2px;
}
.chat-messages::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Message Styles */
.message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
}

.message.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    border-bottom-left-radius: 2px;
}

.message.user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(139, 92, 246, 0.8) 100%);
    color: var(--text-main);
    border-bottom-right-radius: 2px;
    box-shadow: 0 4px 15px rgba(255, 42, 117, 0.15);
}

.message-time {
    display: block;
    font-size: 9px;
    color: var(--text-muted);
    margin-top: 4px;
    text-align: right;
}

/* Message action links & buttons */
.message-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
    cursor: pointer;
    transition: var(--transition-quick);
}

.message-action-btn:hover {
    background: rgba(0, 240, 255, 0.15);
    border-color: var(--secondary);
    box-shadow: var(--glow-secondary);
    transform: translateY(-1px);
}

/* Suggestions Area */
.chat-suggestions {
    display: flex;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(6, 5, 15, 0.4);
    border-top: 1px solid var(--border-glass);
    overflow-x: auto;
    white-space: nowrap;
}

.chat-suggestions::-webkit-scrollbar {
    height: 3px;
}
.chat-suggestions::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.05);
}

.suggestion-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 15px;
    padding: 6px 12px;
    color: var(--text-muted);
    font-size: 11.5px;
    cursor: pointer;
    transition: var(--transition-quick);
    flex-shrink: 0;
}

.suggestion-btn:hover {
    color: var(--secondary);
    border-color: var(--secondary);
    background: rgba(0, 240, 255, 0.03);
}

/* Chat Input Form */
.chat-input-form {
    display: flex;
    padding: 12px 16px;
    background: rgba(6, 5, 15, 0.7);
    border-top: 1px solid var(--border-glass);
    gap: 8px;
}

.chat-input-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text-main);
    font-size: 13px;
    transition: var(--transition-quick);
}

.chat-input-form input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.chat-send-btn {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary) 0%, #d91c5c 100%);
    border: none;
    border-radius: 8px;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition-smooth);
    box-shadow: var(--glow-primary);
}

.chat-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(255, 42, 117, 0.5);
}

/* typing bubble */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingBounce 1.2s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* 5. Responsiveness for Mobile Viewports */
@media only screen and (max-width: 480px) {
    .ai-agent-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .ai-chat-window {
        width: calc(100vw - 40px);
        height: 450px;
        right: 0;
        bottom: 70px;
    }
    
    .shiba-speech-bubble {
        max-width: 160px;
        top: 10px;
        right: 10px;
    }
}

/* 6. Typewriter Effect for Hero Title */
#typewriter-text {
    position: relative;
    white-space: nowrap;
}

#typewriter-text span {
    background: linear-gradient(135deg, var(--primary) 0%, #ff6e97 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.typewriter-cursor {
    display: inline-block;
    color: var(--secondary);
    font-weight: 300;
    margin-left: 5px;
    animation: typeCursorBlink 0.9s infinite;
}

@keyframes typeCursorBlink {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}
/* 7. Home Section Top-Right Social Links */
.home-socials-right {
    position: absolute;
    top: 110px;
    right: 40px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    z-index: 100;
}

.home-social-link {
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 24px;
    background: rgba(12, 10, 28, 0.45);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.home-social-link i {
    font-size: 15px;
}

.home-social-link:hover {
    color: var(--secondary);
    border-color: var(--secondary);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: var(--glow-secondary);
    transform: translateY(-2px);
}

.home-social-link#home-cv-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(255, 42, 117, 0.05);
    box-shadow: var(--glow-primary);
}

/* Adjust position on tablets & mobile */
@media only screen and (max-width: 768px) {
    .home-socials-right {
        top: 100px;
        right: 20px;
        flex-direction: row;
        gap: 12px;
    }
    
    .home-social-link {
        padding: 8px 14px;
        font-size: 11px;
        border-radius: 18px;
    }
    
    .home-social-link i {
        font-size: 13px;
    }
    
    /* Reposition Shiba speech bubble to left side to avoid collision with top-right socials */
    .shiba-speech-bubble {
        right: auto;
        left: 20px;
        top: 20px;
        max-width: 150px;
    }
    
    .bubble-arrow {
        left: 30px;
    }
}

/* 8. Secondary Highlight Style */
.highlight-secondary,
.about-intro .highlight-secondary {
    color: var(--secondary) !important;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

/* 9. Primary Highlight Style */
.highlight-primary,
.about-intro .highlight-primary {
    color: var(--primary) !important;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 42, 117, 0.4);
}

/* 10. Animated Neon Highlight */
.highlight-animated {
    font-weight: 700;
    animation: neonPulse 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes neonPulse {
    0%   { color: var(--primary); text-shadow: 0 0 6px rgba(255,42,117,0.9), 0 0 20px rgba(255,42,117,0.5); }
    50%  { color: var(--secondary); text-shadow: 0 0 6px rgba(0,240,255,0.9), 0 0 20px rgba(0,240,255,0.5); }
    100% { color: var(--primary); text-shadow: 0 0 6px rgba(255,42,117,0.9), 0 0 20px rgba(255,42,117,0.5); }
}