/* ============================================================
   ADISURYAP.COM — Premium Dark Theme
   Modern, Responsive, Professional Personal Branding
   ============================================================ */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- CSS VARIABLES --- */
:root {
    /* Core Colors */
    --bg-primary:    #0a0a0f;
    --bg-secondary:  #12121a;
    --bg-card:       rgba(255, 255, 255, 0.04);
    --bg-glass:      rgba(255, 255, 255, 0.06);

    /* Text */
    --text-primary:   #f0f0f5;
    --text-secondary: #8b8b9e;
    --text-muted:     #5a5a6e;

    /* Accent Gradient */
    --accent-1: #6c63ff;
    --accent-2: #a855f7;
    --accent-3: #ec4899;
    --gradient-accent: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
    --gradient-subtle: linear-gradient(135deg, rgba(108,99,255,0.15), rgba(168,85,247,0.15));

    /* Glass */
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Social */
    --accent-wa: #25D366;
    --accent-ig: #E1306C;
    --accent-fb: #1877F2;

    /* Spacing */
    --section-gap: 120px;
    --container-max: 1100px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ambient background glow */
body::before {
    content: '';
    position: fixed;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(108,99,255,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* --- CONTAINER --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* --- NAVIGATION BAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-smooth);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s var(--ease-smooth);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gradient-subtle);
    border: 1px solid rgba(108,99,255,0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-1);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s var(--ease-smooth) both;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent-1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-name {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1.5px;
    animation: fadeInUp 0.8s 0.1s var(--ease-smooth) both;
}

.hero-name .gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s 0.2s var(--ease-smooth) both;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s 0.3s var(--ease-smooth) both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.4s var(--ease-smooth) both;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-accent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 4px 20px rgba(108,99,255,0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108,99,255,0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.btn-outline:hover {
    background: var(--bg-glass);
    border-color: var(--accent-1);
    transform: translateY(-2px);
}

/* Hero Photo */
.hero-photo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s 0.3s var(--ease-smooth) both;
}

.photo-frame {
    position: relative;
    width: 380px;
    height: 460px;
}

.photo-frame::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-accent);
    border-radius: var(--radius-xl);
    opacity: 0.5;
    filter: blur(20px);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

.photo-main {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--glass-border);
    z-index: 1;
}

.photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.photo-main:hover img {
    transform: scale(1.05);
}

/* Floating elements around photo */
.float-card {
    position: absolute;
    z-index: 2;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: var(--glass-shadow);
    animation: float 6s ease-in-out infinite;
}

.float-card.card-top {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.float-card.card-bottom {
    bottom: 20px;
    left: -40px;
    animation-delay: 2s;
}

.float-card .card-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.float-card .card-icon.purple { background: rgba(108,99,255,0.2); color: var(--accent-1); }
.float-card .card-icon.pink { background: rgba(236,72,153,0.2); color: var(--accent-3); }

/* --- SECTION COMMON --- */
.section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent-2);
    opacity: 0.4;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- QUOTE SECTION --- */
.quote-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.quote-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.quote-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 8rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
    pointer-events: none;
}

.quote-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.9;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* --- SKILLS SECTION --- */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.skill-item {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all 0.3s var(--ease-smooth);
}

.skill-item:hover {
    border-color: rgba(108,99,255,0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(108,99,255,0.1);
}

.skill-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.skill-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.skill-percent {
    font-size: 0.85rem;
    color: var(--accent-2);
    font-weight: 600;
}

.skill-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 50px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 50px;
    width: 0%;
    transition: width 1.5s var(--ease-smooth);
}

/* --- PROJECTS GRID --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.project-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-subtle);
    opacity: 0;
    transition: opacity 0.4s;
}

.project-card:hover {
    border-color: rgba(108,99,255,0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(108,99,255,0.12);
}

.project-card:hover::before {
    opacity: 1;
}

.project-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-1);
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.project-card:hover .project-icon {
    background: var(--gradient-accent);
    color: #fff;
}

.project-info {
    position: relative;
    z-index: 1;
}

.project-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.project-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.project-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.3s;
    z-index: 1;
}

.project-card:hover .project-arrow {
    color: var(--accent-1);
    transform: translate(4px, -4px);
}

/* --- INSTAGRAM GRID --- */
.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ig-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--bg-glass);
    transition: all 0.4s var(--ease-smooth);
    group: true;
}

.ig-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(225,48,108,0.3);
    box-shadow: 0 16px 40px rgba(225,48,108,0.12);
}

.ig-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: all 0.5s var(--ease-smooth);
    filter: brightness(0.85) saturate(0.9);
}

.ig-card:hover img {
    filter: brightness(1) saturate(1.1);
    transform: scale(1.08);
}

.ig-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.4s;
}

.ig-card:hover .ig-overlay {
    opacity: 1;
}

.ig-caption {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ig-cta {
    text-align: center;
    margin-top: 40px;
}

.ig-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-ig);
    padding: 12px 24px;
    border: 1px solid rgba(225,48,108,0.3);
    border-radius: 50px;
    transition: all 0.3s;
}

.ig-cta a:hover {
    background: rgba(225,48,108,0.1);
    border-color: var(--accent-ig);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(225,48,108,0.15);
}

/* --- SOCIAL BAR --- */
.social-bar {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    background: var(--bg-glass);
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.3s var(--ease-smooth);
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.social-link.wa:hover { background: var(--accent-wa); border-color: var(--accent-wa); color: #fff; }
.social-link.ig:hover { background: var(--accent-ig); border-color: var(--accent-ig); color: #fff; }
.social-link.fb:hover { background: var(--accent-fb); border-color: var(--accent-fb); color: #fff; }

/* --- FOOTER --- */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 48px 0 32px;
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: color 0.3s, transform 0.3s;
}

.footer-socials a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* --- SCROLL TO TOP BUTTON --- */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--ease-smooth);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(108,99,255,0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(108,99,255,0.5);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-smooth);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE: TABLET (768px) --- */
@media (max-width: 768px) {
    :root {
        --section-gap: 80px;
    }

    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    /* Mobile menu */
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--glass-border);
        animation: fadeInUp 0.3s var(--ease-smooth);
        z-index: 999;
    }

    .nav-links.open a {
        font-size: 1.1rem;
        padding: 8px 0;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-photo { order: -1; }

    .photo-frame {
        width: 280px;
        height: 340px;
        margin: 0 auto;
    }

    .float-card.card-top { right: -10px; top: -10px; }
    .float-card.card-bottom { left: -10px; bottom: 10px; }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-bar {
        justify-content: center;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .quote-card {
        padding: 36px 24px;
    }
}

/* --- RESPONSIVE: MOBILE (480px) --- */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-name {
        font-size: 2.2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .btn-primary, .btn-outline {
        padding: 12px 22px;
        font-size: 0.85rem;
    }

    .photo-frame {
        width: 240px;
        height: 300px;
    }

    .float-card {
        font-size: 0.7rem;
        padding: 8px 12px;
    }

    .float-card .card-icon {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .ig-grid {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* --- RESPONSIVE: LARGE DESKTOP (1400px+) --- */
@media (min-width: 1400px) {
    :root {
        --container-max: 1200px;
    }
}

/* --- ACCESSIBILITY --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* Focus visible styles */
:focus-visible {
    outline: 2px solid var(--accent-1);
    outline-offset: 3px;
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.2);
}

/* Selection */
::selection {
    background: rgba(108,99,255,0.3);
    color: #fff;
}