/* ===========================================
   ANIMATIONS & EFFECTS
   Premium Animation Library for Portfolio
   =========================================== */

/* ===== KEYFRAME ANIMATIONS ===== */

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Down */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade In Right */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale In */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Float Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Glow */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px var(--accent-glow);
    }

    50% {
        box-shadow: 0 0 40px var(--accent-glow), 0 0 60px var(--accent-glow);
    }
}

/* Gradient Shift */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Rotate */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Bounce */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

/* Shake */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

/* Typing Cursor */
@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Wave Animation */
@keyframes wave {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(14deg);
    }

    40% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Slide In Bounce */
@keyframes slideInBounce {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    60% {
        opacity: 1;
        transform: translateY(-10px);
    }

    80% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Blob Animation */
@keyframes blob {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

/* Spin Slow */
@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===== HERO SECTION ANIMATIONS ===== */

.hero {
    position: relative;
}

/* Animated Background Gradient */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 40%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Hero Title Animation */
.hero-title {
    animation: fadeInUp 1s ease-out forwards;
    background-size: 200% auto;
    animation: fadeInUp 1s ease-out, gradientShift 3s ease-in-out infinite;
}

/* Hero Subtitle */
.hero-subtitle {
    animation: fadeInDown 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}

/* Hero Description */
.hero-desc {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.4s;
    animation-fill-mode: forwards;
}

/* Typing Effect for Tagline (Optional) */
.hero-tagline {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}

/* ===== SOCIAL BUTTONS ANIMATIONS ===== */

.social-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.social-btn:hover::before {
    width: 200%;
    height: 200%;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.social-btn:hover i {
    transform: scale(1.05);
}

/* Staggered Social Button Animation */
.social-links .social-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.social-links .social-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.social-links .social-btn:nth-child(3) {
    animation-delay: 0.3s;
}

.social-links .social-btn:nth-child(4) {
    animation-delay: 0.4s;
}

/* ===== BUTTON ANIMATIONS ===== */

.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
    opacity: 0.1;
}

.btn-outline:hover::before {
    width: 300%;
    height: 300%;
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

/* ===== CARD ANIMATIONS ===== */

.card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.7s ease;
}

.card:hover::before {
    left: 150%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 0 20px var(--accent-glow);
    border-color: var(--accent-primary);
}

/* Card Icon Animation */
.card:hover i {
    transform: scale(1.05);
}

.card i {
    transition: all 0.3s ease;
}

/* ===== PROJECT CARD ANIMATIONS ===== */

.project-card {
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 25px var(--accent-glow);
}

.project-card:hover .video-container {
    transform: scale(1.01);
}

.video-container {
    transition: transform 0.4s ease;
}

/* Project Tags Animation */
.project-tag,
.feature-tag {
    transition: all 0.3s ease;
}

.project-tag:hover,
.feature-tag:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

/* ===== CERTIFICATION CARD ANIMATIONS ===== */

.cert-card {
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cert-card:hover .cert-icon {
    transform: scale(1.05);
}

.cert-icon {
    transition: all 0.3s ease;
}

/* ===== TIMELINE ANIMATIONS ===== */

.timeline-item {
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(5px);
}

.timeline-dot {
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.15);
    box-shadow: 0 0 15px var(--accent-primary);
}

/* ===== PROFILE IMAGE ANIMATIONS ===== */

.profile-img-container {
    position: relative;
}

.profile-img-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.profile-img-container:hover::before {
    opacity: 0.5;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
}

.profile-img {
    transition: all 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* ===== SECTION DIVIDER ANIMATIONS ===== */

.section-divider {
    position: relative;
    overflow: hidden;
    background-size: 200% auto;
    animation: gradientShift 3s ease-in-out infinite;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 2s infinite;
}

/* ===== HEADING ANIMATIONS ===== */

.heading-2 {
    position: relative;
    display: inline-block;
}

.heading-2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-gradient);
    transition: width 0.5s ease;
}

.section:hover .heading-2::after {
    width: 100%;
}

/* ===== NAV LINK ANIMATIONS ===== */

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::before {
    transform: translateX(-50%) scale(1);
}

.nav-link:hover {
    color: var(--accent-primary);
    transform: translateY(-2px);
}

/* ===== LOGO ANIMATION ===== */

.logo {
    transition: all 0.3s ease;
    animation: gradientShift 4s ease-in-out infinite;
    background-size: 200% auto;
}

.logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

/* ===== CHATBOT ANIMATIONS ===== */

.chatbot-toggle {
    transition: all 0.3s ease;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.chatbot-toggle i {
    transition: transform 0.3s ease;
}

.chatbot-toggle:hover i {
    transform: scale(1.05);
}

/* ===== MODAL ANIMATIONS ===== */

.modal {
    transition: opacity 0.3s ease;
}

.modal-content {
    animation: scaleIn 0.3s ease-out;
}

/* ===== INPUT ANIMATIONS ===== */

input,
textarea,
select {
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ===== LINK HOVER EFFECTS ===== */

.project-link,
.cert-link {
    position: relative;
    transition: all 0.3s ease;
}

.project-link::after,
.cert-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.project-link:hover::after,
.cert-link:hover::after {
    width: 100%;
}

.project-link:hover,
.cert-link:hover {
    transform: translateX(5px);
}

/* ===== FLOATING DECORATION ELEMENTS ===== */

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--accent-gradient);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* ===== SCROLL INDICATOR ===== */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

/* ===== LOADING ANIMATIONS ===== */

.loading-spinner {
    animation: rotate 1s linear infinite;
}

/* ===== STAGGER ANIMATIONS FOR LISTS ===== */

.card-grid>*:nth-child(1) {
    animation-delay: 0.1s;
}

.card-grid>*:nth-child(2) {
    animation-delay: 0.2s;
}

.card-grid>*:nth-child(3) {
    animation-delay: 0.3s;
}

.card-grid>*:nth-child(4) {
    animation-delay: 0.4s;
}

.card-grid>*:nth-child(5) {
    animation-delay: 0.5s;
}

.card-grid>*:nth-child(6) {
    animation-delay: 0.6s;
}

/* ===== SMOOTH SCROLL BEHAVIOR ===== */

html {
    scroll-behavior: smooth;
}

/* ===== REDUCED MOTION PREFERENCE ===== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== GLASSMORPHISM ENHANCEMENT ===== */

.card,
.cert-card,
.project-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ===== GLOW EFFECT ON HOVER FOR SECTIONS ===== */

.section {
    position: relative;
    overflow: hidden;
}

/* Purple atmospheric background for all sections */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Alternate section purple glow */
.section:nth-child(even)::before {
    background:
        radial-gradient(ellipse at 80% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
}

/* Ensure content is above background */
.section>.container {
    position: relative;
    z-index: 1;
}

#live-tools .card:hover,
#projects .project-card:hover {
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 0 30px var(--accent-glow);
}

/* ===== ICON HOVER EFFECTS ===== */

.card i,
.cert-icon,
.social-btn i {
    transition: all 0.3s ease;
}

.card:hover>i:first-of-type {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

/* ===== FOOTER ANIMATION ===== */

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    transform: translateY(-3px);
    color: var(--accent-primary);
}

/* ===== SMOOTH PAGE TRANSITIONS ===== */

body {
    animation: fadeInUp 0.5s ease-out;
    position: relative;
}

/* Global purple ambient background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(139, 92, 246, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* ===== CURSOR GLOW EFFECT (Optional) ===== */

.cursor-glow {
    position: fixed;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ===== SECTION VISIBILITY ANIMATIONS ===== */

.section-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PARALLAX SCROLL EFFECTS ===== */

.parallax-bg {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* ===== TEXT GRADIENT ANIMATION ===== */

.text-gradient-animated {
    background: linear-gradient(270deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

/* ===== RIPPLE EFFECT ON CLICK ===== */

.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}

.ripple:active::after {
    width: 300%;
    height: 300%;
    opacity: 1;
}

/* ===== SKELETON LOADING ===== */

.skeleton {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-secondary) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

/* ===== TOOLTIP ANIMATIONS ===== */

.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    font-size: var(--font-xs);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.tooltip:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* ===== BADGE PULSE ===== */

.badge-pulse {
    position: relative;
}

.badge-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

/* ===== NUMBER COUNTER ANIMATION ===== */

.counter-animate {
    display: inline-block;
    transition: all 0.3s ease;
}

.counter-animate:hover {
    transform: scale(1.1);
    color: var(--accent-primary);
}

/* ===== IMAGE REVEAL ANIMATION ===== */

.img-reveal {
    position: relative;
    overflow: hidden;
}

.img-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transform-origin: left;
    animation: reveal 1s ease-out forwards;
}

@keyframes reveal {
    0% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

/* ===== MAGNETIC BUTTON EFFECT ===== */

.magnetic-hover {
    transition: transform 0.3s ease;
}

/* ===== SPRING ANIMATION ===== */

@keyframes spring {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.spring-effect:hover {
    animation: spring 0.5s ease;
}

/* ===== 3D CARD TILT PREPARATION ===== */

.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tilt-card:hover {
    transform: rotateX(5deg) rotateY(5deg);
}

/* ===== GLOW BORDER ANIMATION ===== */

.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--accent-gradient);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(10px);
}

.glow-border:hover::before {
    opacity: 1;
}

/* ===== TYPEWRITER EFFECT ===== */

.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--accent-primary);
    white-space: nowrap;
    animation:
        typing 3.5s steps(40, end),
        blink 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* ===== MORPHING BACKGROUND ===== */

.morph-bg {
    position: relative;
    overflow: hidden;
}

.morph-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 40%);
    animation: morph 8s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes morph {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20%, 20%) rotate(90deg);
    }

    50% {
        transform: translate(0, 40%) rotate(180deg);
    }

    75% {
        transform: translate(-20%, 20%) rotate(270deg);
    }
}

/* ===== FOCUS STATE ENHANCEMENTS ===== */

*:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* ===== TRANSITION SMOOTHNESS GLOBAL ===== */

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}