:root {
    --bg-color: #0f0f11;
    --card-bg: #18181b;
    --card-hover: #27272a;
    --text-primary: #ffffff;
    --text-muted: #c4c4cc;
    --accent-pink: #FF2E63;
    --accent-orange: #FF9F1C;
    --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: fixed;
    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 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 15s 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);
    }
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-pink);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-contact {
    background: var(--accent-pink);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 46, 99, 0.3);
}

.nav-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 46, 99, 0.4);
}

.nav-contact::after {
    display: none !important;
}

/* Mobile Nav Toggle (Hidden for now, can be implemented if needed) */

/* 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");
}

/* 2. Particle Canvas (Fluid Blur) */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    filter: blur(50px);
    opacity: 0.6;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    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(4, minmax(180px, auto));
    gap: var(--gap);
    max-width: 1200px;
    width: 100%;
}

/* Tile Basics */
.bento-tile {
    background: var(--card-bg);
    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: 1px solid rgba(255, 255, 255, 0.05);
    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: var(--card-hover);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 46, 99, 0.1);
}

/* 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);
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    margin-left: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-2px);
}

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

/* Intro Tile: Rows 1-2, Cols 1-2 */
.tile-intro {
    grid-column: span 2;
    grid-row: span 2;
    background: rgba(24, 24, 27, 0.4);
    /*linear-gradient(135deg, rgba(255, 159, 28, 0.1), rgba(255, 46, 99, 0.05));*/
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    transition: all 0.4s ease;
}

.tile-intro:hover {
    background: rgba(24, 24, 27, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 46, 99, 0.2), 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px) scale(1.01);
}


.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;
    background: radial-gradient(circle at top left, #1f1f24, #0a0a0c);
}

.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;
    background: radial-gradient(circle at top left, #1f1f24, #0a0a0c);
    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;
}

/* Experience Tile: Row 3-4, Col 1 (1×2 - Double Height) */
.tile-exp {
    grid-column: span 1;
    grid-row: span 2;
    background: radial-gradient(circle at top left, #1f1f24, #0a0a0c);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Quote Tile: Row 4, Cols 2-4 */
.tile-quote {
    grid-column: span 3;
    grid-row: span 1;
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.1), rgba(255, 46, 99, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    transition: all 0.4s ease;
}

.tile-quote:hover {
    background: rgba(24, 24, 27, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 46, 99, 0.2), 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px) scale(1.01);
}

.tile-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.tile-quote cite {
    font-size: 0.9rem;
    color: var(--accent-pink);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-style: normal;
}

.journey-tagline {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--accent-orange);
    margin-top: -1rem;
    margin-bottom: 0.5rem;
}

.journey-phases {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.phase-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.phase-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 159, 28, 0.4);
    transform: translateX(3px);
}

.phase-current {
    border-color: rgba(255, 159, 28, 0.3);
    background: rgba(255, 159, 28, 0.05);
    box-shadow: 0 0 15px rgba(255, 159, 28, 0.1);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.phase-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.phase-info h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 0.5px;
}

.phase-years {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: monospace;
}

.phase-summary {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    padding-left: 2.25rem;
}

.phase-tooltip {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
    padding-left: 2.25rem;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #e0e0e0;
}

.phase-card:hover .phase-tooltip {
    max-height: 200px;
    margin-top: 0.75rem;
}

.phase-tooltip strong {
    color: var(--accent-orange);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
}

/* Featured Projects Gallery: Row 3, Cols 2-4 (3×1) */
.tile-gallery {
    grid-column: span 3;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.tile-gallery:hover {
    transform: translateY(-5px);
    background: rgba(15, 15, 20, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 46, 99, 0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    height: 100%;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 46, 99, 0.3);
}

.project-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

.project-info {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.project-info p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.project-tag {
    font-size: 0.75rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    cursor: help;
}

.project-tag::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    border: 1px solid rgba(255, 159, 28, 0.3);
    letter-spacing: 0;
    text-transform: none;
}

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

.project-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.project-links a {
    font-size: 0.85rem;
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
}

.project-links a:hover {
    text-decoration: underline;
}

/* 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);
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .tile-intro {
        grid-column: span 2;
    }

    .tile-stack {
        grid-column: span 1;
        grid-row: span 1;
    }

    .tile-athlete {
        grid-column: span 1;
        grid-row: span 2;
    }

    .tile-exp {
        grid-column: span 2;
    }

    .tile-gallery {
        grid-column: span 2;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    body {
        padding: 6rem 1rem 1rem 1rem;
        display: block;
    }

    .glass-header {
        height: 60px;
        top: 10px;
        width: 95%;
    }

    .header-content {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a:not(.nav-contact) {
        display: none;
    }

    .bento-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }
}

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