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

:root {
    --bg: #050505;
    --text: #fafafa;
    --text-muted: #a1a1aa;
    --accent: #818cf8;
    --accent-glow: rgba(129, 140, 248, 0.5);
    --card-bg: #0a0a0a;
    --card-bg-hover: #111111;
    --border: #1f1f1f;
    --border-hover: #2a2a2a;
    --gradient-start: #818cf8;
    --gradient-end: #c084fc;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
}

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

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Magnetic Elements */
.magnetic {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.magnetic-card {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Reveal Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

/* Floating Code Background */
.hero__code {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.hero__code--left {
    left: 2%;
    align-items: flex-start;
}

.hero__code--right {
    right: 2%;
    align-items: flex-end;
}

.hero__code pre {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    line-height: 1.6;
    background: transparent;
    margin: 0;
    animation: float 6s ease-in-out infinite;
}

.hero__code pre:nth-child(2) {
    animation-delay: -2s;
}

.hero__code pre:nth-child(3) {
    animation-delay: -4s;
}

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

.hero__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero__content--centered {
    text-align: center;
    display: flex;
    justify-content: center;
}

.hero__text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

/* Line-by-line animation setup */
.hero__line {
    display: block;
    overflow: hidden;
}

.hero__line-inner {
    display: block;
    transform: translateY(100%);
    opacity: 0;
}

.hero__line--accent .hero__line-inner {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 550px;
    opacity: 0;
    transform: translateY(20px);
}

/* Profile blob above text */
.hero__profile {
    margin-bottom: 2rem;
    opacity: 0;
    transform: scale(0.8);
}

.hero__blob-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-morph 8s ease-in-out infinite;
    box-shadow: 0 0 60px var(--accent-glow),
                0 0 100px rgba(192, 132, 252, 0.2);
}

.hero__profile-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    height: 92%;
    object-fit: cover;
    object-position: center top;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-morph 8s ease-in-out infinite;
}

@keyframes blob-morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    border: none;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(129, 140, 248, 0.3);
    opacity: 1;
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--primary span {
    position: relative;
    z-index: 1;
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(129, 140, 248, 0.05);
    opacity: 1;
}

.hero__social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
}

.hero__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero__social-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(129, 140, 248, 0.2);
    opacity: 1;
}

.hero__social-link svg {
    width: 20px;
    height: 20px;
}

/* Hide floating code on smaller screens */
@media screen and (max-width: 1200px) {
    .hero__code {
        opacity: 0.08;
    }
}

@media screen and (max-width: 900px) {
    .hero__code {
        display: none;
    }
}

/* Sections */
.section {
    padding: 6rem 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section > p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.skill-category {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.skill-category:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(129, 140, 248, 0.1);
}

.skill-category:hover::before {
    opacity: 1;
}

.skill-category h3 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.skill-category p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Experience Section - Stackbyte Carousel Style */
.experience-section {
    max-width: 100%;
    min-height: 100vh;
    padding: 6rem 0 4rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-section .section-title {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.exp-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exp-carousel__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
}

.exp-slide {
    min-width: 100%;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Card container - WIDE card with icon INSIDE */
.exp-slide__card {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 1000px;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(15, 15, 25, 0.95) 0%, rgba(10, 10, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

/* Color variants */
.exp-slide__card--cyan {
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.95) 0%, rgba(8, 18, 28, 0.98) 100%);
    box-shadow: 0 25px 80px -20px rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.15);
}
.exp-slide__card--cyan .exp-slide__badge { background: rgba(56, 189, 248, 0.15); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.3); }
.exp-slide__card--cyan .exp-slide__tech li::before { background: #38bdf8; }
.exp-slide__card--cyan .exp-slide__icon { color: #38bdf8; }
.exp-slide__card--cyan .exp-slide__icon-wrapper { background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%); box-shadow: 0 0 60px rgba(56, 189, 248, 0.2); }

.exp-slide__card--purple {
    background: linear-gradient(135deg, rgba(25, 15, 35, 0.95) 0%, rgba(18, 10, 28, 0.98) 100%);
    box-shadow: 0 25px 80px -20px rgba(192, 132, 252, 0.2);
    border-color: rgba(192, 132, 252, 0.15);
}
.exp-slide__card--purple .exp-slide__badge { background: rgba(192, 132, 252, 0.15); color: #c084fc; border: 1px solid rgba(192, 132, 252, 0.3); }
.exp-slide__card--purple .exp-slide__tech li::before { background: #c084fc; }
.exp-slide__card--purple .exp-slide__icon { color: #c084fc; }
.exp-slide__card--purple .exp-slide__icon-wrapper { background: radial-gradient(circle, rgba(192, 132, 252, 0.15) 0%, transparent 70%); box-shadow: 0 0 60px rgba(192, 132, 252, 0.2); }

.exp-slide__card--green {
    background: linear-gradient(135deg, rgba(15, 30, 25, 0.95) 0%, rgba(10, 22, 18, 0.98) 100%);
    box-shadow: 0 25px 80px -20px rgba(74, 222, 128, 0.2);
    border-color: rgba(74, 222, 128, 0.15);
}
.exp-slide__card--green .exp-slide__badge { background: rgba(74, 222, 128, 0.15); color: #4ade80; border: 1px solid rgba(74, 222, 128, 0.3); }
.exp-slide__card--green .exp-slide__tech li::before { background: #4ade80; }
.exp-slide__card--green .exp-slide__icon { color: #4ade80; }
.exp-slide__card--green .exp-slide__icon-wrapper { background: radial-gradient(circle, rgba(74, 222, 128, 0.15) 0%, transparent 70%); box-shadow: 0 0 60px rgba(74, 222, 128, 0.2); }

.exp-slide__card--orange {
    background: linear-gradient(135deg, rgba(30, 22, 15, 0.95) 0%, rgba(25, 18, 10, 0.98) 100%);
    box-shadow: 0 25px 80px -20px rgba(251, 146, 60, 0.2);
    border-color: rgba(251, 146, 60, 0.15);
}
.exp-slide__card--orange .exp-slide__badge { background: rgba(251, 146, 60, 0.15); color: #fb923c; border: 1px solid rgba(251, 146, 60, 0.3); }
.exp-slide__card--orange .exp-slide__tech li::before { background: #fb923c; }
.exp-slide__card--orange .exp-slide__icon { color: #fb923c; }
.exp-slide__card--orange .exp-slide__icon-wrapper { background: radial-gradient(circle, rgba(251, 146, 60, 0.15) 0%, transparent 70%); box-shadow: 0 0 60px rgba(251, 146, 60, 0.2); }

.exp-slide__card--pink {
    background: linear-gradient(135deg, rgba(30, 15, 25, 0.95) 0%, rgba(25, 10, 22, 0.98) 100%);
    box-shadow: 0 25px 80px -20px rgba(244, 114, 182, 0.2);
    border-color: rgba(244, 114, 182, 0.15);
}
.exp-slide__card--pink .exp-slide__badge { background: rgba(244, 114, 182, 0.15); color: #f472b6; border: 1px solid rgba(244, 114, 182, 0.3); }
.exp-slide__card--pink .exp-slide__tech li::before { background: #f472b6; }
.exp-slide__card--pink .exp-slide__icon { color: #f472b6; }
.exp-slide__card--pink .exp-slide__icon-wrapper { background: radial-gradient(circle, rgba(244, 114, 182, 0.15) 0%, transparent 70%); box-shadow: 0 0 60px rgba(244, 114, 182, 0.2); }

/* Left side - text content */
.exp-slide__left {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Right side - icon with glow INSIDE the card */
.exp-slide__right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.exp-slide__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
}

.exp-slide__icon {
    width: 140px;
    height: 140px;
}

/* Badge */
.exp-slide__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Title */
.exp-slide__title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.25rem;
}

/* Description */
.exp-slide__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* Tech list */
.exp-slide__tech {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem 1.25rem;
    margin-bottom: 1.25rem;
}

.exp-slide__tech li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.exp-slide__tech li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

/* Date */
.exp-slide__date {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

/* Navigation dots */
.exp-carousel__nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem 0;
}

.exp-carousel__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.exp-carousel__dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.exp-carousel__dot.active {
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Ensure side-by-side layout on desktop */
.exp-slide__card {
    flex-direction: row !important;
}

/* Mobile responsive - only stack on small screens */
@media (max-width: 768px) {
    .exp-slide__card {
        flex-direction: column !important;
        min-height: auto;
    }

    .exp-slide__left {
        padding: 2rem;
    }

    .exp-slide__right {
        width: 100%;
        height: 180px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .exp-slide__icon-wrapper {
        width: 120px;
        height: 120px;
    }

    .exp-slide__icon {
        width: 80px;
        height: 80px;
    }

    .exp-slide__title {
        font-size: 2rem;
    }

    .exp-slide__tech {
        grid-template-columns: 1fr;
    }
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.project-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.03) 0%, rgba(192, 132, 252, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(129, 140, 248, 0.1),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.project-card:hover {
    border-color: rgba(129, 140, 248, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(129, 140, 248, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

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

.project-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.project-card:hover h3 {
    color: var(--accent);
}

.project-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* Tech Tags */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    background: rgba(129, 140, 248, 0.1);
    color: var(--accent);
    border-radius: 20px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    transition: all 0.3s ease;
}

.project-card:hover .tech-tags span {
    background: rgba(129, 140, 248, 0.15);
    border-color: rgba(129, 140, 248, 0.3);
}

/* Contact */
.contact-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-links a {
    padding: 0.875rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: var(--card-bg);
}

.contact-links a:hover {
    border-color: var(--accent);
    background: rgba(129, 140, 248, 0.1);
    box-shadow: 0 10px 30px rgba(129, 140, 248, 0.2);
    transform: translateY(-3px);
    opacity: 1;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Mobile */
@media (max-width: 640px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }

    .section {
        padding: 3rem 5%;
    }

    .exp-header {
        flex-direction: column;
    }

    .contact-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .contact-links a {
        text-align: center;
    }
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* Section title styling */
.section-title {
    display: inline-block;
}

/* Visible state for staggered animations */
.project-card,
.skill-category {
    opacity: 0;
    transform: translateY(30px);
}

.project-card.visible,
.skill-category.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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