:root {
    --bg-color: #0f0f11;
    --card-bg: #18181b;
    --card-hover: #27272a;
    --text-primary: #ffffff;
    --text-muted: #c4c4cc;
    --accent-pink: #FF2E63;
    --accent-orange: #FF9F1C;
    --accent-purple: #6C1BF9;
    --gradient-text: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --gap: 1.5rem;
    --radius: 24px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    padding: 8rem 2rem 2rem 2rem;
    /* Increased top padding for fixed header */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Glass Header */
.glass-header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-header:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 92%;
}

.header-content {
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Group */
.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Instagram-style Profile Ring */
.profile-ring {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 2.5px;
    flex-shrink: 0;
    animation: ringRotate 3s linear infinite;
}

@keyframes ringRotate {
    0% {
        background: linear-gradient(0deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    25% {
        background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    50% {
        background: linear-gradient(180deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    75% {
        background: linear-gradient(270deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    100% {
        background: linear-gradient(360deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }
}

.profile-pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-color);
    display: block;
}

#profile-trigger {
    cursor: pointer !important;
    transition: transform 0.3s ease;
}

#profile-trigger:hover {
    transform: scale(1.1);
}

/* Profile Lightbox Modal */
.profile-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.profile-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-ring {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 16px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 3px;
    animation: ringRotate 3s linear infinite;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: contain;
    max-height: 80vh;
    display: block;
}

.lightbox-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.lightbox-close {
    position: absolute;
    top: -55px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-close:hover {
    background: var(--accent-pink);
    transform: rotate(90deg) scale(1.1);
}

/* Logo Styles */
.logo-name {
    display: flex;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -1px;
    overflow: hidden;
    white-space: nowrap;
    border-right: none;
    width: 0;
    animation: typing 4s ease-out forwards;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.name-text {
    color: var(--text-primary);
}

.pink-slash {
    color: var(--accent-pink);
}

.blink-cursor {
    color: var(--text-primary);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-pink);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-pink);
    animation: logoPulse 2s infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-primary);
}

/* View Counter */
.nav-views {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.nav-views:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 46, 99, 0.4);
    box-shadow: 0 0 20px rgba(255, 46, 99, 0.2);
    transform: translateX(-50%) translateY(-2px);
}

.nav-views i {
    color: var(--accent-orange);
    font-size: 1.1rem;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}



/* 1. Grain Texture */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Background Color Blobs */
.background-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    filter: blur(140px);
    opacity: 0.85;
}

.blob {
    position: absolute;
    border-radius: 50%;
}

.blob-1 {
    top: 280px;
    left: 30%;
    width: 350px;
    height: 350px;
    background: #FF2E63;
    transform: translate(-50%, -50%);
}


.blob-3 {
    top: 450px;
    left: 50%;
    width: 360px;
    height: 360px;
    background: #6C1BF9;
    transform: translate(-50%, -50%);
}

.blob-4 {
    top: 290px;
    right: 27%;
    width: 350px;
    height: 350px;
    background: #FF2E63;
    transform: translate(50%, -50%);
}

.blob-mobile {
    display: none;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-pink);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-pink);
    opacity: 0.5;
    transition: 0.2s;
}

/* Cursor Particle Trail */
.cursor-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--accent-pink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    animation: particleFade 0.8s ease-out forwards;
}

@keyframes particleFade {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.3) translateY(20px);
    }
}

/* Bento Container */
.bento-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(180px, auto)) auto;
    gap: var(--gap);
    max-width: 1200px;
    width: 100%;
}

/* Tile Basics */
.bento-tile {
    background: rgba(24, 24, 27, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.bento-tile:hover {
    transform: translateY(-5px) rotateX(2deg) rotateY(-2deg);
    background: rgba(24, 24, 27, 0.65);
    border-color: rgba(255, 46, 99, 0.4);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 46, 99, 0.15);
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

#name-text,
#surname-text {

    opacity: 0;
    /* Initially hidden for glitch reveal */
    transition: opacity 0.1s;
}

h2 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-color);
    position: relative;
    animation: pulseGlow 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 46, 99, 0.4);
}

.btn-primary:hover {
    background: var(--accent-pink);
    color: white;
    animation: none;
    box-shadow: 0 0 30px rgba(255, 46, 99, 0.6);
    transform: translateY(-2px);
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 46, 99, 0.4), 0 0 40px rgba(255, 46, 99, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 46, 99, 0.6), 0 0 60px rgba(255, 46, 99, 0.3);
    }
}



/* === TILE LAYOUTS === */

/* Intro Tile: Rows 1-2, Cols 1-2 */
.tile-intro {
    grid-column: span 2;
    grid-row: span 2;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}


.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 255, 116, 0.05);
    color: #2eff74;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(46, 255, 116, 0.2);
    letter-spacing: 0.5px;
}

.status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #2eff74;
    border-radius: 50%;
    box-shadow: 0 0 10px #2eff74;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(46, 255, 116, 0.4);
    }

    70% {
        opacity: 1;
        box-shadow: 0 0 0 6px rgba(46, 255, 116, 0);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(46, 255, 116, 0);
    }
}

.tile-intro h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.tile-intro h2 {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.tile-intro p {
    max-width: 90%;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #cccccc;
}

.intro-actions {
    display: flex;
    gap: 1rem;
}

/* Tech Stack Tile: Row 1-2, Col 3 */
.tile-stack {
    grid-column: span 1;
    grid-row: span 2;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
    position: relative;
    padding-top: 1.5rem;
}

.tile-stack h3 {
    padding-left: 2rem;
    z-index: 10;
    position: relative;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.marquee-wrapper {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    bottom: 0;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
    animation: scrollVertical 20s linear infinite;
}

@keyframes scrollVertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.stack-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stack-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    color: white;
}

.stack-item i {
    font-size: 1.1rem;
    transition: 0.3s;
}

/* Brand Colors */
.stack-item:has(.fa-html5):hover {
    box-shadow: 0 0 15px rgba(227, 79, 38, 0.2);
    border-color: rgba(227, 79, 38, 0.5);
}

.stack-item:has(.fa-html5) i {
    color: #E34F26;
}

.stack-item:has(.fa-css3-alt):hover {
    box-shadow: 0 0 15px rgba(21, 114, 182, 0.2);
    border-color: rgba(21, 114, 182, 0.5);
}

.stack-item:has(.fa-css3-alt) i {
    color: #1572B6;
}

.stack-item:has(.fa-python):hover {
    box-shadow: 0 0 15px rgba(55, 118, 171, 0.2);
    border-color: rgba(55, 118, 171, 0.5);
}

.stack-item:has(.fa-python) i {
    color: #3776AB;
}

.stack-item:has(.fa-js):hover {
    box-shadow: 0 0 15px rgba(247, 223, 30, 0.2);
    border-color: rgba(247, 223, 30, 0.5);
}

.stack-item:has(.fa-js) i {
    color: #F7DF1E;
}

.stack-item:has(.fa-cuttlefish):hover {
    box-shadow: 0 0 15px rgba(0, 89, 156, 0.2);
    border-color: rgba(0, 89, 156, 0.5);
}

.stack-item:has(.fa-cuttlefish) i {
    color: #00599C;
}

.stack-item:has(.fa-database):hover {
    box-shadow: 0 0 15px rgba(255, 159, 28, 0.2);
    border-color: rgba(255, 159, 28, 0.5);
}

.stack-item:has(.fa-database) i {
    color: #FF9F1C;
}

.stack-item:has(.fa-bolt):hover {
    box-shadow: 0 0 15px rgba(62, 207, 142, 0.2);
    border-color: rgba(62, 207, 142, 0.5);
}

.stack-item:has(.fa-bolt) i {
    color: #3ECF8E;
}

.stack-item:has(.fa-envira):hover {
    box-shadow: 0 0 15px rgba(9, 46, 32, 0.4);
    border-color: rgba(9, 46, 32, 0.6);
}

.stack-item:has(.fa-envira) i {
    color: #092E20;
}

/* Athlete Tile: Row 1-2, Col 4 */
.tile-athlete {
    grid-column: span 1;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.achievement-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-color: rgba(255, 159, 28, 0.3);
}

.icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 159, 28, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.ach-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.ach-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== MY JOURNEY SECTION ===== */
.journey-section {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 2rem;
    padding: 0 0 1rem 0;
    position: relative;
}

.journey-header {
    text-align: center;
    margin-bottom: 3rem;
}

.journey-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.journey-subtitle {
    font-size: 1rem;
    font-style: italic;
    color: var(--accent-orange);
    letter-spacing: 0.5px;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
    padding: 2rem 0;
}

.timeline-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.timeline-path {
    stroke: var(--accent-pink);
    stroke-width: 4;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px rgba(255, 46, 99, 0.6));
    /* dash offset set by js */
}

.timeline-item {
    position: relative;
    display: flex;
    z-index: 2;
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.timeline-item.hidden {
    opacity: 0;
}

.timeline-item.left.hidden {
    transform: translateX(-50px);
}

.timeline-item.right.hidden {
    transform: translateX(50px);
}

.timeline-item:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1;
}

.timeline-item:nth-of-type(2) {
    grid-column: 2;
    grid-row: 2;
}

.timeline-item:nth-of-type(3) {
    grid-column: 1;
    grid-row: 3;
}

.timeline-item.left {
    justify-content: flex-end;
    padding-right: 3rem;
}

.timeline-item.right {
    justify-content: flex-start;
    padding-left: 3rem;
}

@keyframes pop-bounce {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.6);
    }

    100% {
        transform: scale(1);
    }
}

.timeline-circle {
    fill: #18181b;
    stroke: var(--accent-pink);
    stroke-width: 3;
    r: 8;
    transform-origin: center;
    transform-box: fill-box;
    transform: scale(0);
    transition: fill 0.4s ease, stroke 0.4s ease, filter 0.4s ease;
}

.timeline-circle.active {
    fill: var(--accent-pink);
    filter: drop-shadow(0 0 12px #ff2e63);
    animation: pop-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

#line-head {
    fill: var(--accent-pink);
    filter: drop-shadow(0 0 15px #ff2e63);
    r: 6;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform-origin: center;
    transform-box: fill-box;
}

#line-head.active {
    opacity: 1;
}

.timeline-card {
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    height: fit-content;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.timeline-item:hover .timeline-card {
    background: rgba(24, 24, 27, 0.85);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 46, 99, 0.08);
    transform: translateY(-5px);
}

.timeline-years {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent-pink);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.timeline-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0.5rem 0 0.4rem;
    letter-spacing: 1px;
}

.timeline-summary {
    font-size: 0.9rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.timeline-detail {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 1rem;
    flex-grow: 1;
}

/* Social Icons - Left Edge Peek */
.social-peek {
    position: fixed;
    left: -1px;
    width: 50px;
    height: 50px;
    background: rgba(24, 24, 27, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-muted);
    text-decoration: none;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.social-peek:hover {
    left: 0;
    background: rgba(24, 24, 27, 0.95);
    color: white;
    width: 60px;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.5);
}

.social-peek::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 70px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
}

.social-peek:hover::after {
    opacity: 1;
}

/* Brand Colors for Social Icons */
.social-email {
    background: linear-gradient(135deg, #FF2E63, #ff6b9d);
}

.social-email:hover {
    background: linear-gradient(135deg, #ff1a52, #FF2E63);
}

.social-linkedin {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-linkedin:hover {
    background: linear-gradient(135deg, #005582, #0077b5);
}

.social-github {
    background: linear-gradient(135deg, #333, #555);
}

.social-github:hover {
    background: linear-gradient(135deg, #000, #333);
}

.social-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-instagram:hover {
    background: linear-gradient(135deg, #d87d2a, #f09433, #e6683c, #dc2743);
}


html,
body,
a,
button,
.logo,
.nav-links a,
.btn {
    cursor: none !important;
}


.cursor-dot.cursor-click {
    transform: translate(-50%, -50%) scale(.7);
}

.cursor-outline.cursor-click {
    transform: translate(-50%, -50%) scale(1.45);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .nav-views {
        display: none !important;
    }

    /* Bento Container Stacking */
    .bento-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        padding: 0;
        width: 90%;
        max-width: 450px;
        margin: 0 auto 9rem auto;
    }

    .bento-tile {
        grid-column: span 1 !important;
        grid-row: auto !important;
        height: auto !important;
    }

    /* Intro Tile Customizations */
    .tile-intro h1 {
        font-size: 2.8rem;
    }

    /* Tech Stack Tile Customizations (Vertical Marquee containment) */
    .tile-stack {
        height: 530px !important;
    }

    /* Hide the entire My Journey section on mobile */
    .journey-section {
        display: none !important;
    }

    /* Unique Mobile background color blob placed between Tech Stack and Beyond Code */
    .blob-mobile {
        display: block !important;
        position: absolute;
        top: 1270px;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 330px;
        height: 330px;
        background: linear-gradient(135deg, #00f2fe, #007cf0);
        /* Glowing neon cyan to blue */
        border-radius: 50%;
        z-index: 0;
        opacity: 0.95;
    }
}