.cube-identity-container {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.subtitle-container {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 5;
}

.hero-subtitle-cube {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(0, 255, 209, 0.3);
}

/* Responsive adjustments for cube in hero */
@media (max-width: 768px) {
    .cube-identity-container {
        margin: 30px 0;
    }

    .hero-subtitle-cube {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .cube-identity-container {
        margin: 20px 0;
    }

    .hero-subtitle-cube {
        font-size: 0.9rem;
        padding: 0 20px;
    }
}

/* CSS Variables - Cyberpunk Theme */
:root {
    /* Core Colors */
    --bg-primary: #000000;
    --bg-secondary: #121212;
    --bg-overlay: rgba(255, 255, 255, 0.1);

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: #4D4D4D;

    /* Brand Colors */
    --brand-primary: #00FFD1;
    --brand-hover: rgba(0, 255, 209, 0.1);
    --brand-active: #6FD2C0;
    --accent: #00D4FF;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.25);
    --border-medium: rgba(255, 255, 255, 0.4);

    /* Shadows */
    --glow-primary: 0 0 20px rgba(0, 255, 209, 0.3);
    --glow-secondary: 0 0 15px rgba(0, 212, 255, 0.2);

    /* Animation Timings */
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.4s ease-in-out;
    --transition-slow: 0.6s ease-in-out;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'KodeMono', 'Inter', system-ui, -apple-system, sans-serif;
    background: #000000;
    background: var(--bg-primary);
    color: #FFFFFF;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.App {
    position: relative;
    min-height: 100vh;
}

/* ==============================================
   CURSOR TRAIL EFFECTS
   ============================================== */
.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #00FFD1;
    background: var(--brand-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: cursorFade 1s ease-out forwards;
    box-shadow: 0 0 10px #00FFD1;
    box-shadow: 0 0 10px var(--brand-primary);
}

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

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

/* ==============================================
   LOADING SCREEN
   ============================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loading-container {
    text-align: center;
    max-width: 400px;
}

.loading-logo {
    margin-bottom: 40px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8px;
    gap: 8px;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.logo-cell {
    background: #00FFD1;
    background: var(--brand-primary);
    border-radius: 2px;
    animation: logoAnimate 2s ease-in-out infinite;
    animation-delay: var(--delay);
}

.loading-text {
    margin-bottom: 30px;
}

.loading-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.loading-bar {
    width: 100%;
    height: 2px;
    background: #121212;
    background: var(--bg-secondary);
    border-radius: 1px;
    overflow: hidden;
}

.loading-progress {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00FFD1, #00D4FF);
    background: linear-gradient(90deg, var(--brand-primary), var(--accent));
    animation: loadingProgress 2s ease-in-out infinite;
}

.loading-status {
    text-align: left;
}

.status-lines {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #4D4D4D;
    color: var(--text-muted);
}

.status-line {
    margin-bottom: 5px;
    animation: typewriter 0.5s ease-out;
    animation-fill-mode: both;
    opacity: 0;
    transform: translateX(-10px);
}

.status-line.visible {
    opacity: 1;
    transform: translateX(0);
    animation: slideIn 0.3s ease-out;
}

.status-line:nth-child(1) {
    animation-delay: 0.5s;
}

.status-line:nth-child(2) {
    animation-delay: 1s;
}

.status-line:nth-child(3) {
    animation-delay: 1.5s;
}

.status-line:nth-child(4) {
    animation-delay: 2s;
    color: #00FFD1;
    color: var(--brand-primary);
}

/* ==============================================
   FLOATING HOLOGRAPHIC NAVIGATION DOCK
   ============================================== */
.holo-dock {
    position: fixed;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    z-index: 9999;
    pointer-events: none;
    overflow: visible;
}

.dock-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border-radius: 50px;
    box-shadow:
        0 8px 32px rgba(0, 255, 255, 0.1),
        0 4px 16px rgba(255, 0, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    border: none !important;
    outline: none !important;
    box-sizing: border-box;
}

.dock-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
            rgba(0, 255, 255, 0.3),
            rgba(255, 0, 255, 0.3),
            rgba(0, 255, 255, 0.3));
    border-radius: 52px;
    z-index: -1;
    opacity: 0;
    animation: hologram-border 3s ease-in-out infinite;
}

/* Central AI Orb Logo */
.ai-orb-logo {
    position: relative;
    width: 60px;
    height: 60px;
    cursor: pointer;
    margin: 0 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: none;
    border: none;
    padding: 0;
    outline: none;
    border-radius: 50%;
    animation: quantum-pulse 3s ease-in-out infinite;
}

.ai-orb-logo:hover {
    transform: scale(1.1) translateY(-2px);
}

.orb-core {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
            rgba(0, 255, 255, 0.4),
            rgba(255, 0, 255, 0.2),
            rgba(0, 20, 40, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: none;
}

.neural-ring {
    position: absolute;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: neural-pulse 2s ease-in-out infinite;
}

.ring-1 {
    width: 90%;
    height: 90%;
    animation-delay: 0s;
}

.ring-2 {
    width: 70%;
    height: 70%;
    animation-delay: 0.5s;
    border-color: rgba(255, 0, 255, 0.3);
}

.ring-3 {
    width: 50%;
    height: 50%;
    animation-delay: 1s;
}

.ai-center {
    position: relative;
    z-index: 2;
    color: #00FFD1;
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 12px;
    text-shadow: 0 0 10px currentColor;
    letter-spacing: 0.5px;
}

.orb-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle,
            rgba(0, 255, 255, 0.2) 0%,
            transparent 70%);
    border-radius: 50%;
    animation: orb-breathe 3s ease-in-out infinite;
    pointer-events: none;
}

/* Navigation Orbit - Left-side semi-circular layout */
.nav-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    /* Half width for left semi-circle */
    height: 300px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    overflow: visible;
}

.nav-orbit.expanded {
    opacity: 1;
    pointer-events: auto;
    width: 250px;
    /* Adjusted width for left semi-circle */
    height: 450px;
}

.orbit-item {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 20, 40, 0.9);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    z-index: 15;
    visibility: visible;
}

/* Left-Side Semi-Circular Orbital positioning - 5 items in left arc */
.orbit-item:nth-child(1) {
    /* Home - Top of left arc */
    top: -20%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition-delay: 0.1s;
    border-color: rgba(255, 165, 0, 0.6);
    /* Orange for Home */
}

.orbit-item:nth-child(2) {
    /* About - Top Left quadrant */
    top: 5%;
    left: 15%;
    transform: translate(-50%, -50%);
    transition-delay: 0.2s;
    border-color: rgba(0, 255, 255, 0.6);
    /* Cyan for About */
}

.orbit-item:nth-child(3) {
    /* Projects - Center Left */
    top: 50%;
    left: -20%;
    transform: translate(-50%, -50%);
    transition-delay: 0.3s;
    border-color: rgba(255, 255, 0, 0.6);
    /* Yellow for Projects */
}

.orbit-item:nth-child(4) {
    /* Skills - Bottom Left quadrant */
    bottom: 5%;
    left: 15%;
    transform: translate(-50%, 50%);
    transition-delay: 0.4s;
    border-color: rgba(255, 0, 255, 0.6);
    /* Magenta for Skills */
}

.orbit-item:nth-child(5) {
    /* Contact - Bottom of left arc */
    bottom: -20%;
    left: 50%;
    transform: translate(-50%, 50%);
    transition-delay: 0.5s;
    border-color: rgba(0, 255, 127, 0.6);
    /* Spring Green for Contact */
}

/* Enhanced hover states for left-side semi-circle */
.orbit-item:nth-child(1):hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(255, 165, 0, 0.25);
    border-color: rgba(255, 165, 0, 0.9);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4), 0 0 40px rgba(255, 165, 0, 0.3);
}

.orbit-item:nth-child(2):hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(0, 255, 255, 0.25);
    border-color: rgba(0, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4), 0 0 40px rgba(0, 255, 255, 0.3);
}

.orbit-item:nth-child(3):hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(255, 255, 0, 0.25);
    border-color: rgba(255, 255, 0, 0.9);
    box-shadow: 0 8px 25px rgba(255, 255, 0, 0.4), 0 0 40px rgba(255, 255, 0, 0.3);
}

.orbit-item:nth-child(4):hover {
    transform: translate(-50%, 50%) scale(1.15);
    background: rgba(255, 0, 255, 0.25);
    border-color: rgba(255, 0, 255, 0.9);
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.4), 0 0 40px rgba(255, 0, 255, 0.3);
}

.orbit-item:nth-child(5):hover {
    transform: translate(-50%, 50%) scale(1.15);
    background: rgba(0, 255, 127, 0.25);
    border-color: rgba(0, 255, 127, 0.9);
    box-shadow: 0 8px 25px rgba(0, 255, 127, 0.4), 0 0 40px rgba(0, 255, 127, 0.3);
}

/* Left-side semi-circular arc guide */
.nav-orbit.expanded::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 300px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-right: none;
    border-radius: 150px 0 0 150px;
    transform: translate(-50%, -50%);
    animation: arc-pulse 3s ease-in-out infinite;
}

@keyframes arc-pulse {

    0%,
    100% {
        opacity: 0.3;
        border-color: rgba(0, 255, 255, 0.2);
    }

    50% {
        opacity: 0.6;
        border-color: rgba(0, 255, 255, 0.4);
    }
}

/* Orbital connection lines */
.nav-orbit.expanded .orbit-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 80px;
    background: linear-gradient(to center,
            transparent,
            rgba(0, 255, 255, 0.6),
            rgba(255, 0, 255, 0.4),
            rgba(0, 255, 255, 0.6),
            transparent);
    transform-origin: bottom;
    opacity: 0.7;
    animation: quantum-connection 2s ease-in-out infinite;
    border-radius: 1px;
}

.orbit-item:hover {
    transform: scale(1.2) translateY(-5px);
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.8);
    box-shadow:
        0 5px 20px rgba(0, 255, 255, 0.3),
        0 0 30px rgba(0, 255, 255, 0.2);
}

.orbit-item::before {
    content: attr(data-label);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #00FFD1;
    color: var(--brand-primary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.orbit-item:hover::before {
    opacity: 1;
}

.orbit-icon {
    font-size: 20px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
}

.orbit-trail {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom,
            rgba(0, 255, 255, 0.6),
            transparent);
    transform: translate(-50%, -100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.orbit-item:hover .orbit-trail {
    opacity: 1;
    animation: trail-flow 0.6s ease-out;
}



/* Smart Dock Minimized State */
.holo-dock.minimized {
    top: 50%;
    right: 20px;
    transform: translateY(-50%) scale(0.7);
    opacity: 0.9;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

.holo-dock.minimized .dock-container {
    padding: 8px 15px;
    border-radius: 30px;
}

.holo-dock.minimized .ai-orb-logo {
    width: 45px;
    height: 45px;
    margin: 0 10px;
    cursor: pointer;
    pointer-events: auto;
}



.holo-dock.minimized .nav-orbit {
    width: 160px;
    height: 280px;
}

.holo-dock.minimized .nav-orbit.expanded {
    width: 220px;
    height: 380px;
}

/* Ensure orbital items work in minimized state */
.holo-dock.minimized .orbit-item {
    width: 45px;
    height: 45px;
}

.holo-dock.minimized .orbit-icon {
    font-size: 18px;
}

/* Hover effect on minimized dock */
.holo-dock.minimized:hover {
    transform: translateY(-50%) scale(0.85);
    opacity: 1;
}



/* Animations */
@keyframes hologram-border {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes neural-pulse {

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

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

@keyframes orb-breathe {

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

    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

@keyframes quantum-pulse {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(0, 255, 255, 0.3),
            0 0 40px rgba(255, 0, 255, 0.2),
            0 0 60px rgba(0, 255, 255, 0.1);
    }

    50% {
        box-shadow:
            0 0 30px rgba(0, 255, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            0 0 90px rgba(0, 255, 255, 0.2);
    }
}



@keyframes trail-flow {
    0% {
        transform: translate(-50%, -100%) scaleY(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -100%) scaleY(1);
        opacity: 0;
    }
}

@keyframes orbital-center {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 1);
        transform: translate(-50%, -50%) scale(1.5);
    }
}

@keyframes connection-pulse {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes quantum-connection {

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

    25% {
        opacity: 0.8;
        transform: scaleY(1.1);
    }

    50% {
        opacity: 0.6;
        transform: scaleY(0.9);
    }

    75% {
        opacity: 0.9;
        transform: scaleY(1.05);
    }
}

/* Holographic shimmer effect */
@keyframes holo-shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Dock entrance animation */
@keyframes dock-entrance {
    0% {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Apply cinematic boot-up animation */
.holo-dock {
    animation: ai-system-bootup 2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

/* AI System Boot-up sequence */
@keyframes ai-system-bootup {
    0% {
        transform: translateY(-50px);
        opacity: 0;
        filter: blur(10px);
    }

    30% {
        transform: translateY(-20px);
        opacity: 0.3;
        filter: blur(5px);
    }

    60% {
        transform: translateY(0);
        opacity: 0.7;
        filter: blur(2px);
    }

    80% {
        opacity: 0.9;
        filter: blur(0);
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}

/* Idle orbital rotation when not expanded */
.nav-orbit:not(.expanded) {
    animation: idle-orbital-rotation 20s linear infinite;
}

@keyframes idle-orbital-rotation {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Enhanced orb click animation */
.ai-orb-logo:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.ai-orb-logo:active .orb-core {
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.8),
        inset 0 0 20px rgba(255, 0, 255, 0.3);
}

/* Ensure all orbital items are visible */
.nav-orbit.expanded .orbit-item {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Expanded state enhancements */
.nav-orbit.expanded {
    animation: orbit-expand 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes orbit-expand {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
    }

    100% {
        transform: translate(-50%, -50%) scale(1) rotate(360deg);
        opacity: 1;
    }
}

/* Individual orbit item entrance */
.nav-orbit.expanded .orbit-item {
    animation: orbit-item-entrance 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: scale(0);
}

.nav-orbit.expanded .orbit-item:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-orbit.expanded .orbit-item:nth-child(2) {
    animation-delay: 0.15s;
}

.nav-orbit.expanded .orbit-item:nth-child(3) {
    animation-delay: 0.2s;
}

.nav-orbit.expanded .orbit-item:nth-child(4) {
    animation-delay: 0.25s;
}

.nav-orbit.expanded .orbit-item:nth-child(5) {
    animation-delay: 0.3s;
}

@keyframes orbit-item-entrance {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }

    70% {
        transform: scale(1.1) rotate(10deg);
    }

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

/* ==============================================
   RESPONSIVE DESIGN
   ============================================== */
@media (max-width: 768px) {
    .holo-dock {
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    .holo-dock.minimized {
        top: 50%;
        right: 15px;
        transform: translateY(-50%) scale(0.6);
    }

    .dock-container {
        padding: 12px 20px;
        border-radius: 40px;
    }

    .ai-orb-logo {
        width: 50px;
        height: 50px;
        margin: 0 15px;
    }

    .ai-center {
        font-size: 14px;
    }

    .ai-status {
        position: absolute;
        right: -100px;
        top: -40px;
        padding: 6px 10px;
        border-radius: 15px;
    }

    .status-text {
        font-size: 10px;
    }

    /* Smaller left-side semi-circular orbital menu for mobile */
    .nav-orbit.expanded {
        width: 180px;
        height: 320px;
    }

    .orbit-item {
        width: 40px;
        height: 40px;
    }

    .orbit-icon {
        font-size: 18px;
    }

    /* Left-side semi-circular positions for mobile - maintaining 5 items in left arc */
    .orbit-item:nth-child(1) {
        top: -15%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .orbit-item:nth-child(2) {
        top: 10%;
        left: 20%;
        transform: translate(-50%, -50%);
    }

    .orbit-item:nth-child(3) {
        top: 50%;
        left: -15%;
        transform: translate(-50%, -50%);
    }

    .orbit-item:nth-child(4) {
        bottom: 10%;
        left: 20%;
        transform: translate(-50%, 50%);
    }

    .orbit-item:nth-child(5) {
        bottom: -15%;
        left: 50%;
        transform: translate(-50%, 50%);
    }
}

@media (max-width: 480px) {
    .holo-dock {
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
    }

    .holo-dock.minimized {
        top: 50%;
        right: 10px;
        transform: translateY(-50%) scale(0.55);
    }

    .dock-container {
        padding: 10px 15px;
    }

    .ai-orb-logo {
        width: 45px;
        height: 45px;
        margin: 0 10px;
    }

    .ai-status {
        display: none;
        /* Hide status on very small screens */
    }

    .nav-orbit.expanded {
        width: 180px;
        height: 180px;
    }

    .orbit-item {
        width: 35px;
        height: 35px;
    }

    .orbit-icon {
        font-size: 16px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .orb-core,
    .orbit-item {
        border-width: 1px;
    }

    .neural-ring {
        border-width: 0.5px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .dock-container {
        background: rgba(0, 5, 15, 0.2);
        border-color: rgba(0, 255, 255, 0.3);
    }

    .orb-core {
        background: radial-gradient(circle at 30% 30%,
                rgba(0, 255, 255, 0.5),
                rgba(255, 0, 255, 0.3),
                rgba(0, 10, 25, 0.9));
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

    .neural-ring,
    .orb-glow,
    .status-pulse,
    .dock-container::before {
        animation: none;
    }

    .orbit-item,
    .ai-orb-logo {
        transition: transform 0.2s ease;
    }

    .nav-orbit {
        transition: opacity 0.3s ease;
    }
}

/* ==============================================
   MAIN CONTENT
   ============================================== */
.portfolio-container {
    position: relative;
    background: #000000;
    background: var(--bg-primary);
}

.main-content {
    padding-top: 80px;
}

/* ==============================================
   HERO SECTION
   ============================================== */
.hero-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

/* Holographic Grid Background */
.holographic-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 209, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 209, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridShift 20s linear infinite;
    z-index: 1;
}

/* Large Cube Container */
.large-cube-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 7.6923%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    max-width: 600px;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #4D4D4D;
    color: var(--text-muted);
}

.terminal-icon {
    width: 16px;
    height: 16px;
    color: #00FFD1;
    color: var(--brand-primary);
}

.terminal-path {
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
}

.name-container {
    margin-bottom: 20px;
}

.hero-name {
    font-size: 66px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.62px;
    color: #FFFFFF;
    color: var(--text-primary);
    margin: 0;
    text-shadow: 0 0 30px rgba(0, 255, 209, 0.3);
}

.typing-text {
    color: #FFFFFF;
    color: var(--text-primary);
}

.cursor {
    color: #00FFD1;
    color: var(--brand-primary);
    animation: blink 1s infinite;
    font-weight: 300;
}

.cursor-blink {
    color: #00FFD1;
    color: var(--brand-primary);
    animation: blink 1s infinite;
}

.role-container {
    margin-bottom: 20px;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 209, 0.1);
    border: 1px solid #00FFD1;
    border: 1px solid var(--brand-primary);
    border-radius: 0;
    padding: 8px 16px;
    font-size: 14px;
    color: #00FFD1;
    color: var(--brand-primary);
    margin-bottom: 15px;
}

.role-icon {
    width: 16px;
    height: 16px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    margin: 0;
}

.hero-tagline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    margin: 30px 0 40px 0;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 24px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: 0.4s ease-in-out;
    transition: var(--transition-normal);
    min-height: 56px;
    text-decoration: none;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #00FFD1;
    background: var(--brand-primary);
    color: #000000;
}

.btn-primary:hover {
    background: rgba(0, 255, 209, 0.1);
    background: var(--brand-hover);
    color: #00FFD1;
    color: var(--brand-primary);
    box-shadow: 0 0 20px rgba(0, 255, 209, 0.3);
    box-shadow: var(--glow-primary);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.robotic-hover {
    position: relative;
    overflow: hidden;
}

.robotic-hover::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.6s ease;
}

.robotic-hover:hover::before {
    left: 100%;
}

.status-indicators {
    display: flex;
    gap: 30px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-dot.online {
    background: #00FF88;
    box-shadow: 0 0 10px #00FF88;
}

.status-dot.active {
    background: #00FFD1;
    background: var(--brand-primary);
    box-shadow: 0 0 10px #00FFD1;
    box-shadow: 0 0 10px var(--brand-primary);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-cube {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #00FFD1;
    border: 1px solid var(--brand-primary);
    background: rgba(0, 255, 209, 0.1);
    animation: float 6s ease-in-out infinite;
}

.cube-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cube-2 {
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.cube-3 {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

/* Scanning Line Effect */
.scanning-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #00FFD1, transparent);
    background: linear-gradient(to bottom, transparent, var(--brand-primary), transparent);
    animation: scanMove 3s linear;
    z-index: 4;
}

/* ==============================================
    PROJECTS SECTION
    ============================================== */

/* Internship-specific styles */
.internship-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(0, 255, 209, 0.05);
    border-radius: 0;
    border: 1px solid rgba(0, 255, 209, 0.2);
}

.projects-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 20px;
    background: rgba(0, 255, 209, 0.05);
    border-radius: 0;
    border: 1px solid rgba(0, 255, 209, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.projects-toggle-header:hover {
    background: rgba(0, 255, 209, 0.08);
    border-color: #00FFD1;
    border-color: var(--brand-primary);
}

.toggle-icon {
    color: #00FFD1;
    color: var(--brand-primary);
    transition: transform 0.3s ease;
}

.projects-expanded-content {
    animation: expandContent 0.3s ease-out;
}

@keyframes expandContent {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-item-expanded {
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(0, 255, 209, 0.03);
    border: 1px solid rgba(0, 255, 209, 0.15);
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-item-expanded::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 209, 0.05), transparent);
    transition: left 0.6s ease;
}

.project-item-expanded:hover::before {
    left: 100%;
}

.project-item-expanded:hover {
    background: rgba(0, 255, 209, 0.08);
    border-color: #00FFD1;
    border-color: var(--brand-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 209, 0.15);
}

.project-details {
    width: 100%;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 15px;
}

.project-title-expanded {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    color: var(--text-primary);
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 255, 209, 0.3);
    line-height: 1.3;
    transition: all 0.3s ease;
}

.project-title-expanded.clickable:hover {
    color: #00D4FF;
    color: var(--accent);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    transform: translateX(5px);
}

.project-status-badge {
    background: linear-gradient(135deg, #00FFD1, #00D4FF);
    background: linear-gradient(135deg, var(--brand-primary), var(--accent));
    color: #ffffff;
    font-weight: 600;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 0 15px rgba(0, 255, 209, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.project-description-expanded {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.9;
}

.project-technologies-expanded {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.tech-tag-expanded {
    background: rgba(0, 255, 209, 0.1);
    border: 1px solid #00FFD1;
    border: 1px solid var(--brand-primary);
    color: #00FFD1;
    color: var(--brand-primary);
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 0;
    animation: tagSlideIn 0.5s ease-out;
    animation-delay: var(--tech-delay);
    animation-fill-mode: both;
    transition: all 0.3s ease;
}

.tech-tag-expanded:hover {
    background: #00FFD1;
    background: var(--brand-primary);
    color: #000000;
    transform: scale(1.05);
}

.project-actions-expanded {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-demo-btn,
.project-github-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    color: #FFFFFF;
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.project-demo-btn {
    border-color: #00D4FF;
    border-color: var(--accent);
    color: #00D4FF;
    color: var(--accent);
}

.project-demo-btn:hover {
    background: #00D4FF;
    background: var(--accent);
    color: #000000;
    border-color: #00D4FF;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.project-github-btn:hover {
    background: #00FFD1;
    background: var(--brand-primary);
    color: #000000;
    border-color: #00FFD1;
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 209, 0.3);
}

.project-demo-btn .btn-glow,
.project-github-btn .btn-glow {
    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;
}

.project-demo-btn:hover .btn-glow,
.project-github-btn:hover .btn-glow {
    left: 100%;
}

.internship-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    font-size: 14px;
}

.duration-icon {
    color: #00FFD1;
    color: var(--brand-primary);
    width: 16px;
    height: 16px;
}

.internship-company {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

.company-icon {
    color: #00FFD1;
    color: var(--brand-primary);
    width: 18px;
    height: 18px;
}

.internship-projects {
    padding: 0 30px 30px 30px;
}

.projects-title {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 209, 0.2);
}

.projects-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-item {
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.project-item::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #00FFD1;
    color: var(--brand-primary);
    font-weight: bold;
}

.project-status.internship-badge {
    background: linear-gradient(135deg, #00FFD1, #00D4FF);
    background: linear-gradient(135deg, var(--brand-primary), var(--accent));
    color: #000000;
    font-weight: 600;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(0, 255, 209, 0.3);
    border: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

/* Responsive design for internships */
@media (max-width: 768px) {
    .internship-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px;
    }

    .internship-duration,
    .internship-company {
        justify-content: center;
    }

    .internship-projects {
        padding: 0 20px 20px 20px;
    }

    .projects-title {
        font-size: 16px;
    }

    .project-item {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .internship-header {
        padding: 12px;
    }

    .internship-duration {
        font-size: 13px;
    }

    .internship-company {
        font-size: 15px;
    }

    .projects-title {
        font-size: 15px;
    }

    .project-item {
        font-size: 14px;
        padding-left: 18px;
    }
}

.projects-section {
    position: relative;
    padding: 120px 0;
    background: #000000;
    background: var(--bg-primary);
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 255, 209, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: 1;
}

.holographic-cursor {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 209, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.projects-container {
    position: relative;
    z-index: 3;
    padding: 0 7.6923%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.header-line {
    width: 100px;
    height: 2px;
    background: #00FFD1;
    background: var(--brand-primary);
    margin: 0 auto 30px;
    animation: lineGrow 1s ease-out;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    color: #FFFFFF;
    color: var(--text-primary);
    margin: 0 0 20px 0;
    text-shadow: 0 0 20px rgba(0, 255, 209, 0.2);
}

.title-bracket {
    color: #00FFD1;
    color: var(--brand-primary);
    font-weight: 700;
}

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    margin: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 40px;
    gap: 40px;
    margin-bottom: 60px;
}

/* Projects Filter Bar */
.projects-filter-bar {
    position: relative;
    /* create stacking context above holographic cursor */
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    background: radial-gradient(100% 120% at 0% 0%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
    border-radius: 16px;
    padding: 10px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    position: relative;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    background: linear-gradient(135deg, rgba(0, 255, 209, 0.06), rgba(0, 153, 255, 0.06));
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-btn:hover {
    color: #00FFD1;
    color: var(--brand-primary);
    border-color: #00FFD1;
    border-color: var(--brand-primary);
    box-shadow: 0 0 20px rgba(0, 255, 209, 0.15);
}

.filter-btn.active {
    color: #FFFFFF;
    /* Keep label visible on bright gradient */
    background: linear-gradient(135deg, #00FFD1, #00D4FF);
    background: linear-gradient(135deg, var(--brand-primary), var(--accent));
    border-color: transparent;
    box-shadow: 0 6px 24px rgba(0, 255, 209, 0.25);
}

/* Ensure active state remains consistent on hover/focus/press */
.filter-btn.active:hover,
.filter-btn.active:focus,
.filter-btn.active:active {
    color: #FFFFFF;
    background: linear-gradient(135deg, #00FFD1, #00D4FF);
    background: linear-gradient(135deg, var(--brand-primary), var(--accent));
}

/* Prevent accidental darkening from UA styles on :active */
.filter-btn:active {
    transform: translateY(1px);
}

.filter-search {
    margin-left: auto;
}

.filter-search-input {
    padding: 10px 14px;
    min-width: 320px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    background: #121212;
    background: var(--bg-secondary);
    color: #FFFFFF;
    color: var(--text-primary);
    outline: none;
    transition: all 0.2s ease;
}

.filter-search-input:focus {
    border-color: #00FFD1;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 209, 0.2);
}

@media (max-width: 768px) {
    .filter-search-input {
        min-width: 200px;
    }

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

/* Subtle animation for filtered cards */
.filter-animate {
    animation: filterFade 260ms ease;
}

@keyframes filterFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card {
    position: relative;
    background: #121212;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    transition: all var(--transition-slow);
    animation: cardSlideIn 0.8s ease-out;
    animation-delay: var(--delay);
    animation-fill-mode: both;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: #00FFD1;
    border-color: var(--brand-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 209, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--glow-primary);
}

.project-card.highlighted {
    animation: projectHighlight 2s ease-in-out;
    border-color: #00D4FF;
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 20px 40px rgba(0, 0, 0, 0.3);
}

@keyframes projectHighlight {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 212, 255, 0.6);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 30px 60px rgba(0, 0, 0, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 20px 40px rgba(0, 0, 0, 0.3);
    }
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00FFD1, #00D4FF, #00FFD1);
    background: linear-gradient(45deg, var(--brand-primary), var(--accent), var(--brand-primary));
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.project-card.hovered .card-glow {
    opacity: 0.6;
}

.project-status {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.8);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--status-color);
    border: 1px solid var(--status-color);
    z-index: 10;
}

.status-icon {
    width: 12px;
    height: 12px;
}

.status-icon.live {
    color: #00FFD1;
}

.status-icon.dev {
    color: #FFD700;
}

.status-icon.concept {
    color: #FF6B9D;
}

.project-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-in-out;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 209, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    transition: opacity var(--transition-normal);
}

.project-card:hover .image-overlay {
    opacity: 1;
}

.overlay-grid {
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.project-content {
    padding: 30px;
}

.project-title {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    color: var(--text-primary);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.project-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.tech-tag {
    background: rgba(0, 255, 209, 0.1);
    border: 1px solid #00FFD1;
    border: 1px solid var(--brand-primary);
    color: #00FFD1;
    color: var(--brand-primary);
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 0;
    animation: tagSlideIn 0.5s ease-out;
    animation-delay: var(--tech-delay);
    animation-fill-mode: both;
}

.project-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.4s ease-in-out;
    transition: var(--transition-normal);
    overflow: hidden;
}

.action-btn.primary {
    background: #00FFD1;
    background: var(--brand-primary);
    color: #000000;
}

.action-btn.secondary {
    background: transparent;
    color: #FFFFFF;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
}

.action-btn:hover {
    transform: translateY(-2px);
}

.action-btn.primary:hover {
    background: rgba(0, 255, 209, 0.1);
    background: var(--brand-hover);
    color: #00FFD1;
    color: var(--brand-primary);
    box-shadow: 0 0 20px rgba(0, 255, 209, 0.3);
    box-shadow: var(--glow-primary);
}

.action-btn.secondary:hover {
    background: #00FFD1;
    background: var(--brand-primary);
    color: #000000;
    border-color: #00FFD1;
    border-color: var(--brand-primary);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.action-btn:hover .btn-glow {
    left: 100%;
}

.mechanical-corners {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #00FFD1;
    border: 2px solid var(--brand-primary);
    opacity: 0;
    transition: all 0.4s ease-in-out;
    transition: all var(--transition-normal);
}

.corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

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

.data-stream {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #121212;
    background: var(--bg-secondary);
    overflow: hidden;
}

.stream-line {
    width: 100%;
    height: 1px;
    background: #00FFD1;
    background: var(--brand-primary);
    opacity: 0.3;
}

.stream-dots {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 10px;
    animation: streamMove 3s linear infinite;
}

.dot {
    width: 4px;
    height: 4px;
    background: #00FFD1;
    background: var(--brand-primary);
    border-radius: 50%;
}

/* ==============================================
   SKILLS SECTION
   ============================================== */
.skills-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    overflow: hidden;
}

.matrix-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.matrix-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #00FFD1, transparent);
    background: linear-gradient(to bottom, transparent, var(--brand-primary), transparent);
    opacity: 0.1;
    animation: matrixRain 4s linear infinite;
    animation-delay: var(--delay);
}

.matrix-line:nth-child(odd) {
    left: calc(0 * 1px);
    left: calc(var(--delay, 0) * 1px);
}

.matrix-line:nth-child(even) {
    right: calc(0 * 1px);
    right: calc(var(--delay, 0) * 1px);
}

.skills-container {
    position: relative;
    z-index: 3;
    padding: 0 7.6923%;
    max-width: 1400px;
    margin: 0 auto;
}

.header-terminal {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #00FFD1;
    color: var(--brand-primary);
}

.skills-interface {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 60px;
    gap: 60px;
    margin-top: 60px;
}

.category-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #121212;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    cursor: pointer;
    transition: 0.4s ease-in-out;
    transition: var(--transition-normal);
    text-align: left;
    overflow: hidden;
}

.category-btn:hover,
.category-btn.active {
    background: rgba(0, 255, 209, 0.1);
    border-color: #00FFD1;
    border-color: var(--brand-primary);
    color: #FFFFFF;
    color: var(--text-primary);
}

.category-icon {
    width: 20px;
    height: 20px;
    color: #00FFD1;
    color: var(--brand-primary);
}

.category-title {
    font-size: 16px;
    font-weight: 500;
    flex: 1 1;
}

.category-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.4s ease-in-out;
    transition: transform var(--transition-normal);
}

.category-btn.active .category-arrow {
    transform: rotate(90deg);
}

.category-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 209, 0.2), transparent);
    transition: left 0.6s ease;
}

.category-btn:hover .category-glow {
    left: 100%;
}

.skills-display {
    background: #121212;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    overflow: hidden;
    height: 550px;
    /* Fixed height to prevent layout shift */
}

.display-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: rgba(0, 255, 209, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid var(--border-subtle);
}

.display-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    color: var(--text-primary);
}

.display-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.active {
    background: #00FFD1;
    background: var(--brand-primary);
    animation: pulse 2s ease-in-out infinite;
}

.skills-grid {
    padding: 30px;
    display: grid;
    grid-gap: 25px;
    gap: 25px;
    height: calc(550px - 70px);
    /* Fixed height with header consideration */
    overflow-y: auto;
}

/* Custom Cyber-themed Scrollbar for Skills Grid */
.skills-grid::-webkit-scrollbar {
    width: 6px;
}

.skills-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid var(--border-subtle);
}

.skills-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00FFD1 0%, rgba(0, 255, 209, 0.5) 100%);
    background: linear-gradient(180deg, var(--brand-primary) 0%, rgba(0, 255, 209, 0.5) 100%);
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(0, 255, 209, 0.4);
}

.skills-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00FFD1 0%, #00D4FF 100%);
    background: linear-gradient(180deg, var(--brand-primary) 0%, var(--accent) 100%);
    box-shadow: 0 0 12px rgba(0, 255, 209, 0.6);
}

/* Firefox scrollbar */
.skills-grid {
    scrollbar-width: thin;
    scrollbar-color: #00FFD1 rgba(0, 0, 0, 0.3);
    scrollbar-color: var(--brand-primary) rgba(0, 0, 0, 0.3);
}

.skill-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease-out;
}

.skill-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.skill-name {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    color: var(--text-primary);
}

.skill-level {
    font-size: 14px;
    font-weight: 600;
}

.skill-progress-container {
    position: relative;
    margin-bottom: 15px;
}

.skill-progress-bg {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
}

.skill-progress-fill {
    width: var(--progress);
    height: 100%;
    background: var(--color);
    transition: width 1.5s ease-out;
    position: relative;
}

.progress-scanner {
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: var(--color);
    animation: scan 2s ease-in-out infinite;
}

.skill-hologram {
    margin-bottom: 10px;
}

.hologram-dots {
    display: flex;
    gap: 4px;
}

.hologram-dot {
    width: 4px;
    height: 4px;
    background: #00FFD1;
    background: var(--brand-primary);
    border-radius: 50%;
    animation: hologramPulse 1.5s ease-in-out infinite;
    animation-delay: var(--delay);
}

.skill-data {
    opacity: 0.6;
}

.data-bars {
    display: flex;
    gap: 2px;
    height: 20px;
    align-items: end;
}

.data-bar {
    width: 3px;
    background: #00FFD1;
    background: var(--brand-primary);
    animation: dataVisualize 2s ease-in-out infinite;
    animation-delay: var(--delay);
}

.data-bar:nth-child(1) {
    height: 60%;
}

.data-bar:nth-child(2) {
    height: 80%;
}

.data-bar:nth-child(3) {
    height: 40%;
}

.data-bar:nth-child(4) {
    height: 90%;
}

.data-bar:nth-child(5) {
    height: 70%;
}

.system-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 30px;
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #121212;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    transition: 0.4s ease-in-out;
    transition: var(--transition-normal);
}

.stat-item:hover {
    border-color: #00FFD1;
    border-color: var(--brand-primary);
    box-shadow: 0 0 20px rgba(0, 255, 209, 0.3);
    box-shadow: var(--glow-primary);
}

.stat-icon {
    width: 24px;
    height: 24px;
    color: #00FFD1;
    color: var(--brand-primary);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
}

/* ==============================================
   PLACEHOLDER SECTIONS
   ============================================== */
.section-placeholder {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #121212;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid var(--border-subtle);
}

.placeholder-content {
    text-align: center;
}

.placeholder-content h2 {
    font-size: 32px;
    color: #FFFFFF;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.loading-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.loading-dots .dot {
    width: 8px;
    height: 8px;
    background: #00FFD1;
    background: var(--brand-primary);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.loading-dots .dot:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots .dot:nth-child(2) {
    animation-delay: 0.5s;
}

.loading-dots .dot:nth-child(3) {
    animation-delay: 1s;
}

/* ==============================================
   FOOTER
   ============================================== */
.main-footer {
    position: relative;
    background: #000000;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 40px;
    overflow: hidden;
}

.footer-container {
    position: relative;
    padding: 0 7.6923%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-gap: 1px;
    gap: 1px;
    opacity: 0.05;
}

.grid-cell {
    background: #00FFD1;
    background: var(--brand-primary);
    animation: gridFade 3s ease-in-out infinite;
    animation-delay: calc(0 * 100ms);
    animation-delay: calc(var(--delay, 0) * 100ms);
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==============================================
    SYSTEM ANALYSIS TABS
    ============================================== */
.system-analysis-tabs {
    margin-bottom: 25px;
}

.tab-buttons {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 209, 0.3);
    border-radius: 12px;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}

.tab-btn {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 15px 10px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 255, 209, 0.15) 50%,
            transparent 100%);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00FFD1, #00D4FF);
    background: linear-gradient(90deg, var(--brand-primary), var(--accent));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.tab-btn:hover {
    transform: translateY(-3px) scale(1.05);
    color: #00FFD1;
    color: var(--brand-primary);
    box-shadow:
        0 8px 25px rgba(0, 255, 209, 0.2),
        0 0 40px rgba(0, 255, 209, 0.1);
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn:hover::after {
    width: 80%;
}

.tab-btn.active {
    background: linear-gradient(135deg,
            rgba(0, 255, 209, 0.15) 0%,
            rgba(0, 255, 209, 0.08) 100%);
    color: #00FFD1;
    color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow:
        0 5px 20px rgba(0, 255, 209, 0.25),
        0 0 30px rgba(0, 255, 209, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tab-btn.active::after {
    width: 90%;
    height: 3px;
    box-shadow: 0 0 10px #00FFD1;
    box-shadow: 0 0 10px var(--brand-primary);
}

.tab-btn.active::before {
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 255, 209, 0.25) 50%,
            transparent 100%);
    left: 100%;
}

.tab-icon {
    width: 20px;
    height: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 5px rgba(0, 255, 209, 0.3));
}

.tab-btn:hover .tab-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(0, 255, 209, 0.6));
}

.tab-btn.active .tab-icon {
    transform: scale(1.15) rotate(360deg);
    filter: drop-shadow(0 0 15px rgba(0, 255, 209, 0.8));
    color: #00FFD1;
    color: var(--brand-primary);
}

.tab-btn span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tab Content */
.tab-content {
    min-height: 400px;
    padding: 30px;
    animation: tabFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tab-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 255, 209, 0.03) 50%,
            transparent 100%);
    animation: contentScan 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes contentScan {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

/* Education Card */
.education-card {
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 10, 20, 0.4) 50%,
            rgba(0, 0, 0, 0.5) 100%);
    border: 2px solid rgba(0, 255, 209, 0.5);
    border-radius: 18px;
    padding: 32px;
    margin-top: 30px;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 15px 40px rgba(0, 255, 209, 0.15),
        0 5px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 255, 209, 0.06) 50%,
            transparent 100%);
    animation: cardScan 6s ease-in-out infinite;
}

@keyframes cardScan {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(0, 255, 209, 0.4);
    position: relative;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00FFD1, #00D4FF, #00FFD1);
    background: linear-gradient(90deg, var(--brand-primary), var(--accent), var(--brand-primary));
    border-radius: 1px;
}

.degree-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg,
            rgba(0, 255, 209, 0.2) 0%,
            rgba(0, 255, 209, 0.1) 100%);
    border: 2px solid #00FFD1;
    border: 2px solid var(--brand-primary);
    border-radius: 30px;
    padding: 12px 22px;
    box-shadow:
        0 0 20px rgba(0, 255, 209, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}

.degree-icon {
    font-size: 20px;
    filter: drop-shadow(0 0 5px #00FFD1);
    filter: drop-shadow(0 0 5px var(--brand-primary));
}

.degree-level {
    font-size: 14px;
    font-weight: 800;
    color: #00FFD1;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(0, 255, 209, 0.8);
}

.timeline-indicator {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,
            rgba(0, 255, 209, 0.15) 0%,
            rgba(0, 255, 209, 0.05) 100%);
    border: 3px solid #00FFD1;
    border: 3px solid var(--brand-primary);
    border-radius: 50%;
    box-shadow:
        0 0 25px rgba(0, 255, 209, 0.4),
        inset 0 2px 4px rgba(0, 255, 209, 0.1);
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: #00FFD1;
    background: var(--brand-primary);
    border-radius: 50%;
    animation: timelinePulse 3s ease-in-out infinite;
    box-shadow:
        0 0 15px #00FFD1,
        0 0 30px #00FFD1;
    box-shadow:
        0 0 15px var(--brand-primary),
        0 0 30px var(--brand-primary);
}

@keyframes timelinePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 15px #00FFD1, 0 0 30px #00FFD1;
        box-shadow: 0 0 15px var(--brand-primary), 0 0 30px var(--brand-primary);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.4);
        box-shadow: 0 0 25px #00FFD1, 0 0 50px #00FFD1;
        box-shadow: 0 0 25px var(--brand-primary), 0 0 50px var(--brand-primary);
    }
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.degree-title {
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
    color: var(--text-primary);
    margin: 0;
    text-shadow:
        0 0 20px rgba(0, 255, 209, 0.5),
        0 0 40px rgba(0, 255, 209, 0.3);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.institution-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    background: linear-gradient(135deg,
            rgba(0, 255, 209, 0.08) 0%,
            rgba(0, 255, 209, 0.04) 100%);
    border: 1px solid rgba(0, 255, 209, 0.3);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 255, 209, 0.1) 50%,
            transparent 100%);
    transition: left 0.5s ease;
}

.info-item:hover::before {
    left: 100%;
}

.info-item:hover {
    background: linear-gradient(135deg,
            rgba(0, 255, 209, 0.15) 0%,
            rgba(0, 255, 209, 0.08) 100%);
    border-color: #00FFD1;
    border-color: var(--brand-primary);
    transform: translateX(8px) translateY(-2px);
    box-shadow:
        0 10px 30px rgba(0, 255, 209, 0.2),
        0 0 40px rgba(0, 255, 209, 0.1);
}

.info-icon {
    font-size: 20px;
    min-width: 20px;
    color: #00FFD1;
    color: var(--brand-primary);
    filter: drop-shadow(0 0 5px #00FFD1);
    filter: drop-shadow(0 0 5px var(--brand-primary));
}

.info-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

/* Personal Info Grid */
.personal-info-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 25px;
    max-width: 650px;
}

.info-row {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 209, 0.3);
    border-radius: 12px;
    transition: all 0.4s ease;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    box-shadow:
        0 5px 15px rgba(0, 255, 209, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.info-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 209, 0.1), transparent);
    transition: left 0.6s ease;
}

.info-row:hover::before {
    left: 100%;
}

.info-row:hover {
    background: rgba(0, 255, 209, 0.08);
    border-color: #00FFD1;
    border-color: var(--brand-primary);
    transform: translateX(8px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(0, 255, 209, 0.2),
        0 0 40px rgba(0, 255, 209, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.info-label {
    font-size: 15px;
    font-weight: 700;
    color: #00FFD1;
    color: var(--brand-primary);
    min-width: 130px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(0, 255, 209, 0.5);
}

.info-value {
    font-size: 17px;
    color: #FFFFFF;
    color: var(--text-primary);
    font-weight: 600;
    flex: 1 1;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.info-link {
    font-size: 17px;
    color: #00D4FF;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    flex: 1 1;
    text-shadow: 0 0 5px rgba(0, 153, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.info-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00FFD1;
    background: var(--brand-primary);
    transition: width 0.3s ease;
}

.info-link:hover::after {
    width: 100%;
}

.info-link:hover {
    color: #00FFD1;
    color: var(--brand-primary);
    text-shadow: 0 0 10px rgba(0, 255, 209, 0.5);
}

/* ==============================================
    ANIMATIONS
    ============================================== */
@keyframes logoAnimate {

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

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

@keyframes loadingProgress {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes typewriter {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Voice Activation Styles */
.voice-activation {
    margin-top: 30px;
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

.voice-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.voice-wave {
    width: 4px;
    height: 20px;
    background: #00FFD1;
    background: var(--brand-primary);
    border-radius: 2px;
    animation: voiceWave 1.5s ease-in-out infinite;
}

.voice-wave:nth-child(2) {
    animation-delay: 0.2s;
}

.voice-wave:nth-child(3) {
    animation-delay: 0.4s;
}

.voice-text {
    color: #00FFD1;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 0 10px currentColor;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes voiceWave {

    0%,
    100% {
        height: 20px;
        opacity: 0.7;
    }

    50% {
        height: 40px;
        opacity: 1;
    }
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

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

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

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

@keyframes gridShift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes scanMove {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes lineGrow {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tagSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes streamMove {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(200%);
    }
}

@keyframes matrixRain {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes scan {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes hologramPulse {

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

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes dataVisualize {

    0%,
    100% {
        height: 20%;
    }

    50% {
        height: 100%;
    }
}

@keyframes dotPulse {

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

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes gridFade {

    0%,
    100% {
        opacity: 0.05;
    }

    50% {
        opacity: 0.2;
    }
}

/* ==============================================
    ADDITIONAL STATS SECTION
    ============================================== */
.additional-stats-section {
    margin-top: 40px;
    background: #121212;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    overflow: hidden;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: rgba(0, 255, 209, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid var(--border-subtle);
}

.stats-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    color: var(--text-primary);
}

.stats-icon {
    width: 20px;
    height: 20px;
    color: #00FFD1;
    color: var(--brand-primary);
}

.additional-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 1px;
    gap: 1px;
    background: rgba(255, 255, 255, 0.25);
    background: var(--border-subtle);
}

.additional-stat-card {
    position: relative;
    background: #121212;
    background: var(--bg-secondary);
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
    overflow: hidden;
}

.additional-stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.additional-stat-card .stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.additional-stat-card .stat-content {
    margin-bottom: 15px;
}

.additional-stat-card .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.additional-stat-card .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
}

/* ==============================================
    ABOUT SECTION
    ============================================== */

/* Bio Title Styling */
.bio-title {
    font-size: 24px;
    font-weight: 700;
    color: #00FFD1;
    color: var(--brand-primary);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 209, 0.5);
    font-family: 'Orbitron', monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==============================================
    ABOUT SECTION
    ============================================== */
.about-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    overflow: hidden;
}

.neural-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.neural-node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00FFD1;
    background: var(--brand-primary);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: neuralPulse 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.neural-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.connection-line {
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #00FFD1, transparent);
    background: linear-gradient(to bottom, transparent, var(--brand-primary), transparent);
    opacity: 0.1;
    animation: connectionFlow 4s linear infinite;
    animation-delay: var(--delay);
}

.connection-line:nth-child(odd) {
    left: 20%;
    transform: rotate(45deg);
}

.connection-line:nth-child(even) {
    right: 20%;
    transform: rotate(-45deg);
}

.about-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00FFD1, transparent);
    background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
    animation: scanlineMove 3s linear;
    z-index: 4;
}

.about-container {
    position: relative;
    z-index: 3;
    padding: 0 7.6923%;
    max-width: 1400px;
    margin: 0 auto;
}

.title-accent {
    color: #00FFD1;
    color: var(--brand-primary);
    font-weight: 700;
}

.title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.underline-segment {
    width: 50px;
    height: 2px;
    background: #00FFD1;
    background: var(--brand-primary);
}

.underline-dot {
    width: 8px;
    height: 8px;
    background: #00FFD1;
    background: var(--brand-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px;
    gap: 60px;
    margin-top: 80px;
    align-items: start;
}

.bio-section {
    background: #121212;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    overflow: hidden;
}

.bio-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(0, 255, 209, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid var(--border-subtle);
}

.profile-indicator {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indicator-ring {
    position: relative;
    width: 60px;
    height: 60px;
    border: 2px solid #00FFD1;
    border: 2px solid var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-pulse {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid #00FFD1;
    border: 2px solid var(--brand-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: ringExpand 2s ease-out infinite;
}

.profile-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    color: #00FFD1;
    color: var(--brand-primary);
    z-index: 2;
}

.bio-meta {
    display: flex;
    flex-direction: column;
}

.bio-label {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    color: var(--text-primary);
}

.bio-status {
    font-size: 14px;
    color: #00FFD1;
    color: var(--brand-primary);
    font-weight: 600;
}

.bio-content {
    padding: 30px;
}

.bio-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    gap: 20px;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(0, 255, 209, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    transition: 0.4s ease-in-out;
    transition: var(--transition-normal);
}

.capability-item:hover {
    border-color: #00FFD1;
    border-color: var(--brand-primary);
    color: #FFFFFF;
    color: var(--text-primary);
}

.capability-icon {
    width: 16px;
    height: 16px;
    color: #00FFD1;
    color: var(--brand-primary);
}

.education-section {
    margin-top: 30px;
    padding: 25px;
    background: rgba(0, 255, 209, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
}

.education-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    color: var(--text-primary);
}

.education-icon {
    width: 18px;
    height: 18px;
    color: #00FFD1;
    color: var(--brand-primary);
}

.education-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.education-item {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid var(--border-subtle);
}

.edu-title {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.edu-institution {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    margin-bottom: 3px;
}

.edu-year {
    font-size: 12px;
    color: #00FFD1;
    color: var(--brand-primary);
    font-weight: 500;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
}

.cert-dot {
    width: 6px;
    height: 6px;
    background: #00FFD1;
    background: var(--brand-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.stats-dashboard {
    background: #121212;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: rgba(0, 255, 209, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid var(--border-subtle);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    color: var(--text-primary);
}

.dashboard-icon {
    width: 20px;
    height: 20px;
    color: #00FFD1;
    color: var(--brand-primary);
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
}

.status-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-light.active {
    background: #00FFD1;
    background: var(--brand-primary);
    animation: pulse 2s ease-in-out infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1px;
    gap: 1px;
    background: rgba(255, 255, 255, 0.25);
    background: var(--border-subtle);
}

.stat-card {
    position: relative;
    background: #121212;
    background: var(--bg-secondary);
    padding: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
    overflow: hidden;
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stat-indicators {
    display: flex;
    gap: 4px;
}

.indicator-dot {
    width: 4px;
    height: 4px;
    background: #4D4D4D;
    background: var(--text-muted);
    border-radius: 50%;
}

.indicator-dot.active {
    background: #00FFD1;
    background: var(--brand-primary);
    animation: pulse 1.5s ease-in-out infinite;
}

.stat-content {
    margin-bottom: 20px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
}

.stat-visualization {
    height: 40px;
    margin-bottom: 15px;
}

.viz-bars {
    display: flex;
    align-items: end;
    gap: 2px;
    height: 100%;
}

.viz-bar {
    width: 4px;
    height: var(--height);
    background: #00FFD1;
    background: var(--brand-primary);
    opacity: 0.6;
    animation: vizPulse 2s ease-in-out infinite;
    animation-delay: var(--delay);
}

.stat-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.border-corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid #00FFD1;
    border: 2px solid var(--brand-primary);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    transition: opacity var(--transition-normal);
}

.stat-card:hover .border-corner {
    opacity: 1;
}

.border-corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.border-corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.border-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.border-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.energy-flow {
    display: none;
}

.flow-particle {
    display: none;
}

.system-info {
    margin-top: 60px;
}

.info-terminal {
    background: #121212;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    overflow: hidden;
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid var(--border-subtle);
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red {
    background: #FF5F56;
}

.control-dot.yellow {
    background: #FFBD2E;
}

.control-dot.green {
    background: #27CA3F;
}

.terminal-title {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
}

.terminal-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.terminal-line {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

.prompt {
    color: #00FFD1;
    color: var(--brand-primary);
    font-weight: 600;
}

.command {
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    min-width: 150px;
}

.output {
    color: #FFFFFF;
    color: var(--text-primary);
}

.output.success {
    color: #27CA3F;
}

.output.active {
    color: #00FFD1;
    color: var(--brand-primary);
}

/* ==============================================
   CONTACT SECTION
   ============================================== */
.contact-section {
    position: relative;
    padding: 120px 0;
    background: #000000;
    background: var(--bg-primary);
    overflow: hidden;
    width: 100%;
}

.quantum-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.quantum-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00FFD1;
    background: var(--brand-primary);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    opacity: 0.3;
    animation: quantumFloat var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

.quantum-interference {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid #00FFD1;
    border: 1px solid var(--brand-primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: interferenceExpand 2s ease-out;
}

.contact-container {
    position: relative;
    z-index: 3;
    padding: 0 7.6923%;
    max-width: 1400px;
    margin: 0 auto;
}

.connection-status {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.status-indicator,
.encryption-level {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
}

.status-icon,
.encryption-icon {
    width: 16px;
    height: 16px;
    color: #00FFD1;
    color: var(--brand-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-gap: 60px;
    gap: 60px;
    margin-top: 80px;
    align-items: start;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-section {
    background: #121212;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    overflow: hidden;
    height: -webkit-fit-content;
    height: fit-content;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 255, 209, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid var(--border-subtle);
}

.form-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    color: var(--text-primary);
}

.form-icon {
    width: 20px;
    height: 20px;
    color: #00FFD1;
    color: var(--brand-primary);
}

.form-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
}

.status-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-light.ready {
    background: #00FFD1;
    background: var(--brand-primary);
}

.status-light.transmitting {
    background: #FFD700;
    animation: pulse 0.5s ease-in-out infinite;
}

.status-light.success {
    background: #27CA3F;
}

.contact-form {
    padding: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    color: var(--text-primary);
}

.label-required {
    color: #FF5F56;
}

.input-wrapper {
    position: relative;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    color: #FFFFFF;
    color: var(--text-primary);
    font-size: 16px;
    transition: 0.4s ease-in-out;
    transition: var(--transition-normal);
    resize: none;
}

.form-textarea {
    min-height: 100px;
    max-height: 120px;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00FFD1;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 2px rgba(0, 255, 209, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #4D4D4D;
    color: var(--text-muted);
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #00FFD1;
    border: 2px solid var(--brand-primary);
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.form-input:focus+.input-glow,
.form-textarea:focus+.input-glow {
    opacity: 0.3;
}

.submit-btn {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    background: #00FFD1;
    background: var(--brand-primary);
    color: #000000;
    border: none;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s ease-in-out;
    transition: var(--transition-normal);
    overflow: hidden;
}

.submit-btn:hover {
    background: rgba(0, 255, 209, 0.1);
    background: var(--brand-hover);
    color: #00FFD1;
    color: var(--brand-primary);
    box-shadow: 0 0 20px rgba(0, 255, 209, 0.3);
    box-shadow: var(--glow-primary);
}

.submit-btn.transmitting {
    background: #FFD700;
    color: #000000;
}

.submit-btn.success {
    background: #27CA3F;
    color: #000000;
}

.submit-btn:disabled {
    cursor: not-allowed;
}

.loading-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top: 2px solid #000000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.btn-scanner {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover .btn-scanner {
    left: 100%;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-header {
    background: #121212;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    padding: 25px;
    border-radius: 0;
}

.info-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    color: var(--text-primary);
}

.info-icon {
    width: 20px;
    height: 20px;
    color: #00FFD1;
    color: var(--brand-primary);
}

.contact-methods {
    background: #121212;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    overflow: hidden;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid var(--border-subtle);
    transition: 0.4s ease-in-out;
    transition: var(--transition-normal);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method:hover {
    background: rgba(0, 255, 209, 0.05);
}

.method-icon {
    width: 24px;
    height: 24px;
    color: #00FFD1;
    color: var(--brand-primary);
}

.method-content {
    flex: 1 1;
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.method-value {
    font-size: 16px;
    color: #FFFFFF;
    color: var(--text-primary);
    font-weight: 500;
}

.method-status {
    display: flex;
    align-items: center;
}

.social-networks {
    background: #121212;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    overflow: hidden;
}

.networks-header {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(0, 255, 209, 0.05);
}

.networks-title {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    color: var(--text-primary);
}

.networks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.social-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid var(--border-subtle);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    transition: 0.4s ease-in-out;
    transition: var(--transition-normal);
    overflow: hidden;
}

.social-link:nth-child(3n) {
    border-right: none;
}

.social-link:hover {
    color: #FFFFFF;
    color: var(--text-primary);
    background: rgba(0, 255, 209, 0.05);
}

.social-icon {
    width: 24px;
    height: 24px;
    color: #00FFD1;
    color: var(--brand-primary);
}

.social-label {
    font-size: 14px;
    font-weight: 500;
}

.social-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 209, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover .social-glow {
    left: 100%;
}

.system-status {
    background: #121212;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    overflow: hidden;
}

.status-header {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(0, 255, 209, 0.05);
}

.status-title {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    color: var(--text-primary);
}

.status-items {
    padding: 25px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
}

.status-item:last-child {
    margin-bottom: 0;
}

.item-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.item-indicator.online {
    background: #27CA3F;
    animation: pulse 2s ease-in-out infinite;
}

.item-indicator.active {
    background: #00FFD1;
    background: var(--brand-primary);
    animation: pulse 2s ease-in-out infinite;
}

.item-indicator.success {
    background: #FFD700;
    animation: pulse 2s ease-in-out infinite;
}

/* Resume Download Button */
.resume-download {
    margin-top: 20px;
}

.download-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: 1px solid #00FFD1;
    border: 1px solid var(--brand-primary);
    color: #00FFD1;
    color: var(--brand-primary);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s ease-in-out;
    transition: var(--transition-normal);
    overflow: hidden;
}

.download-btn:hover {
    background: #00FFD1;
    background: var(--brand-primary);
    color: #000000;
    box-shadow: 0 0 20px rgba(0, 255, 209, 0.3);
    box-shadow: var(--glow-primary);
}

.download-icon {
    width: 20px;
    height: 20px;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 209, 0.3), transparent);
    transition: left 0.6s ease;
}

.download-btn:hover .btn-glow {
    left: 100%;
}

/* Additional Animations for About and Contact */
@keyframes neuralPulse {

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

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

@keyframes connectionFlow {
    0% {
        transform: translateY(-100%) rotate(45deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(45deg);
        opacity: 0;
    }
}

@keyframes scanlineMove {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

@keyframes ringExpand {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

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

@keyframes vizPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@keyframes flowMove {
    0% {
        left: -10px;
    }

    100% {
        left: calc(100% + 10px);
    }
}

@keyframes quantumFloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(0px) translateX(-10px);
    }

    75% {
        transform: translateY(20px) translateX(5px);
    }
}

@keyframes interferenceExpand {
    0% {
        transform: scale(0);
        opacity: 0.3;
    }

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

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ==============================================
   RESPONSIVE DESIGN - ABOUT & CONTACT
   ============================================== */
@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

@media (max-width: 768px) {

    .about-container,
    .contact-container {
        padding: 0 20px;
    }

    .about-grid {
        gap: 30px;
    }

    .contact-grid {
        gap: 30px;
    }

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

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .connection-status {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .social-link {
        border-right: none;
    }
}

@media (max-width: 480px) {
    .bio-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .dashboard-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .form-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* ==============================================
    ENHANCED EDUCATION INSIDE METRICS STYLES
    ============================================== */
.education-section.within-dashboard.enhanced {
    margin-top: 30px;
    padding: 30px;
    border: 2px solid rgba(0, 255, 159, 0.3);
    border-radius: 20px;
    background: linear-gradient(135deg,
            rgba(0, 255, 159, 0.08) 0%,
            rgba(0, 153, 255, 0.06) 50%,
            rgba(255, 0, 255, 0.04) 100%);
    box-shadow:
        0 15px 40px rgba(0, 255, 159, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.education-section.within-dashboard.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 255, 159, 0.1),
            transparent);
    animation: educationScan 4s ease-in-out infinite;
}

@keyframes educationScan {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

.education-section.within-dashboard.enhanced .education-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 159, 0.2);
}

.education-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.education-icon {
    width: 28px;
    height: 28px;
    color: #00FFD1;
    color: var(--brand-primary);
    z-index: 2;
}

.icon-glow {
    position: absolute;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(0, 255, 159, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

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

    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.education-title-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.education-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 255, 159, 0.3);
}

.education-subtitle {
    font-size: 12px;
    color: #00FFD1;
    color: var(--brand-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.education-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator.education-active {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00FFD1;
    background: var(--brand-primary);
    animation: educationStatusPulse 2s ease-in-out infinite;
}

@keyframes educationStatusPulse {

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

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.status-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    font-weight: 500;
}

.education-item.enhanced {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 159, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.education-item.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00FFD1, #00D4FF, #00FFD1);
    background: linear-gradient(90deg, var(--brand-primary), var(--accent), var(--brand-primary));
    animation: educationBorderGlow 3s ease-in-out infinite;
}

@keyframes educationBorderGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.edu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.edu-degree-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 159, 0.1);
    border: 1px solid #00FFD1;
    border: 1px solid var(--brand-primary);
    border-radius: 20px;
    padding: 8px 15px;
}

.degree-icon {
    font-size: 16px;
}

.degree-level {
    font-size: 12px;
    font-weight: 600;
    color: #00FFD1;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.edu-timeline {
    position: relative;
    width: 60px;
    height: 20px;
}

.timeline-dot {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #00FFD1;
    background: var(--brand-primary);
    border-radius: 50%;
    animation: timelinePulse 2s ease-in-out infinite;
}

.timeline-line {
    position: absolute;
    right: 6px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #00FFD1, transparent);
    background: linear-gradient(to bottom, transparent, var(--brand-primary), transparent);
}

@keyframes timelinePulse {

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

    50% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1.2);
    }
}

.edu-main-info h4.edu-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 255, 159, 0.3);
}

.edu-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.edu-institution,
.edu-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
}

.institution-icon,
.duration-icon {
    font-size: 14px;
}

.edu-year {
    color: #00FFD1;
    color: var(--brand-primary);
    font-weight: 600;
}

.edu-details-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 159, 0.2);
}

.details-title {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 159, 0.2);
}

.edu-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 12px;
    gap: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 255, 159, 0.05);
    border: 1px solid rgba(0, 255, 159, 0.15);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(0, 255, 159, 0.1);
    border-color: #00FFD1;
    border-color: var(--brand-primary);
    color: #FFFFFF;
    color: var(--text-primary);
    transform: translateY(-2px);
}

.detail-icon {
    font-size: 14px;
}

.edu-progress {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 159, 0.2);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress-label {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    color: var(--text-primary);
}

.progress-percentage {
    font-size: 14px;
    font-weight: 700;
    color: #00FFD1;
    color: var(--brand-primary);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00FFD1, #00D4FF);
    background: linear-gradient(90deg, var(--brand-primary), var(--accent));
    border-radius: 4px;
    transition: width 1.5s ease-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .education-section.within-dashboard.enhanced {
        padding: 20px;
    }

    .edu-details-grid {
        grid-template-columns: 1fr;
    }

    .edu-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .education-section.within-dashboard.enhanced .education-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* ==============================================
   CERTIFICATE MODAL STYLES
   ============================================== */

.certificate-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    animation: modalFadeIn 0.3s ease-out forwards;
}

.certificate-modal {
    background: linear-gradient(135deg,
            rgba(15, 15, 35, 0.95) 0%,
            rgba(25, 25, 45, 0.95) 100%);
    border: 2px solid #00FFD1;
    border: 2px solid var(--brand-primary);
    border-radius: 20px;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    overflow-y: auto;
    box-shadow:
        0 20px 60px rgba(0, 255, 159, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(0.8) translateY(50px);
    animation: modalSlideIn 0.3s ease-out 0.1s forwards;
}

.modal-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 255, 159, 0.2);
    background: linear-gradient(90deg,
            rgba(0, 255, 159, 0.1) 0%,
            transparent 100%);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}

.modal-header h2 {
    color: #00FFD1;
    color: var(--brand-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.modal-close-btn {
    background: none;
    border: 2px solid #00FFD1;
    border: 2px solid var(--brand-primary);
    color: #00FFD1;
    color: var(--brand-primary);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: #00FFD1;
    background: var(--brand-primary);
    color: #000000;
    color: var(--bg-primary);
    box-shadow: 0 0 20px #00FFD1;
    box-shadow: 0 0 20px var(--brand-primary);
}

.modal-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.certificate-item {
    background: linear-gradient(135deg,
            rgba(0, 255, 159, 0.05) 0%,
            rgba(0, 153, 255, 0.05) 100%);
    border: 1px solid rgba(0, 255, 159, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.certificate-item:hover {
    border-color: #00FFD1;
    border-color: var(--brand-primary);
    box-shadow: 0 10px 30px rgba(0, 255, 159, 0.1);
    transform: translateY(-2px);
}

.cert-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.cert-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00FFD1, #00D4FF);
    background: linear-gradient(135deg, var(--brand-primary), var(--accent));
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 159, 0.3);
}

.cert-info h3 {
    color: #FFFFFF;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 0 5px rgba(0, 255, 159, 0.3);
}

.cert-issuer {
    color: #00FFD1;
    color: var(--brand-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.cert-duration {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(0, 153, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 153, 255, 0.3);
}

.cert-description {
    margin-bottom: 20px;
}

.cert-description p {
    color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cert-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    gap: 20px;
}

.cert-projects h4,
.cert-skills h4 {
    color: #FFFFFF;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-shadow: 0 0 5px rgba(0, 255, 159, 0.2);
}

.project-tags,
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tag {
    background: linear-gradient(135deg,
            rgba(0, 255, 159, 0.1) 0%,
            rgba(0, 255, 159, 0.05) 100%);
    color: #00FFD1;
    color: var(--brand-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 255, 159, 0.3);
    font-weight: 500;
}

.skill-tag {
    background: linear-gradient(135deg,
            rgba(0, 153, 255, 0.1) 0%,
            rgba(0, 153, 255, 0.05) 100%);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 153, 255, 0.3);
    font-weight: 500;
}

/* Clickable stat card styling */
.stat-card.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.stat-card.clickable:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 255, 159, 0.2),
        0 0 30px rgba(0, 255, 159, 0.1);
    border-color: #00FFD1;
    border-color: var(--brand-primary);
}

.stat-card.clickable:hover .stat-label {
    color: #00FFD1;
    color: var(--brand-primary);
    text-shadow: 0 0 10px #00FFD1;
    text-shadow: 0 0 10px var(--brand-primary);
}

.stat-card.clickable:hover .stat-icon {
    color: #00FFD1;
    color: var(--brand-primary);
    transform: scale(1.1);
}

/* Modal animations */
@keyframes modalFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    to {
        transform: scale(1) translateY(0);
    }
}

/* Responsive modal styles */
@media (max-width: 768px) {
    .certificate-modal {
        width: 95%;
        max-height: 95vh;
        margin: 20px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-content {
        padding: 20px;
    }

    .cert-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cert-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .modal-header h2 {
        font-size: 1.2rem;
    }

    .cert-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .cert-info h3 {
        font-size: 1.1rem;
    }

    .project-tags,
    .skill-tags {
        justify-content: center;
    }
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */ /* 3 */
  tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
  :root {
    --background: 0 0% 100%;
    --foreground: 0 0% 3.9%;
    --card: 0 0% 100%;
    --card-foreground: 0 0% 3.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 3.9%;
    --primary: 0 0% 9%;
    --primary-foreground: 0 0% 98%;
    --secondary: 0 0% 96.1%;
    --secondary-foreground: 0 0% 9%;
    --muted: 0 0% 96.1%;
    --muted-foreground: 0 0% 45.1%;
    --accent: 0 0% 96.1%;
    --accent-foreground: 0 0% 9%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 0 0% 89.8%;
    --input: 0 0% 89.8%;
    --ring: 0 0% 3.9%;
    --chart-1: 12 76% 61%;
    --chart-2: 173 58% 39%;
    --chart-3: 197 37% 24%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
    --radius: 0.5rem;
  }
  * {
  border-color: hsl(0 0% 89.8%);
  border-color: hsl(var(--border));
}

  body {
  background-color: hsl(0 0% 100%);
  background-color: hsl(var(--background));
  color: hsl(0 0% 3.9%);
  color: hsl(var(--foreground));
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0px;
}
.inset-x-0 {
  left: 0px;
  right: 0px;
}
.inset-y-0 {
  top: 0px;
  bottom: 0px;
}
.-bottom-12 {
  bottom: -3rem;
}
.-left-12 {
  left: -3rem;
}
.-right-12 {
  right: -3rem;
}
.-top-12 {
  top: -3rem;
}
.bottom-0 {
  bottom: 0px;
}
.left-0 {
  left: 0px;
}
.left-1 {
  left: 0.25rem;
}
.left-1\/2 {
  left: 50%;
}
.left-2 {
  left: 0.5rem;
}
.left-\[50\%\] {
  left: 50%;
}
.right-0 {
  right: 0px;
}
.right-1 {
  right: 0.25rem;
}
.right-2 {
  right: 0.5rem;
}
.right-4 {
  right: 1rem;
}
.top-0 {
  top: 0px;
}
.top-1 {
  top: 0.25rem;
}
.top-1\/2 {
  top: 50%;
}
.top-4 {
  top: 1rem;
}
.top-\[1px\] {
  top: 1px;
}
.top-\[50\%\] {
  top: 50%;
}
.top-\[60\%\] {
  top: 60%;
}
.top-full {
  top: 100%;
}
.z-10 {
  z-index: 10;
}
.z-50 {
  z-index: 50;
}
.z-\[100\] {
  z-index: 100;
}
.z-\[1\] {
  z-index: 1;
}
.-mx-1 {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.-ml-4 {
  margin-left: -1rem;
}
.-mt-4 {
  margin-top: -1rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-auto {
  margin-left: auto;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mt-1\.5 {
  margin-top: 0.375rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-24 {
  margin-top: 6rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-auto {
  margin-top: auto;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.h-1\.5 {
  height: 0.375rem;
}
.h-10 {
  height: 2.5rem;
}
.h-2 {
  height: 0.5rem;
}
.h-2\.5 {
  height: 0.625rem;
}
.h-3 {
  height: 0.75rem;
}
.h-3\.5 {
  height: 0.875rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-7 {
  height: 1.75rem;
}
.h-8 {
  height: 2rem;
}
.h-9 {
  height: 2.25rem;
}
.h-\[1px\] {
  height: 1px;
}
.h-\[var\(--radix-navigation-menu-viewport-height\)\] {
  height: var(--radix-navigation-menu-viewport-height);
}
.h-\[var\(--radix-select-trigger-height\)\] {
  height: var(--radix-select-trigger-height);
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.h-px {
  height: 1px;
}
.max-h-\[--radix-context-menu-content-available-height\] {
  max-height: var(--radix-context-menu-content-available-height);
}
.max-h-\[--radix-select-content-available-height\] {
  max-height: var(--radix-select-content-available-height);
}
.max-h-\[300px\] {
  max-height: 300px;
}
.max-h-\[var\(--radix-dropdown-menu-content-available-height\)\] {
  max-height: var(--radix-dropdown-menu-content-available-height);
}
.max-h-screen {
  max-height: 100vh;
}
.min-h-\[60px\] {
  min-height: 60px;
}
.w-10 {
  width: 2.5rem;
}
.w-2 {
  width: 0.5rem;
}
.w-2\.5 {
  width: 0.625rem;
}
.w-3 {
  width: 0.75rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-3\/4 {
  width: 75%;
}
.w-4 {
  width: 1rem;
}
.w-64 {
  width: 16rem;
}
.w-7 {
  width: 1.75rem;
}
.w-72 {
  width: 18rem;
}
.w-8 {
  width: 2rem;
}
.w-9 {
  width: 2.25rem;
}
.w-\[100px\] {
  width: 100px;
}
.w-\[1px\] {
  width: 1px;
}
.w-full {
  width: 100%;
}
.w-max {
  width: -webkit-max-content;
  width: max-content;
}
.w-px {
  width: 1px;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-10 {
  min-width: 2.5rem;
}
.min-w-8 {
  min-width: 2rem;
}
.min-w-9 {
  min-width: 2.25rem;
}
.min-w-\[12rem\] {
  min-width: 12rem;
}
.min-w-\[8rem\] {
  min-width: 8rem;
}
.min-w-\[var\(--radix-select-trigger-width\)\] {
  min-width: var(--radix-select-trigger-width);
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-max {
  max-width: -webkit-max-content;
  max-width: max-content;
}
.flex-1 {
  flex: 1 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.grow {
  flex-grow: 1;
}
.grow-0 {
  flex-grow: 0;
}
.basis-full {
  flex-basis: 100%;
}
.caption-bottom {
  caption-side: bottom;
}
.border-collapse {
  border-collapse: collapse;
}
.origin-\[--radix-context-menu-content-transform-origin\] {
  transform-origin: var(--radix-context-menu-content-transform-origin);
}
.origin-\[--radix-dropdown-menu-content-transform-origin\] {
  transform-origin: var(--radix-dropdown-menu-content-transform-origin);
}
.origin-\[--radix-hover-card-content-transform-origin\] {
  transform-origin: var(--radix-hover-card-content-transform-origin);
}
.origin-\[--radix-menubar-content-transform-origin\] {
  transform-origin: var(--radix-menubar-content-transform-origin);
}
.origin-\[--radix-popover-content-transform-origin\] {
  transform-origin: var(--radix-popover-content-transform-origin);
}
.origin-\[--radix-select-content-transform-origin\] {
  transform-origin: var(--radix-select-content-transform-origin);
}
.origin-\[--radix-tooltip-content-transform-origin\] {
  transform-origin: var(--radix-tooltip-content-transform-origin);
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-50\%\] {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[-50\%\] {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-45 {
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90 {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes pulse {

  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.cursor-default {
  cursor: default;
}
.cursor-pointer {
  cursor: pointer;
}
.touch-none {
  touch-action: none;
}
.select-none {
  -webkit-user-select: none;
          user-select: none;
}
.resize {
  resize: both;
}
.list-none {
  list-style-type: none;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.break-words {
  overflow-wrap: break-word;
}
.rounded-\[inherit\] {
  border-radius: inherit;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
  border-radius: var(--radius);
}
.rounded-md {
  border-radius: calc(0.5rem - 2px);
  border-radius: calc(var(--radius) - 2px);
}
.rounded-sm {
  border-radius: calc(0.5rem - 4px);
  border-radius: calc(var(--radius) - 4px);
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-t-\[10px\] {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.rounded-tl-sm {
  border-top-left-radius: calc(0.5rem - 4px);
  border-top-left-radius: calc(var(--radius) - 4px);
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-l {
  border-left-width: 1px;
}
.border-r {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-destructive {
  border-color: hsl(0 84.2% 60.2%);
  border-color: hsl(var(--destructive));
}
.border-destructive\/50 {
  border-color: hsl(0 84.2% 60.2% / 0.5);
  border-color: hsl(var(--destructive) / 0.5);
}
.border-input {
  border-color: hsl(0 0% 89.8%);
  border-color: hsl(var(--input));
}
.border-primary {
  border-color: hsl(0 0% 9%);
  border-color: hsl(var(--primary));
}
.border-primary\/50 {
  border-color: hsl(0 0% 9% / 0.5);
  border-color: hsl(var(--primary) / 0.5);
}
.border-transparent {
  border-color: transparent;
}
.border-l-transparent {
  border-left-color: transparent;
}
.border-t-transparent {
  border-top-color: transparent;
}
.bg-accent {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--accent));
}
.bg-background {
  background-color: hsl(0 0% 100%);
  background-color: hsl(var(--background));
}
.bg-black\/80 {
  background-color: rgb(0 0 0 / 0.8);
}
.bg-border {
  background-color: hsl(0 0% 89.8%);
  background-color: hsl(var(--border));
}
.bg-card {
  background-color: hsl(0 0% 100%);
  background-color: hsl(var(--card));
}
.bg-destructive {
  background-color: hsl(0 84.2% 60.2%);
  background-color: hsl(var(--destructive));
}
.bg-foreground {
  background-color: hsl(0 0% 3.9%);
  background-color: hsl(var(--foreground));
}
.bg-muted {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--muted));
}
.bg-muted\/50 {
  background-color: hsl(0 0% 96.1% / 0.5);
  background-color: hsl(var(--muted) / 0.5);
}
.bg-popover {
  background-color: hsl(0 0% 100%);
  background-color: hsl(var(--popover));
}
.bg-primary {
  background-color: hsl(0 0% 9%);
  background-color: hsl(var(--primary));
}
.bg-primary\/10 {
  background-color: hsl(0 0% 9% / 0.1);
  background-color: hsl(var(--primary) / 0.1);
}
.bg-primary\/20 {
  background-color: hsl(0 0% 9% / 0.2);
  background-color: hsl(var(--primary) / 0.2);
}
.bg-secondary {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--secondary));
}
.bg-transparent {
  background-color: transparent;
}
.fill-current {
  fill: currentColor;
}
.fill-primary {
  fill: hsl(0 0% 9%);
  fill: hsl(var(--primary));
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-\[1px\] {
  padding: 1px;
}
.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-2\.5 {
  padding-left: 0.625rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-8 {
  padding-left: 2rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-2\.5 {
  padding-right: 0.625rem;
}
.pr-6 {
  padding-right: 1.5rem;
}
.pr-8 {
  padding-right: 2rem;
}
.pt-0 {
  padding-top: 0px;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-4 {
  padding-top: 1rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.align-middle {
  vertical-align: middle;
}
.text-\[0\.8rem\] {
  font-size: 0.8rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.leading-none {
  line-height: 1;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.text-accent-foreground {
  color: hsl(0 0% 9%);
  color: hsl(var(--accent-foreground));
}
.text-card-foreground {
  color: hsl(0 0% 3.9%);
  color: hsl(var(--card-foreground));
}
.text-current {
  color: currentColor;
}
.text-destructive {
  color: hsl(0 84.2% 60.2%);
  color: hsl(var(--destructive));
}
.text-destructive-foreground {
  color: hsl(0 0% 98%);
  color: hsl(var(--destructive-foreground));
}
.text-foreground {
  color: hsl(0 0% 3.9%);
  color: hsl(var(--foreground));
}
.text-foreground\/50 {
  color: hsl(0 0% 3.9% / 0.5);
  color: hsl(var(--foreground) / 0.5);
}
.text-muted-foreground {
  color: hsl(0 0% 45.1%);
  color: hsl(var(--muted-foreground));
}
.text-popover-foreground {
  color: hsl(0 0% 3.9%);
  color: hsl(var(--popover-foreground));
}
.text-primary {
  color: hsl(0 0% 9%);
  color: hsl(var(--primary));
}
.text-primary-foreground {
  color: hsl(0 0% 98%);
  color: hsl(var(--primary-foreground));
}
.text-secondary-foreground {
  color: hsl(0 0% 9%);
  color: hsl(var(--secondary-foreground));
}
.underline-offset-4 {
  text-underline-offset: 4px;
}
.opacity-0 {
  opacity: 0;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-90 {
  opacity: 0.9;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline {
  outline-style: solid;
}
.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-0 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-ring {
  --tw-ring-color: hsl(var(--ring));
}
.ring-offset-background {
  --tw-ring-offset-color: hsl(var(--background));
}
.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-1000 {
  transition-duration: 1000ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes enter {

  from {
    opacity: 1;
    opacity: var(--tw-enter-opacity, 1);
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotate(0);
    transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}
@keyframes exit {

  to {
    opacity: 1;
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotate(0);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}
.animate-in {
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.fade-in {
  --tw-enter-opacity: 0;
}
.fade-in-0 {
  --tw-enter-opacity: 0;
}
.fade-out {
  --tw-exit-opacity: 0;
}
.zoom-in-95 {
  --tw-enter-scale: .95;
}
.duration-1000 {
  animation-duration: 1000ms;
}
.duration-200 {
  animation-duration: 200ms;
}
.duration-300 {
  animation-duration: 300ms;
}
.ease-in-out {
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.running {
  animation-play-state: running;
}
.paused {
  animation-play-state: paused;
}

/* Import custom portfolio styles after Tailwind */

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

.file\:border-0::-webkit-file-upload-button {
  border-width: 0px;
}

.file\:border-0::file-selector-button {
  border-width: 0px;
}

.file\:bg-transparent::-webkit-file-upload-button {
  background-color: transparent;
}

.file\:bg-transparent::file-selector-button {
  background-color: transparent;
}

.file\:text-sm::-webkit-file-upload-button {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.file\:text-sm::file-selector-button {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.file\:font-medium::-webkit-file-upload-button {
  font-weight: 500;
}

.file\:font-medium::file-selector-button {
  font-weight: 500;
}

.file\:text-foreground::-webkit-file-upload-button {
  color: hsl(0 0% 3.9%);
  color: hsl(var(--foreground));
}

.file\:text-foreground::file-selector-button {
  color: hsl(0 0% 3.9%);
  color: hsl(var(--foreground));
}

.placeholder\:text-muted-foreground::placeholder {
  color: hsl(0 0% 45.1%);
  color: hsl(var(--muted-foreground));
}

.after\:absolute::after {
  content: var(--tw-content);
  position: absolute;
}

.after\:inset-y-0::after {
  content: var(--tw-content);
  top: 0px;
  bottom: 0px;
}

.after\:left-1\/2::after {
  content: var(--tw-content);
  left: 50%;
}

.after\:w-1::after {
  content: var(--tw-content);
  width: 0.25rem;
}

.after\:-translate-x-1\/2::after {
  content: var(--tw-content);
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.first\:rounded-l-md:first-child {
  border-top-left-radius: calc(0.5rem - 2px);
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(0.5rem - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}

.first\:border-l:first-child {
  border-left-width: 1px;
}

.last\:rounded-r-md:last-child {
  border-top-right-radius: calc(0.5rem - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(0.5rem - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}

.focus-within\:relative:focus-within {
  position: relative;
}

.focus-within\:z-20:focus-within {
  z-index: 20;
}

.hover\:bg-accent:hover {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--accent));
}

.hover\:bg-destructive\/80:hover {
  background-color: hsl(0 84.2% 60.2% / 0.8);
  background-color: hsl(var(--destructive) / 0.8);
}

.hover\:bg-destructive\/90:hover {
  background-color: hsl(0 84.2% 60.2% / 0.9);
  background-color: hsl(var(--destructive) / 0.9);
}

.hover\:bg-muted:hover {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--muted));
}

.hover\:bg-muted\/50:hover {
  background-color: hsl(0 0% 96.1% / 0.5);
  background-color: hsl(var(--muted) / 0.5);
}

.hover\:bg-primary:hover {
  background-color: hsl(0 0% 9%);
  background-color: hsl(var(--primary));
}

.hover\:bg-primary\/80:hover {
  background-color: hsl(0 0% 9% / 0.8);
  background-color: hsl(var(--primary) / 0.8);
}

.hover\:bg-primary\/90:hover {
  background-color: hsl(0 0% 9% / 0.9);
  background-color: hsl(var(--primary) / 0.9);
}

.hover\:bg-secondary:hover {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--secondary));
}

.hover\:bg-secondary\/80:hover {
  background-color: hsl(0 0% 96.1% / 0.8);
  background-color: hsl(var(--secondary) / 0.8);
}

.hover\:text-accent-foreground:hover {
  color: hsl(0 0% 9%);
  color: hsl(var(--accent-foreground));
}

.hover\:text-foreground:hover {
  color: hsl(0 0% 3.9%);
  color: hsl(var(--foreground));
}

.hover\:text-muted-foreground:hover {
  color: hsl(0 0% 45.1%);
  color: hsl(var(--muted-foreground));
}

.hover\:text-primary-foreground:hover {
  color: hsl(0 0% 98%);
  color: hsl(var(--primary-foreground));
}

.hover\:underline:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.hover\:opacity-100:hover {
  opacity: 1;
}

.focus\:bg-accent:focus {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--accent));
}

.focus\:bg-primary:focus {
  background-color: hsl(0 0% 9%);
  background-color: hsl(var(--primary));
}

.focus\:text-accent-foreground:focus {
  color: hsl(0 0% 9%);
  color: hsl(var(--accent-foreground));
}

.focus\:text-primary-foreground:focus {
  color: hsl(0 0% 98%);
  color: hsl(var(--primary-foreground));
}

.focus\:opacity-100:focus {
  opacity: 1;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-1:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-ring:focus {
  --tw-ring-color: hsl(var(--ring));
}

.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}

.focus-visible\:outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus-visible\:ring-1:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-visible\:ring-2:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-visible\:ring-ring:focus-visible {
  --tw-ring-color: hsl(var(--ring));
}

.focus-visible\:ring-offset-1:focus-visible {
  --tw-ring-offset-width: 1px;
}

.focus-visible\:ring-offset-2:focus-visible {
  --tw-ring-offset-width: 2px;
}

.focus-visible\:ring-offset-background:focus-visible {
  --tw-ring-offset-color: hsl(var(--background));
}

.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group.destructive .group-\[\.destructive\]\:border-muted\/40 {
  border-color: hsl(0 0% 96.1% / 0.4);
  border-color: hsl(var(--muted) / 0.4);
}

.group.toaster .group-\[\.toaster\]\:border-border {
  border-color: hsl(0 0% 89.8%);
  border-color: hsl(var(--border));
}

.group.toast .group-\[\.toast\]\:bg-muted {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--muted));
}

.group.toast .group-\[\.toast\]\:bg-primary {
  background-color: hsl(0 0% 9%);
  background-color: hsl(var(--primary));
}

.group.toaster .group-\[\.toaster\]\:bg-background {
  background-color: hsl(0 0% 100%);
  background-color: hsl(var(--background));
}

.group.destructive .group-\[\.destructive\]\:text-red-300 {
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / 1);
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}

.group.toast .group-\[\.toast\]\:text-muted-foreground {
  color: hsl(0 0% 45.1%);
  color: hsl(var(--muted-foreground));
}

.group.toast .group-\[\.toast\]\:text-primary-foreground {
  color: hsl(0 0% 98%);
  color: hsl(var(--primary-foreground));
}

.group.toaster .group-\[\.toaster\]\:text-foreground {
  color: hsl(0 0% 3.9%);
  color: hsl(var(--foreground));
}

.group.toaster .group-\[\.toaster\]\:shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.group.destructive .group-\[\.destructive\]\:hover\:border-destructive\/30:hover {
  border-color: hsl(0 84.2% 60.2% / 0.3);
  border-color: hsl(var(--destructive) / 0.3);
}

.group.destructive .group-\[\.destructive\]\:hover\:bg-destructive:hover {
  background-color: hsl(0 84.2% 60.2%);
  background-color: hsl(var(--destructive));
}

.group.destructive .group-\[\.destructive\]\:hover\:text-destructive-foreground:hover {
  color: hsl(0 0% 98%);
  color: hsl(var(--destructive-foreground));
}

.group.destructive .group-\[\.destructive\]\:hover\:text-red-50:hover {
  --tw-text-opacity: 1;
  color: rgb(254 242 242 / 1);
  color: rgb(254 242 242 / var(--tw-text-opacity, 1));
}

.group.destructive .group-\[\.destructive\]\:focus\:ring-destructive:focus {
  --tw-ring-color: hsl(var(--destructive));
}

.group.destructive .group-\[\.destructive\]\:focus\:ring-red-400:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity, 1));
}

.group.destructive .group-\[\.destructive\]\:focus\:ring-offset-red-600:focus {
  --tw-ring-offset-color: #dc2626;
}

.peer:disabled ~ .peer-disabled\:cursor-not-allowed {
  cursor: not-allowed;
}

.peer:disabled ~ .peer-disabled\:opacity-70 {
  opacity: 0.7;
}

.has-\[\:disabled\]\:opacity-50:has(:disabled) {
  opacity: 0.5;
}

.aria-selected\:bg-accent[aria-selected="true"] {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--accent));
}

.aria-selected\:bg-accent\/50[aria-selected="true"] {
  background-color: hsl(0 0% 96.1% / 0.5);
  background-color: hsl(var(--accent) / 0.5);
}

.aria-selected\:text-accent-foreground[aria-selected="true"] {
  color: hsl(0 0% 9%);
  color: hsl(var(--accent-foreground));
}

.aria-selected\:text-muted-foreground[aria-selected="true"] {
  color: hsl(0 0% 45.1%);
  color: hsl(var(--muted-foreground));
}

.aria-selected\:opacity-100[aria-selected="true"] {
  opacity: 1;
}

.data-\[disabled\=true\]\:pointer-events-none[data-disabled="true"] {
  pointer-events: none;
}

.data-\[disabled\]\:pointer-events-none[data-disabled] {
  pointer-events: none;
}

.data-\[panel-group-direction\=vertical\]\:h-px[data-panel-group-direction="vertical"] {
  height: 1px;
}

.data-\[panel-group-direction\=vertical\]\:w-full[data-panel-group-direction="vertical"] {
  width: 100%;
}

.data-\[side\=bottom\]\:translate-y-1[data-side="bottom"] {
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[side\=left\]\:-translate-x-1[data-side="left"] {
  --tw-translate-x: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[side\=right\]\:translate-x-1[data-side="right"] {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[side\=top\]\:-translate-y-1[data-side="top"] {
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[state\=checked\]\:translate-x-4[data-state="checked"] {
  --tw-translate-x: 1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[state\=unchecked\]\:translate-x-0[data-state="unchecked"] {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[swipe\=cancel\]\:translate-x-0[data-swipe="cancel"] {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe="end"] {
  --tw-translate-x: var(--radix-toast-swipe-end-x);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe="move"] {
  --tw-translate-x: var(--radix-toast-swipe-move-x);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes accordion-up {

  from {
    height: var(--radix-accordion-content-height);
  }

  to {
    height: 0;
  }
}

.data-\[state\=closed\]\:animate-accordion-up[data-state="closed"] {
  animation: accordion-up 0.2s ease-out;
}

@keyframes accordion-down {

  from {
    height: 0;
  }

  to {
    height: var(--radix-accordion-content-height);
  }
}

.data-\[state\=open\]\:animate-accordion-down[data-state="open"] {
  animation: accordion-down 0.2s ease-out;
}

.data-\[panel-group-direction\=vertical\]\:flex-col[data-panel-group-direction="vertical"] {
  flex-direction: column;
}

.data-\[selected\=true\]\:bg-accent[data-selected="true"] {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--accent));
}

.data-\[state\=active\]\:bg-background[data-state="active"] {
  background-color: hsl(0 0% 100%);
  background-color: hsl(var(--background));
}

.data-\[state\=checked\]\:bg-primary[data-state="checked"] {
  background-color: hsl(0 0% 9%);
  background-color: hsl(var(--primary));
}

.data-\[state\=on\]\:bg-accent[data-state="on"] {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--accent));
}

.data-\[state\=open\]\:bg-accent[data-state="open"] {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--accent));
}

.data-\[state\=open\]\:bg-accent\/50[data-state="open"] {
  background-color: hsl(0 0% 96.1% / 0.5);
  background-color: hsl(var(--accent) / 0.5);
}

.data-\[state\=open\]\:bg-secondary[data-state="open"] {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--secondary));
}

.data-\[state\=selected\]\:bg-muted[data-state="selected"] {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--muted));
}

.data-\[state\=unchecked\]\:bg-input[data-state="unchecked"] {
  background-color: hsl(0 0% 89.8%);
  background-color: hsl(var(--input));
}

.data-\[placeholder\]\:text-muted-foreground[data-placeholder] {
  color: hsl(0 0% 45.1%);
  color: hsl(var(--muted-foreground));
}

.data-\[selected\=true\]\:text-accent-foreground[data-selected="true"] {
  color: hsl(0 0% 9%);
  color: hsl(var(--accent-foreground));
}

.data-\[state\=active\]\:text-foreground[data-state="active"] {
  color: hsl(0 0% 3.9%);
  color: hsl(var(--foreground));
}

.data-\[state\=checked\]\:text-primary-foreground[data-state="checked"] {
  color: hsl(0 0% 98%);
  color: hsl(var(--primary-foreground));
}

.data-\[state\=on\]\:text-accent-foreground[data-state="on"] {
  color: hsl(0 0% 9%);
  color: hsl(var(--accent-foreground));
}

.data-\[state\=open\]\:text-accent-foreground[data-state="open"] {
  color: hsl(0 0% 9%);
  color: hsl(var(--accent-foreground));
}

.data-\[state\=open\]\:text-muted-foreground[data-state="open"] {
  color: hsl(0 0% 45.1%);
  color: hsl(var(--muted-foreground));
}

.data-\[disabled\=true\]\:opacity-50[data-disabled="true"] {
  opacity: 0.5;
}

.data-\[disabled\]\:opacity-50[data-disabled] {
  opacity: 0.5;
}

.data-\[state\=active\]\:shadow[data-state="active"] {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.data-\[swipe\=move\]\:transition-none[data-swipe="move"] {
  transition-property: none;
}

.data-\[state\=closed\]\:duration-300[data-state="closed"] {
  transition-duration: 300ms;
}

.data-\[state\=open\]\:duration-500[data-state="open"] {
  transition-duration: 500ms;
}

.data-\[motion\^\=from-\]\:animate-in[data-motion^="from-"] {
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}

.data-\[state\=open\]\:animate-in[data-state="open"] {
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}

.data-\[state\=visible\]\:animate-in[data-state="visible"] {
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}

.data-\[motion\^\=to-\]\:animate-out[data-motion^="to-"] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}

.data-\[state\=closed\]\:animate-out[data-state="closed"] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}

.data-\[state\=hidden\]\:animate-out[data-state="hidden"] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}

.data-\[swipe\=end\]\:animate-out[data-swipe="end"] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}

.data-\[motion\^\=from-\]\:fade-in[data-motion^="from-"] {
  --tw-enter-opacity: 0;
}

.data-\[motion\^\=to-\]\:fade-out[data-motion^="to-"] {
  --tw-exit-opacity: 0;
}

.data-\[state\=closed\]\:fade-out-0[data-state="closed"] {
  --tw-exit-opacity: 0;
}

.data-\[state\=closed\]\:fade-out-80[data-state="closed"] {
  --tw-exit-opacity: 0.8;
}

.data-\[state\=hidden\]\:fade-out[data-state="hidden"] {
  --tw-exit-opacity: 0;
}

.data-\[state\=open\]\:fade-in-0[data-state="open"] {
  --tw-enter-opacity: 0;
}

.data-\[state\=visible\]\:fade-in[data-state="visible"] {
  --tw-enter-opacity: 0;
}

.data-\[state\=closed\]\:zoom-out-95[data-state="closed"] {
  --tw-exit-scale: .95;
}

.data-\[state\=open\]\:zoom-in-90[data-state="open"] {
  --tw-enter-scale: .9;
}

.data-\[state\=open\]\:zoom-in-95[data-state="open"] {
  --tw-enter-scale: .95;
}

.data-\[motion\=from-end\]\:slide-in-from-right-52[data-motion="from-end"] {
  --tw-enter-translate-x: 13rem;
}

.data-\[motion\=from-start\]\:slide-in-from-left-52[data-motion="from-start"] {
  --tw-enter-translate-x: -13rem;
}

.data-\[motion\=to-end\]\:slide-out-to-right-52[data-motion="to-end"] {
  --tw-exit-translate-x: 13rem;
}

.data-\[motion\=to-start\]\:slide-out-to-left-52[data-motion="to-start"] {
  --tw-exit-translate-x: -13rem;
}

.data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"] {
  --tw-enter-translate-y: -0.5rem;
}

.data-\[side\=left\]\:slide-in-from-right-2[data-side="left"] {
  --tw-enter-translate-x: 0.5rem;
}

.data-\[side\=right\]\:slide-in-from-left-2[data-side="right"] {
  --tw-enter-translate-x: -0.5rem;
}

.data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"] {
  --tw-enter-translate-y: 0.5rem;
}

.data-\[state\=closed\]\:slide-out-to-bottom[data-state="closed"] {
  --tw-exit-translate-y: 100%;
}

.data-\[state\=closed\]\:slide-out-to-left[data-state="closed"] {
  --tw-exit-translate-x: -100%;
}

.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state="closed"] {
  --tw-exit-translate-x: -50%;
}

.data-\[state\=closed\]\:slide-out-to-right[data-state="closed"] {
  --tw-exit-translate-x: 100%;
}

.data-\[state\=closed\]\:slide-out-to-right-full[data-state="closed"] {
  --tw-exit-translate-x: 100%;
}

.data-\[state\=closed\]\:slide-out-to-top[data-state="closed"] {
  --tw-exit-translate-y: -100%;
}

.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state="closed"] {
  --tw-exit-translate-y: -48%;
}

.data-\[state\=open\]\:slide-in-from-bottom[data-state="open"] {
  --tw-enter-translate-y: 100%;
}

.data-\[state\=open\]\:slide-in-from-left[data-state="open"] {
  --tw-enter-translate-x: -100%;
}

.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state="open"] {
  --tw-enter-translate-x: -50%;
}

.data-\[state\=open\]\:slide-in-from-right[data-state="open"] {
  --tw-enter-translate-x: 100%;
}

.data-\[state\=open\]\:slide-in-from-top[data-state="open"] {
  --tw-enter-translate-y: -100%;
}

.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state="open"] {
  --tw-enter-translate-y: -48%;
}

.data-\[state\=open\]\:slide-in-from-top-full[data-state="open"] {
  --tw-enter-translate-y: -100%;
}

.data-\[state\=closed\]\:duration-300[data-state="closed"] {
  animation-duration: 300ms;
}

.data-\[state\=open\]\:duration-500[data-state="open"] {
  animation-duration: 500ms;
}

.data-\[panel-group-direction\=vertical\]\:after\:left-0[data-panel-group-direction="vertical"]::after {
  content: var(--tw-content);
  left: 0px;
}

.data-\[panel-group-direction\=vertical\]\:after\:h-1[data-panel-group-direction="vertical"]::after {
  content: var(--tw-content);
  height: 0.25rem;
}

.data-\[panel-group-direction\=vertical\]\:after\:w-full[data-panel-group-direction="vertical"]::after {
  content: var(--tw-content);
  width: 100%;
}

.data-\[panel-group-direction\=vertical\]\:after\:-translate-y-1\/2[data-panel-group-direction="vertical"]::after {
  content: var(--tw-content);
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[panel-group-direction\=vertical\]\:after\:translate-x-0[data-panel-group-direction="vertical"]::after {
  content: var(--tw-content);
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[state\=open\]\:hover\:bg-accent:hover[data-state="open"] {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--accent));
}

.data-\[state\=open\]\:focus\:bg-accent:focus[data-state="open"] {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--accent));
}

.group[data-state="open"] .group-data-\[state\=open\]\:rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.dark\:border-destructive:is(.dark *) {
  border-color: hsl(0 84.2% 60.2%);
  border-color: hsl(var(--destructive));
}

@media (min-width: 640px) {

  .sm\:bottom-0 {
    bottom: 0px;
  }

  .sm\:right-0 {
    right: 0px;
  }

  .sm\:top-auto {
    top: auto;
  }

  .sm\:mt-0 {
    margin-top: 0px;
  }

  .sm\:max-w-sm {
    max-width: 24rem;
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:flex-col {
    flex-direction: column;
  }

  .sm\:justify-end {
    justify-content: flex-end;
  }

  .sm\:gap-2\.5 {
    gap: 0.625rem;
  }

  .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .sm\:rounded-lg {
    border-radius: 0.5rem;
    border-radius: var(--radius);
  }

  .sm\:text-left {
    text-align: left;
  }

  .data-\[state\=open\]\:sm\:slide-in-from-bottom-full[data-state="open"] {
    --tw-enter-translate-y: 100%;
  }
}

@media (min-width: 768px) {

  .md\:absolute {
    position: absolute;
  }

  .md\:w-\[var\(--radix-navigation-menu-viewport-width\)\] {
    width: var(--radix-navigation-menu-viewport-width);
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:max-w-\[420px\] {
    max-width: 420px;
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.\[\&\+div\]\:text-xs+div {
  font-size: 0.75rem;
  line-height: 1rem;
}

.\[\&\:has\(\>\.day-range-end\)\]\:rounded-r-md:has(>.day-range-end) {
  border-top-right-radius: calc(0.5rem - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(0.5rem - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}

.\[\&\:has\(\>\.day-range-start\)\]\:rounded-l-md:has(>.day-range-start) {
  border-top-left-radius: calc(0.5rem - 2px);
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(0.5rem - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}

.\[\&\:has\(\[aria-selected\]\)\]\:rounded-md:has([aria-selected]) {
  border-radius: calc(0.5rem - 2px);
  border-radius: calc(var(--radius) - 2px);
}

.\[\&\:has\(\[aria-selected\]\)\]\:bg-accent:has([aria-selected]) {
  background-color: hsl(0 0% 96.1%);
  background-color: hsl(var(--accent));
}

.first\:\[\&\:has\(\[aria-selected\]\)\]\:rounded-l-md:has([aria-selected]):first-child {
  border-top-left-radius: calc(0.5rem - 2px);
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(0.5rem - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}

.last\:\[\&\:has\(\[aria-selected\]\)\]\:rounded-r-md:has([aria-selected]):last-child {
  border-top-right-radius: calc(0.5rem - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(0.5rem - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}

.\[\&\:has\(\[aria-selected\]\.day-outside\)\]\:bg-accent\/50:has([aria-selected].day-outside) {
  background-color: hsl(0 0% 96.1% / 0.5);
  background-color: hsl(var(--accent) / 0.5);
}

.\[\&\:has\(\[aria-selected\]\.day-range-end\)\]\:rounded-r-md:has([aria-selected].day-range-end) {
  border-top-right-radius: calc(0.5rem - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(0.5rem - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}

.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]) {
  padding-right: 0px;
}

.\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\]>[role=checkbox] {
  --tw-translate-y: 2px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.\[\&\>span\]\:line-clamp-1>span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.\[\&\>svg\+div\]\:translate-y-\[-3px\]>svg+div {
  --tw-translate-y: -3px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.\[\&\>svg\]\:absolute>svg {
  position: absolute;
}

.\[\&\>svg\]\:left-4>svg {
  left: 1rem;
}

.\[\&\>svg\]\:top-4>svg {
  top: 1rem;
}

.\[\&\>svg\]\:size-4>svg {
  width: 1rem;
  height: 1rem;
}

.\[\&\>svg\]\:h-3\.5>svg {
  height: 0.875rem;
}

.\[\&\>svg\]\:w-3\.5>svg {
  width: 0.875rem;
}

.\[\&\>svg\]\:shrink-0>svg {
  flex-shrink: 0;
}

.\[\&\>svg\]\:text-destructive>svg {
  color: hsl(0 84.2% 60.2%);
  color: hsl(var(--destructive));
}

.\[\&\>svg\]\:text-foreground>svg {
  color: hsl(0 0% 3.9%);
  color: hsl(var(--foreground));
}

.\[\&\>svg\~\*\]\:pl-7>svg~* {
  padding-left: 1.75rem;
}

.\[\&\>tr\]\:last\:border-b-0:last-child>tr {
  border-bottom-width: 0px;
}

.\[\&\[data-panel-group-direction\=vertical\]\>div\]\:rotate-90[data-panel-group-direction=vertical]>div {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading] {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading] {
  font-size: 0.75rem;
  line-height: 1rem;
}

.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading] {
  font-weight: 500;
}

.\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground [cmdk-group-heading] {
  color: hsl(0 0% 45.1%);
  color: hsl(var(--muted-foreground));
}

.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden]) ~[cmdk-group] {
  padding-top: 0px;
}

.\[\&_\[cmdk-group\]\]\:px-2 [cmdk-group] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5 [cmdk-input-wrapper] svg {
  height: 1.25rem;
}

.\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5 [cmdk-input-wrapper] svg {
  width: 1.25rem;
}

.\[\&_\[cmdk-input\]\]\:h-12 [cmdk-input] {
  height: 3rem;
}

.\[\&_\[cmdk-item\]\]\:px-2 [cmdk-item] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.\[\&_\[cmdk-item\]\]\:py-3 [cmdk-item] {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.\[\&_\[cmdk-item\]_svg\]\:h-5 [cmdk-item] svg {
  height: 1.25rem;
}

.\[\&_\[cmdk-item\]_svg\]\:w-5 [cmdk-item] svg {
  width: 1.25rem;
}

.\[\&_p\]\:leading-relaxed p {
  line-height: 1.625;
}

.\[\&_svg\]\:pointer-events-none svg {
  pointer-events: none;
}

.\[\&_svg\]\:size-4 svg {
  width: 1rem;
  height: 1rem;
}

.\[\&_svg\]\:shrink-0 svg {
  flex-shrink: 0;
}

.\[\&_tr\:last-child\]\:border-0 tr:last-child {
  border-width: 0px;
}

.\[\&_tr\]\:border-b tr {
  border-bottom-width: 1px;
}
/* ==============================================
   HOLOGRAPHIC BADGE - Lightweight 3D Element
   Much more performant than 3D cube
   ============================================== */

.holo-badge-container {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer rotating ring - CSS only, no 3D transforms */
.outer-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.ring-segment {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 50%;
}

.ring-segment.seg-1 {
  border-top-color: var(--brand-primary);
  border-right-color: var(--brand-primary);
  opacity: 0.8;
}

.ring-segment.seg-2 {
  border-bottom-color: var(--accent);
  border-left-color: var(--accent);
  opacity: 0.6;
  animation: ringPulse 3s ease-in-out infinite;
}

.ring-segment.seg-3 {
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  border-top-color: rgba(0, 255, 209, 0.4);
  border-left-color: rgba(0, 255, 209, 0.4);
  animation: ringRotate 15s linear infinite reverse;
}

.ring-segment.seg-4 {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-bottom-color: rgba(0, 212, 255, 0.3);
  border-right-color: rgba(0, 212, 255, 0.3);
  animation: ringRotate 25s linear infinite;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* Badge core - the main content area */
.badge-core {
  position: absolute;
  width: 72%;
  height: 72%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(0, 20, 40, 0.95) 0%,
    rgba(0, 10, 20, 0.98) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 255, 209, 0.3);
  overflow: visible;
}

.core-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center,
    rgba(0, 255, 209, 0.15) 0%,
    transparent 80%);
  pointer-events: none;
}

.badge-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 15px;
  width: 85%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ==============================================
   IDENTITY CONTENT (Mobile version)
   ============================================== */

.identity-content {
  display: none; /* Hidden by default on desktop */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  overflow: visible;
}

.identity-name {
  font-size: 12px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  font-family: 'Orbitron', 'KodeMono', monospace;
  margin-bottom: 6px;
  white-space: nowrap;
  line-height: 1.4;
}

.identity-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--brand-primary), 
    transparent);
  margin: 8px 0;
}

.identity-role {
  font-size: 9px;
  font-weight: 600;
  color: var(--brand-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-shadow: 0 0 10px var(--brand-primary);
  white-space: nowrap;
  line-height: 1.3;
}

.identity-sub {
  font-size: 9px;
  font-weight: 600;
  color: #00d4ff;
  letter-spacing: 1px;
  opacity: 1;
  margin-top: 6px;
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

/* ==============================================
   CODE CONTENT (Desktop version)
   ============================================== */

.code-content {
  display: flex; /* Visible by default on desktop */
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Code block styling */
.code-block {
  font-family: 'Fira Code', 'Consolas', 'Monaco', monospace;
  font-size: 10px;
  line-height: 1.5;
  background: transparent;
  padding: 10px 12px;
  border-radius: 6px;
  border: none;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* Animated code block */
.code-block.animated-code {
  position: relative;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Each animated line */
.code-line-animated {
  position: absolute;
  opacity: 0;
  transform: translateY(10px);
  font-size: 12px;
  white-space: nowrap;
}

/* Animation keyframes - 9s total cycle (3s per line) */
@keyframes showLine1 {
  0%, 2% { opacity: 0; transform: translateY(10px); }
  5%, 30% { opacity: 1; transform: translateY(0); }
  33%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes showLine2 {
  0%, 33% { opacity: 0; transform: translateY(10px); }
  36%, 63% { opacity: 1; transform: translateY(0); }
  66%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes showLine3 {
  0%, 66% { opacity: 0; transform: translateY(10px); }
  69%, 96% { opacity: 1; transform: translateY(0); }
  99%, 100% { opacity: 0; transform: translateY(-10px); }
}

.code-line-animated.line-1 {
  animation: showLine1 9s ease-in-out infinite;
}

.code-line-animated.line-2 {
  animation: showLine2 9s ease-in-out infinite;
}

.code-line-animated.line-3 {
  animation: showLine3 9s ease-in-out infinite;
}

.code-line {
  display: block;
  white-space: nowrap;
}

.code-line.indent {
  padding-left: 12px;
}

.code-keyword {
  color: #ff79c6;
}

.code-var {
  color: #50fa7b;
}

.code-operator {
  color: #ff79c6;
}

.code-brace {
  color: #f1fa8c;
}

.code-prop {
  color: #8be9fd;
}

.code-string {
  color: #f1fa8c;
}

.code-bool {
  color: #bd93f9;
}

.code-number {
  color: #bd93f9;
}

.code-comma,
.code-semicolon {
  color: rgba(255, 255, 255, 0.6);
}

/* Status bar */
.status-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 8px;
  width: 100%;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #50fa7b;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px #50fa7b;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.status-text {
  font-size: 10px;
  color: var(--brand-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Orbiting dots - simple animation */
.badge-orbit-path {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: orbitRotate 8s linear infinite;
}

@keyframes orbitRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.badge-orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-primary);
}

.badge-orbit-dot.dot-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.badge-orbit-dot.dot-2 {
  bottom: 15%;
  left: 10%;
}

.badge-orbit-dot.dot-3 {
  bottom: 15%;
  right: 10%;
}

/* Simple scan line */
.scan-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--brand-primary), 
    transparent);
  top: 50%;
  left: 0;
  opacity: 0.5;
  animation: scanMove 4s ease-in-out infinite;
}

@keyframes scanMove {
  0%, 100% { 
    transform: translateY(-50px) scaleX(0.8);
    opacity: 0.2;
  }
  50% { 
    transform: translateY(50px) scaleX(1);
    opacity: 0.6;
  }
}

/* ==============================================
   LARGE VERSION
   ============================================== */

.holo-badge-container.large-version {
  width: 500px;
  height: 500px;
}

.holo-badge-container.large-version .badge-content {
  padding: 20px;
  width: 90%;
}

.holo-badge-container.large-version .code-block {
  font-size: 13px;
  padding: 14px 16px;
  line-height: 1.6;
}

.holo-badge-container.large-version .code-line.indent {
  padding-left: 18px;
}

.holo-badge-container.large-version .status-bar {
  margin-top: 16px;
  padding-top: 14px;
}

.holo-badge-container.large-version .status-dot {
  width: 10px;
  height: 10px;
}

.holo-badge-container.large-version .status-text {
  font-size: 12px;
  letter-spacing: 1.5px;
}

.holo-badge-container.large-version .badge-orbit-dot {
  width: 8px;
  height: 8px;
}

.holo-badge-container.large-version .ring-segment {
  border-width: 3px;
}

/* ==============================================
   RESPONSIVE
   ============================================== */

@media (max-width: 768px) {
  .holo-badge-container {
    width: 240px;
    height: 240px;
  }
  
  .badge-core {
    width: 75%;
    height: 75%;
  }

  /* SWAP CONTENT: Show identity, hide code on mobile */
  .identity-content {
    display: flex !important;
  }
  
  .code-content {
    display: none !important;
  }

  /* Identity styling for mobile */
  .identity-name {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .identity-role {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .identity-sub {
    font-size: 8px;
  }

  .identity-divider {
    width: 50px;
    margin: 8px 0;
  }

  .code-block {
    font-size: 9px;
    padding: 8px;
  }

  .code-line.indent {
    padding-left: 12px;
  }

  .status-text {
    font-size: 8px;
  }

  .holo-badge-container.large-version {
    width: 280px;
    height: 280px;
  }

  .holo-badge-container.large-version .identity-name {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .holo-badge-container.large-version .identity-role {
    font-size: 11px;
  }

  .holo-badge-container.large-version .identity-sub {
    font-size: 9px;
  }

  .holo-badge-container.large-version .identity-divider {
    width: 60px;
    margin: 10px 0;
  }

  .holo-badge-container.large-version .code-block {
    font-size: 11px;
    padding: 12px;
  }

  .holo-badge-container.large-version .status-text {
    font-size: 9px;
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .holo-badge-container {
    width: 210px;
    height: 210px;
  }
  
  .badge-core {
    width: 78%;
    height: 78%;
  }

  .identity-name {
    font-size: 12px;
    letter-spacing: 0.8px;
  }

  .identity-role {
    font-size: 9px;
  }

  .identity-sub {
    font-size: 7px;
  }

  .identity-divider {
    width: 40px;
  }

  .identity-status .status-text {
    font-size: 7px;
  }
}

/* ==============================================
   REDUCED MOTION
   ============================================== */

@media (prefers-reduced-motion: reduce) {
  .outer-ring,
  .badge-orbit-path,
  .ring-segment.seg-3,
  .ring-segment.seg-4 {
    animation: none;
  }

  .scan-line {
    animation: none;
    opacity: 0.3;
  }

  .badge-divider {
    animation: none;
  }
}

.admin-login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0f 0%, #0d1117 50%, #161b22 100%);
    position: relative;
    overflow: hidden;
}

.admin-login-box {
    background: rgba(13, 17, 23, 0.9);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 10;
    box-shadow:
        0 0 60px rgba(0, 255, 136, 0.1),
        inset 0 0 60px rgba(0, 255, 136, 0.02);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.lock-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

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

.login-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    color: #00ff88;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.login-header p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input {
    width: 100%;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: 'JetBrains Mono', monospace;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.input-group input::placeholder {
    color: #555;
}

.input-glow {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    transition: width 0.3s ease;
}

.input-group input:focus+.input-glow {
    width: 100%;
}

.error-message {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

button[type="submit"] {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.1));
    border: 1px solid #00ff88;
    border-radius: 12px;
    color: #00ff88;
    font-size: 16px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

button[type="submit"]:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 255, 136, 0.2));
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

button[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-top-color: #00ff88;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.login-footer {
    text-align: center;
    margin-top: 30px;
}

.login-footer p {
    color: #444;
    font-size: 12px;
    margin: 0;
}

/* Background Effects */
.background-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: #00ff88;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: #00aaff;
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 30px);
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .admin-login-box {
        margin: 20px;
        padding: 40px 25px;
    }

    .login-header h1 {
        font-size: 22px;
    }
}
.analytics-dashboard {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0f 0%, #0d1117 50%, #161b22 100%);
    color: #fff;
    padding: 30px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

/* Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.last-updated {
    font-size: 12px;
    color: #666;
}

.settings-updated {
    font-size: 12px;
    color: #00aaff;
    background: rgba(0, 170, 255, 0.1);
    border: 1px solid rgba(0, 170, 255, 0.3);
    padding: 6px 10px;
    border-radius: 8px;
}

.dashboard-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: #00ff88;
    margin: 0;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #00ff88;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.logout-btn {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff6666;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(255, 68, 68, 0.2);
}

.tracking-btn {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tracking-btn.paused {
    background: rgba(255, 170, 0, 0.1);
    border-color: rgba(255, 170, 0, 0.3);
    color: #ffb347;
}

.tracking-btn:hover:not(:disabled) {
    box-shadow: 0 0 18px rgba(0, 255, 136, 0.2);
}

.tracking-btn.paused:hover:not(:disabled) {
    box-shadow: 0 0 18px rgba(255, 170, 0, 0.2);
}

.tracking-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.tracking-btn.dev-toggle {
    background: rgba(0, 170, 255, 0.1);
    border-color: rgba(0, 170, 255, 0.3);
    color: #00aaff;
}

.tracking-btn.dev-toggle.paused {
    background: rgba(255, 170, 0, 0.1);
    border-color: rgba(255, 170, 0, 0.3);
    color: #ffb347;
}

.tracking-btn.dev-toggle:hover:not(:disabled) {
    box-shadow: 0 0 18px rgba(0, 170, 255, 0.2);
}

/* Stats Grid - Scoped to analytics dashboard to override App.css conflicts */
.analytics-dashboard .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    grid-gap: 15px;
    gap: 15px;
    margin-bottom: 25px;
    background: transparent !important;
}

.analytics-dashboard .stat-card {
    background: rgba(13, 17, 23, 0.9) !important;
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 12px;
    padding: 18px 15px;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    opacity: 1 !important;
    transform: none !important;
    min-height: 70px;
}

.analytics-dashboard .stat-card:hover {
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.analytics-dashboard .stat-card.primary {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 255, 136, 0.05)) !important;
    border-color: rgba(0, 255, 136, 0.4);
}

.analytics-dashboard .stat-card.trend-card .stat-value.positive {
    color: #00ff88;
}

.analytics-dashboard .stat-card.trend-card .stat-value.negative {
    color: #ff6666;
}

.analytics-dashboard .stat-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analytics-dashboard .stat-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    min-width: 0;
    flex: 1 1;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.analytics-dashboard .stat-value {
    font-size: 22px;
    font-weight: 700;
    color: #fff !important;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.2;
    margin: 0 0 2px 0 !important;
}

.analytics-dashboard .stat-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin: 0 !important;
}

/* Live Section */
.live-section {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
}

.live-section h2 {
    font-size: 18px;
    color: #00ff88;
    margin: 0 0 15px 0;
}

.live-viewers {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.live-viewer-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.referrer-badge {
    background: rgba(0, 255, 136, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px;
    border-radius: 12px;
    width: -webkit-fit-content;
    width: fit-content;
    flex-wrap: wrap;
}

.tab {
    background: transparent;
    border: none;
    color: #888;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab:hover {
    color: #fff;
}

.tab.active {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
}

/* Quick Stats Row */
.quick-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 15px;
    gap: 15px;
    margin-bottom: 25px;
}

.quick-stat {
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-stat-icon {
    font-size: 28px;
}

.quick-stat-content {
    display: flex;
    flex-direction: column;
}

.quick-stat-value {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.quick-stat-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

/* Overview Grid */
.overview-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    gap: 20px;
}

/* Analytics Grid */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 20px;
    gap: 20px;
}

.data-card {
    background: rgba(13, 17, 23, 0.9);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: 16px;
    padding: 22px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}

.data-card.wide {
    grid-column: 1 / -1;
}

.data-card h3 {
    margin: 0 0 18px 0;
    font-size: 15px;
    color: #00ff88;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Device Breakdown */
.device-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.device-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.device-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.device-icon {
    font-size: 20px;
}

.device-name {
    color: #ccc;
    font-size: 14px;
}

.device-stats {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.device-count {
    color: #fff;
    font-weight: 600;
}

.device-percentage {
    color: #00ff88;
}

.device-bar-bg {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.device-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Browser Breakdown */
.browser-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.browser-item-small {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.browser-icon {
    font-size: 18px;
}

.browser-name {
    flex: 1 1;
    color: #ccc;
    font-size: 13px;
}

.browser-stat {
    font-weight: 600;
    font-size: 14px;
}

/* Recent Activity */
.recent-activity {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.activity-item:hover {
    background: rgba(0, 255, 136, 0.05);
}

.activity-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.activity-details {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.activity-location {
    font-size: 14px;
    color: #fff;
}

.activity-source {
    font-size: 12px;
    color: #888;
}

.activity-time {
    font-size: 11px;
    color: #666;
    white-space: nowrap;
}

/* Bar Chart */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar-label {
    width: 110px;
    font-size: 13px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bar-container {
    flex: 1 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bar {
    height: 22px;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    border-radius: 4px;
    min-width: 4px;
    transition: width 0.5s ease;
}

.bar.country-bar {
    background: linear-gradient(90deg, #00aaff, #0088cc);
}

.bar.city-bar {
    background: linear-gradient(90deg, #ffd93d, #f9a825);
}

.bar-value {
    font-size: 13px;
    color: #888;
    min-width: 30px;
}

/* Simple Chart (7 days) */
.simple-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 180px;
    padding: 15px 0;
}

.chart-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1 1;
    height: 100%;
}

.chart-bar {
    width: 35px;
    background: linear-gradient(180deg, #00ff88, rgba(0, 136, 80, 0.5));
    border-radius: 5px 5px 0 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 6px;
    min-height: 25px;
    transition: height 0.5s ease;
    margin-top: auto;
}

.chart-value {
    font-size: 11px;
    color: #fff;
    font-weight: 600;
}

.chart-label {
    font-size: 10px;
    color: #666;
}

/* Donut Chart */
.donut-chart-container {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 15px 0;
}

.donut-chart {
    width: 130px;
    height: 130px;
    transform: rotate(-90deg);
    flex-shrink: 0;
}

.donut-segment {
    transition: stroke-dasharray 0.5s ease;
}

.donut-center-text {
    font-size: 16px;
    fill: #fff;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    transform: rotate(90deg);
    transform-origin: center;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.legend-label {
    color: #aaa;
    flex: 1 1;
}

.legend-value {
    color: #00ff88;
    font-weight: 600;
}

/* Browser Chart */
.browser-chart {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.browser-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.browser-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.browser-percentage {
    color: #888;
}

.browser-bar-container {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.browser-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Hourly Chart */
.hourly-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100px;
    padding: 15px 0 25px;
    position: relative;
}

.hourly-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    flex: 1 1;
    position: relative;
}

.hourly-bar {
    width: 70%;
    max-width: 12px;
    background: linear-gradient(180deg, #00ff88, rgba(0, 255, 136, 0.3));
    border-radius: 2px 2px 0 0;
    transition: height 0.3s ease;
    margin-top: auto;
}

.hourly-bar:hover {
    background: linear-gradient(180deg, #00ffaa, rgba(0, 255, 136, 0.5));
}

.hourly-label {
    position: absolute;
    bottom: -20px;
    font-size: 9px;
    color: #666;
}

/* Projects Chart */
.projects-chart {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.project-item:hover {
    background: rgba(0, 255, 136, 0.1);
}

.project-rank {
    font-size: 14px;
    font-weight: bold;
    color: #00ff88;
    width: 28px;
}

.project-name {
    flex: 1 1;
    color: #ccc;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-clicks {
    font-size: 12px;
    color: #888;
    background: rgba(0, 255, 136, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
}

/* Visitor Summary */
.visitor-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 15px;
    gap: 15px;
    margin-bottom: 20px;
}

.summary-card {
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-icon {
    font-size: 28px;
}

.summary-content {
    display: flex;
    flex-direction: column;
}

.summary-value {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.summary-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

/* Visitors Table */
.visitors-table-container {
    overflow-x: auto;
    border-radius: 12px;
}

.visitors-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(13, 17, 23, 0.9);
    border-radius: 12px;
    overflow: hidden;
    min-width: 700px;
}

.visitors-table th,
.visitors-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.visitors-table th {
    background: rgba(0, 255, 136, 0.08);
    color: #00ff88;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.visitors-table td {
    font-size: 13px;
    color: #ccc;
}

.visitors-table tr:hover {
    background: rgba(0, 255, 136, 0.03);
}

.visitors-table tr.linkedin-row {
    background: rgba(0, 119, 181, 0.1);
}

.visitor-time .time-main {
    font-size: 12px;
}

.visitor-location {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-flag {
    font-size: 18px;
}

.location-text {
    display: flex;
    flex-direction: column;
}

.location-city {
    color: #fff;
    font-size: 13px;
}

.location-country {
    color: #888;
    font-size: 11px;
}

.device-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 12px;
}

.browser-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 12px;
    border-left: 2px solid;
}

.source-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.source-badge.linkedin {
    background: rgba(0, 119, 181, 0.2);
    color: #00aaff;
}

.source-badge.google {
    background: rgba(66, 133, 244, 0.2);
    color: #4285f4;
}

.source-badge.direct {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
}

.source-badge.github {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.path-badge {
    font-size: 11px;
    color: #666;
    font-family: monospace;
}

.no-data-cell {
    text-align: center;
    color: #666;
    padding: 40px !important;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    flex-wrap: wrap;
}

.pagination button {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.pagination button:hover:not(:disabled) {
    background: rgba(0, 255, 136, 0.2);
}

.pagination button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.pagination-info span {
    color: #888;
    font-size: 14px;
}

.pagination-total {
    font-size: 11px !important;
    color: #666 !important;
}

/* Events Section */
.events-section h3 {
    margin: 0 0 20px 0;
    color: #00ff88;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.events-count {
    font-size: 13px;
    color: #888;
    background: rgba(0, 255, 136, 0.1);
    padding: 5px 12px;
    border-radius: 6px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
    background: rgba(13, 17, 23, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.event-type {
    background: rgba(0, 255, 136, 0.1);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #00ff88;
    white-space: nowrap;
}

.event-data {
    flex: 1 1;
    color: #ccc;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.event-time {
    color: #666;
    font-size: 11px;
    white-space: nowrap;
}

.no-events,
.no-data {
    color: #666;
    text-align: center;
    padding: 40px;
}

/* Clicks Section */
.clicks-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.clicks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clicks-header h3 {
    margin: 0;
    color: #00ff88;
    font-size: 20px;
}

.clicks-count {
    font-size: 13px;
    color: #888;
    background: rgba(0, 255, 136, 0.1);
    padding: 5px 12px;
    border-radius: 6px;
}

/* Click Categories */
.click-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    grid-gap: 15px;
    gap: 15px;
}

.category-card {
    background: rgba(13, 17, 23, 0.9);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-icon {
    font-size: 24px;
}

.category-content {
    display: flex;
    flex-direction: column;
}

.category-value {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.category-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
}

/* Visits List */
.visits-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.visit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.visit-item:hover {
    background: rgba(0, 255, 136, 0.05);
}

.visit-path {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
}

.path-icon {
    font-size: 16px;
}

.path-text {
    color: #00ff88;
    font-family: monospace;
    font-size: 13px;
}

.visit-details {
    flex: 1 1;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #888;
}

.visit-device,
.visit-source,
.visit-location {
    display: flex;
    align-items: center;
    gap: 5px;
}

.visit-time {
    font-size: 11px;
    color: #666;
    white-space: nowrap;
}

/* Clicks List */
.clicks-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
}

.click-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.click-item:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.1);
}

.click-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.click-details {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.click-type {
    font-size: 12px;
    color: #00ff88;
    text-transform: capitalize;
    font-weight: 600;
}

.click-label {
    font-size: 13px;
    color: #ccc;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.click-time {
    font-size: 11px;
    color: #666;
    white-space: nowrap;
}

/* Insights Section */
.insights-section {
    padding: 10px 0;
}

.insights-header {
    margin-bottom: 25px;
}

.insights-header h2 {
    margin: 0;
    color: #00ff88;
    font-size: 22px;
}

.insights-subtitle {
    margin: 8px 0 0;
    color: #666;
    font-size: 13px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 15px;
    gap: 15px;
    margin-bottom: 35px;
}

.insight-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    background: rgba(13, 17, 23, 0.9);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 136, 0.25);
}

.insight-card.positive {
    border-left: 3px solid #00ff88;
}

.insight-card.negative {
    border-left: 3px solid #ff6666;
}

.insight-card.info {
    border-left: 3px solid #00aaff;
}

.insight-icon {
    font-size: 26px;
    flex-shrink: 0;
}

.insight-text {
    font-size: 13px;
    color: #ccc;
    line-height: 1.5;
}

/* Summary Section */
.summary-section {
    background: rgba(13, 17, 23, 0.9);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: 16px;
    padding: 22px;
}

.summary-section h3 {
    margin: 0 0 18px 0;
    color: #00ff88;
    font-size: 16px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    grid-gap: 15px;
    gap: 15px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.summary-item .summary-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

.summary-item .summary-value {
    font-size: 17px;
    color: #fff;
    font-weight: 600;
}

/* Refresh Button */
.refresh-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border: none;
    color: #000;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
    z-index: 100;
    font-family: inherit;
}

.refresh-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
}

.refresh-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    filter: grayscale(0.3);
    transform: none;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.15);
}

/* Loading */
.dashboard-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0f 0%, #0d1117 50%, #161b22 100%);
    color: #888;
}

.dashboard-loading .loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 255, 136, 0.2);
    border-top-color: #00ff88;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

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

    .donut-chart-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .analytics-dashboard {
        padding: 15px;
    }

    .dashboard-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .header-right {
        flex-direction: column;
        gap: 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-icon {
        font-size: 26px;
    }

    .stat-card {
        padding: 15px;
    }

    .tabs {
        width: 100%;
        justify-content: center;
    }

    .tab {
        padding: 10px 12px;
        font-size: 11px;
    }

    .refresh-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 18px;
    }

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

    .quick-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 15px;
    }

    .dashboard-header h1 {
        font-size: 20px;
    }

    .quick-stats-row {
        grid-template-columns: 1fr;
    }

    .visitor-summary {
        grid-template-columns: 1fr;
    }
}

/* Messages Section */
.messages-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.messages-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.messages-header h3 {
    margin: 0;
    color: #00ff88;
    font-size: 20px;
}

.messages-count {
    font-size: 13px;
    color: #888;
    background: rgba(0, 255, 136, 0.1);
    padding: 5px 12px;
    border-radius: 6px;
}

.no-messages {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-messages-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.no-messages p {
    margin: 5px 0;
}

.no-messages-hint {
    font-size: 13px;
    color: #555;
}

.messages-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message-card {
    background: rgba(13, 17, 23, 0.9);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.message-card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.message-card.new {
    border-left: 3px solid #00ff88;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.message-sender {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sender-icon {
    font-size: 24px;
}

.sender-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sender-name {
    font-weight: 600;
    color: #fff;
    font-size: 15px;
}

.sender-email {
    font-size: 13px;
    color: #00ff88;
    text-decoration: none;
}

.sender-email:hover {
    text-decoration: underline;
}

.message-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.message-time {
    font-size: 12px;
    color: #666;
}

.email-sent-badge {
    font-size: 11px;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.message-subject {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
}

.subject-icon {
    font-size: 16px;
}

.subject-text {
    font-size: 14px;
    color: #ccc;
    font-weight: 500;
}

.message-body {
    margin-bottom: 15px;
}

.message-body p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    white-space: pre-wrap;
}

.message-actions {
    display: flex;
    gap: 10px;
}

.reply-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 6px;
    color: #00ff88;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reply-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
}

/* Tab Badge */
.tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    margin-left: 6px;
    background: #00ff88;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    border-radius: 9px;
}

@media (max-width: 768px) {
    .message-header {
        flex-direction: column;
        gap: 10px;
    }

    .message-meta {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Messages Actions */
.message-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: 'JetBrains Mono', monospace;
}

.reply-btn {
    background: rgba(0, 170, 255, 0.1);
    color: #00aaff;
    border: 1px solid rgba(0, 170, 255, 0.3);
    text-decoration: none;
}

.reply-btn:hover {
    background: rgba(0, 170, 255, 0.2);
}

.mark-read-btn {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.mark-read-btn:hover {
    background: rgba(0, 255, 136, 0.2);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
}

.modal-content {
    background: #161b22;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.close-modal-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.close-modal-btn:hover {
    color: #fff;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #888;
    font-size: 13px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00ff88;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.cancel-btn {
    background: transparent;
    color: #888;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
}

.cancel-btn:hover {
    color: #fff;
    border-color: #fff;
}

.send-btn {
    background: #00ff88;
    color: #000;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
}

.send-btn:hover {
    background: #00cc6a;
}

.send-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Messages Header Actions */
.messages-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.clear-all-btn {
    background: rgba(255, 68, 68, 0.1);
    color: #ff6666;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.clear-all-btn:hover {
    background: rgba(255, 68, 68, 0.2);
}

/* Reset Data Button */
.reset-btn {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff6666;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.reset-btn:hover {
    background: rgba(255, 68, 68, 0.2);
}
/* ==============================================
   COMPREHENSIVE MOBILE STYLES
   Cyber-Style Portfolio - Mobile Optimization
   ============================================== */

/* ==============================================
   DESKTOP/MOBILE VISIBILITY HELPERS
   ============================================== */

/* Desktop only elements */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}

/* ==============================================
   HOLOGRAPHIC BADGE POSITIONING
   ============================================== */

/* Desktop: positioned on the right side */
.holo-badge-wrapper.desktop-only {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/* Mobile: centered above/in the content flow */
@media (max-width: 768px) {
  .holo-badge-wrapper.mobile-only {
    width: 100%;
    margin: 20px 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  /* Optimize holo badge for mobile */
  .holo-badge-container {
    width: 240px !important;
    height: 240px !important;
  }

  .holo-badge-container .badge-core {
    width: 75% !important;
    height: 75% !important;
  }

  .holo-badge-container .code-block {
    font-size: 8px !important;
    padding: 8px !important;
    line-height: 1.4 !important;
  }

  .holo-badge-container .code-line.indent {
    padding-left: 10px !important;
  }

  .holo-badge-container .status-bar {
    margin-top: 6px !important;
    padding-top: 6px !important;
  }

  .holo-badge-container .status-text {
    font-size: 7px !important;
    letter-spacing: 0.5px !important;
  }

  .holo-badge-container .status-dot {
    width: 5px !important;
    height: 5px !important;
  }

  .holo-badge-container .orbit-dot {
    width: 4px !important;
    height: 4px !important;
  }

  .holo-badge-container .ring-segment {
    border-width: 1.5px !important;
  }

  /* Simplify animations on mobile for performance */
  .holo-badge-container .outer-ring {
    animation-duration: 30s !important;
  }

  .holo-badge-container .orbit-path {
    animation-duration: 12s !important;
  }

  .holo-badge-container .scan-line {
    display: none !important;
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .holo-badge-container {
    width: 170px !important;
    height: 170px !important;
  }

  .holo-badge-container .code-block {
    font-size: 7px !important;
    padding: 6px !important;
  }

  .holo-badge-container .status-text {
    font-size: 6px !important;
  }
}

/* ==============================================
   CRITICAL PERFORMANCE OPTIMIZATIONS
   ============================================== */

/* Force GPU acceleration off for complex animations on mobile */
@media (max-width: 768px) {

  /* Disable heavy backdrop filters that kill mobile performance */
  .dock-container,
  .orbit-item,
  .nav-orbit.expanded .orbit-item {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Simplify backgrounds instead of blur */
  .dock-container {
    background: rgba(0, 10, 20, 0.98) !important;
  }

  .orbit-item,
  .nav-orbit.expanded .orbit-item {
    background: rgba(0, 15, 30, 0.98) !important;
  }

  /* Kill all complex animations - BUT keep holo badge */
  .neural-ring,
  .orb-glow,
  .data-particle,
  .orbit-trail,
  .card-glow,
  .holographic-grid,
  .cursor-trail,
  .scanning-line {
    display: none !important;
    animation: none !important;
  }

  /* Disable box-shadow animations - huge perf hit */
  .ai-orb-logo,
  .orbit-item,
  .project-card,
  .skill-card {
    animation: none !important;
    box-shadow: none !important;
  }

  /* Add simple static shadow instead */
  .ai-orb-logo {
    box-shadow: 0 2px 10px rgba(0, 255, 255, 0.2) !important;
  }

  /* Reduce paint complexity */
  .holographic-grid {
    background: none !important;
    display: none !important;
  }

  /* Simplify gradients */
  .dock-container::before,
  .orb-core::before,
  .orbit-item::after {
    display: none !important;
  }

  /* Disable all glow effects */
  * {
    text-shadow: none !important;
  }

  /* Keep essential text readable */
  .hero-name,
  .section-title {
    text-shadow: 0 0 10px rgba(0, 255, 209, 0.3) !important;
  }
}

/* ==============================================
   MOBILE NAVIGATION - AI ORBIT DOCK
   ============================================== */

/* Mobile-first approach for screens 768px and below */
@media (max-width: 768px) {

  /* AI Orbit Navigation - Bottom Center on Mobile */
  .holo-dock {
    position: fixed;
    top: auto !important;
    bottom: 20px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    z-index: 9999;
  }

  .holo-dock.minimized {
    bottom: 15px !important;
    transform: translateX(-50%) scale(0.85) !important;
  }

  .dock-container {
    padding: 12px 20px;
    border-radius: 50px;
    background: rgba(0, 10, 20, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow:
      0 10px 40px rgba(0, 255, 255, 0.2),
      0 5px 20px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .ai-orb-logo {
    width: 55px;
    height: 55px;
    margin: 0 15px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .ai-center {
    font-size: 11px;
    letter-spacing: 0.3px;
  }

  /* Orbit menu expands upward on mobile */
  .nav-orbit {
    position: absolute;
    bottom: 100%;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    width: 280px;
    height: 200px;
    margin-bottom: 15px;
  }

  .nav-orbit.expanded {
    width: 300px;
    height: 220px;
    opacity: 1;
    pointer-events: auto;
  }

  /* Semi-circular layout above the orb */
  .nav-orbit.expanded .orbit-item {
    width: 48px;
    height: 48px;
    background: rgba(0, 20, 40, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  /* Arc positions - spread above the dock */
  .nav-orbit.expanded .orbit-item:nth-child(1) {
    bottom: 0;
    left: 0;
    top: auto;
    transform: translate(0, 0);
  }

  .nav-orbit.expanded .orbit-item:nth-child(2) {
    bottom: 40%;
    left: 10%;
    top: auto;
    transform: translate(0, 50%);
  }

  .nav-orbit.expanded .orbit-item:nth-child(3) {
    bottom: 70%;
    left: 50%;
    top: auto;
    transform: translate(-50%, 50%);
  }

  .nav-orbit.expanded .orbit-item:nth-child(4) {
    bottom: 40%;
    right: 10%;
    left: auto;
    top: auto;
    transform: translate(0, 50%);
  }

  .nav-orbit.expanded .orbit-item:nth-child(5) {
    bottom: 0;
    right: 0;
    left: auto;
    top: auto;
    transform: translate(0, 0);
  }

  .orbit-icon {
    font-size: 20px;
  }

  /* Labels appear on tap/hover */
  .orbit-item::before {
    bottom: -28px;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.95);
  }

  /* Remove orbital arc guide on mobile */
  .nav-orbit.expanded::before {
    display: none;
  }
}

/* ==============================================
   MOBILE HERO SECTION
   ============================================== */
@media (max-width: 768px) {
  .hero-container {
    min-height: 100vh;
    min-height: 100dvh;
    /* Dynamic viewport height for mobile browsers */
    padding: 60px 0 120px;
    /* Extra bottom padding for dock */
    display: flex;
    align-items: center;
  }

  .hero-content {
    padding: 0 20px;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  /* Hide large cube on mobile */
  .large-cube-container {
    display: none;
  }

  .terminal-header {
    justify-content: center;
    margin-bottom: 20px;
    font-size: 12px;
    flex-wrap: wrap;
  }

  .hero-name {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .role-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .role-badge {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 1.3;
  }

  .hero-tagline {
    font-size: 14px;
    margin: 20px 0 30px;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    min-height: 50px;
  }

  .status-indicators {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
  }

  .status-item {
    font-size: 13px;
  }

  /* Hide floating cubes on mobile */
  .floating-elements {
    display: none;
  }

  /* Reduce grid animation on mobile for performance */
  .holographic-grid {
    background-size: 30px 30px;
    animation: none;
  }

  /* Mobile code decoration - animated cycling code snippet */
  .mobile-code-decoration {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
    height: 40px;
  }

  .mobile-code-lines {
    position: relative;
    width: 160px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-code-decoration .code-snippet {
    position: absolute;
    font-family: 'Fira Code', 'Monaco', monospace;
    font-size: 13px;
    padding: 8px 16px;
    background: rgba(0, 255, 209, 0.05);
    border: 1px solid rgba(0, 255, 209, 0.2);
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(8px);
  }

  /* Animation keyframes - 9s total (3s per line) */
  @keyframes mobileShowLine1 {

    0%,
    2% {
      opacity: 0;
      transform: translateY(8px);
    }

    5%,
    30% {
      opacity: 1;
      transform: translateY(0);
    }

    33%,
    100% {
      opacity: 0;
      transform: translateY(-8px);
    }
  }

  @keyframes mobileShowLine2 {

    0%,
    33% {
      opacity: 0;
      transform: translateY(8px);
    }

    36%,
    63% {
      opacity: 1;
      transform: translateY(0);
    }

    66%,
    100% {
      opacity: 0;
      transform: translateY(-8px);
    }
  }

  @keyframes mobileShowLine3 {

    0%,
    66% {
      opacity: 0;
      transform: translateY(8px);
    }

    69%,
    96% {
      opacity: 1;
      transform: translateY(0);
    }

    99%,
    100% {
      opacity: 0;
      transform: translateY(-8px);
    }
  }

  .mobile-code-decoration .mobile-line-1 {
    animation: mobileShowLine1 9s ease-in-out infinite;
  }

  .mobile-code-decoration .mobile-line-2 {
    animation: mobileShowLine2 9s ease-in-out infinite;
  }

  .mobile-code-decoration .mobile-line-3 {
    animation: mobileShowLine3 9s ease-in-out infinite;
  }

  .mobile-code-decoration .code-prop {
    color: #8be9fd;
  }

  .mobile-code-decoration .code-operator {
    color: #ff79c6;
  }

  .mobile-code-decoration .code-string {
    color: #f1fa8c;
  }

  .mobile-code-decoration .code-bool {
    color: #bd93f9;
  }

  .mobile-code-decoration .code-number {
    color: #bd93f9;
  }
}

/* ==============================================
   MOBILE ABOUT SECTION
   ============================================== */
@media (max-width: 768px) {
  .about-section {
    padding: 80px 0 100px;
  }

  .about-container {
    padding: 0 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }

  .bio-section {
    border-radius: 12px;
  }

  .bio-header {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .bio-title {
    font-size: 18px;
  }

  /* Tab buttons for mobile */
  .tab-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px;
    gap: 5px;
  }

  .tab-buttons::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    min-width: 70px;
    padding: 10px 8px;
    flex-shrink: 0;
  }

  .tab-btn span {
    font-size: 10px;
  }

  .tab-icon {
    width: 18px;
    height: 18px;
  }

  .tab-content {
    padding: 20px 15px;
    min-height: 300px;
  }

  /* Education Card Mobile */
  .education-card {
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
  }

  .card-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .degree-badge {
    padding: 10px 16px;
  }

  .degree-level {
    font-size: 12px;
  }

  .degree-title {
    font-size: 18px;
    text-align: center;
  }

  .info-item {
    padding: 12px 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .info-text {
    font-size: 14px;
  }

  /* Personal Info Grid Mobile */
  .personal-info-grid {
    gap: 12px;
    margin-top: 20px;
  }

  .info-row {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    gap: 8px;
  }

  .info-label {
    min-width: auto;
    font-size: 12px;
  }

  .info-value,
  .info-link {
    font-size: 14px;
  }
}

/* ==============================================
   MOBILE PROJECTS SECTION
   ============================================== */
@media (max-width: 768px) {
  .projects-section {
    padding: 80px 0 100px;
  }

  .projects-container {
    padding: 0 20px;
  }

  /* Filter bar mobile */
  .projects-filter-bar {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
  }

  .filter-tabs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
    flex-wrap: nowrap;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .filter-search {
    width: 100%;
    margin-left: 0;
  }

  .filter-search-input {
    width: 100%;
    min-width: auto;
    padding: 12px 15px;
    font-size: 14px;
  }

  /* Project Cards Grid */
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }

  .project-card {
    border-radius: 12px;
  }

  .project-image-container {
    height: 180px;
  }

  .project-content {
    padding: 20px;
  }

  .project-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .project-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-technologies {
    gap: 6px;
    margin-bottom: 20px;
  }

  .tech-tag {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-actions {
    flex-direction: column;
    gap: 10px;
  }

  .action-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }

  .project-status {
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    font-size: 10px;
  }

  /* Internship Cards */
  .projects-toggle-header {
    padding: 12px 15px;
    border-radius: 10px;
  }

  .project-item-expanded {
    padding: 15px;
    border-radius: 10px;
  }

  .project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .project-title-expanded {
    font-size: 16px;
  }

  .project-status-badge {
    font-size: 10px;
    padding: 3px 8px;
  }

  .project-description-expanded {
    font-size: 13px;
  }

  .project-technologies-expanded {
    gap: 5px;
  }

  .tech-tag-expanded {
    font-size: 10px;
    padding: 3px 6px;
  }

  .project-actions-expanded {
    flex-direction: column;
    gap: 8px;
  }

  .project-demo-btn,
  .project-github-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 12px;
  }
}

/* ==============================================
   MOBILE SKILLS SECTION
   ============================================== */
@media (max-width: 768px) {
  .skills-section {
    padding: 80px 0 100px;
  }

  .skills-container {
    padding: 0 20px;
  }

  .skills-interface {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .category-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .category-btn {
    flex: 1 1 auto;
    /* Allow buttons to grow and shrink appropriately */
    min-width: 140px;
    padding: 15px;
    min-height: 60px;
    /* Better touch target */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .category-title {
    font-size: 14px;
    text-align: center;
    white-space: normal;
    /* Allow text to wrap */
    word-break: break-word;
    /* Break long words if needed */
    line-height: 1.3;
    /* Improve readability */
    margin-top: 5px;
    /* Space between icon and text */
  }

  .category-icon {
    margin: 0 auto;
    /* Center icon */
    display: block;
  }

  .category-arrow {
    display: none;
    /* Hide arrow on mobile */
  }

  .skills-display {
    height: 400px;
    /* Fixed height for mobile with scrolling */
  }

  .skills-grid {
    height: calc(400px - 60px);
    /* Fixed height for scroll container */
    overflow-y: auto;
    padding: 20px;
    gap: 20px;
    grid-template-columns: 1fr;
    /* Single column on mobile */
  }

  .skill-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .skill-header {
    margin-bottom: 12px;
  }

  .skill-name {
    font-size: 16px;
    font-weight: 600;
  }

  .skill-level {
    font-size: 14px;
    font-weight: 700;
  }

  .skill-progress-container {
    margin-bottom: 12px;
  }

  .skill-progress-bg {
    height: 8px;
  }

  .hologram-dots {
    justify-content: center;
    margin-top: 10px;
  }

  .data-bars {
    justify-content: center;
    margin-top: 8px;
  }

  /* System Stats - Optimized for Mobile (One Box Horizontal) */
  .system-stats {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 8px;
    gap: 8px;
    margin-top: 20px;
    grid-template-columns: none !important;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    min-height: auto !important;
    flex: 1 1 100px;
    gap: 6px !important;
    text-align: center;
    line-height: 1.2;
  }

  .stat-icon {
    width: 20px !important;
    height: 20px !important;
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .stat-value {
    font-size: 16px !important;
    margin-left: 8px;
    font-weight: 700 !important;
  }

  .stat-label {
    margin-left: 8px;
    font-size: 12px !important;
  }

  .stats-header {
    padding: 15px 20px;
  }

  .stats-title {
    font-size: 14px;
  }

  .additional-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .additional-stat-card {
    padding: 15px;
  }

  .additional-stat-card .stat-value {
    font-size: 18px;
  }

  .additional-stat-card .stat-label {
    font-size: 10px;
  }
}

/* Skills Section - Small Mobile */
@media (max-width: 480px) {
  .skills-interface {
    gap: 20px;
    margin-top: 30px;
  }

  .category-nav {
    gap: 10px;
  }

  .category-btn {
    min-width: 110px;
    padding: 12px 8px;
    min-height: 55px;
  }

  .category-title {
    font-size: 12px;
    line-height: 1.2;
  }

  .skills-display {
    height: 350px;
    /* Fixed height for small mobile */
  }

  .skills-grid {
    height: calc(350px - 50px);
    /* Fixed height for scroll container */
    overflow-y: auto;
    padding: 15px;
    gap: 15px;
  }

  .skill-item {
    padding: 12px;
  }

  .display-header {
    padding: 15px 20px;
  }

  .display-title {
    font-size: 16px;
  }

  .skill-name {
    font-size: 14px;
  }

  .skill-level {
    font-size: 12px;
  }

  .system-stats {
    /* Already handled in main mobile query, just ensuring it stays row */
    flex-direction: row !important;
    padding: 12px 5px;
  }

  .stat-item {
    padding: 0 !important;
    min-height: auto !important;
  }

  .stat-icon {
    width: 18px !important;
    height: 18px !important;
  }

  .stat-value {
    font-size: 14px !important;
  }
}

/* ==============================================
   MOBILE CONTACT SECTION
   ============================================== */
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0 120px;
    /* Extra padding for bottom dock */
  }

  .contact-container {
    padding: 0 20px;
  }

  .connection-status {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    font-size: 11px;
  }

  .status-indicator,
  .encryption-level {
    gap: 5px;
  }

  .status-icon,
  .encryption-icon {
    width: 12px;
    height: 12px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .contact-form {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-label {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .form-input,
  .form-textarea {
    padding: 12px 15px;
    font-size: 14px;
    border-radius: 8px;
  }

  .form-textarea {
    min-height: 120px;
  }

  .submit-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
  }

  /* Contact Info Cards */
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-info-card {
    padding: 20px;
    border-radius: 10px;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
  }

  .contact-info-title {
    font-size: 14px;
  }

  .contact-info-value {
    font-size: 12px;
  }

  /* Social Links */
  .social-links {
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
  }

  .social-links .social-link {
    width: 45px;
    height: 45px;
  }

  .social-links .social-icon {
    width: 20px;
    height: 20px;
  }

  /* Social Networks - Mobile */
  .social-networks {
    margin-top: 25px;
  }

  .networks-header {
    padding: 20px;
  }

  .networks-title {
    font-size: 14px;
  }

  .networks-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .networks-grid .social-link {
    padding: 20px 15px;
    gap: 6px;
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    width: auto;
    height: auto;
  }

  .networks-grid .social-link:nth-child(2n) {
    border-right: none;
  }

  .networks-grid .social-link:nth-child(n+3) {
    border-bottom: none;
  }

  .networks-grid .social-icon {
    width: 20px;
    height: 20px;
  }

  /* Social Networks - Small Mobile */
  .networks-grid {
    grid-template-columns: 1fr;
  }

  .networks-grid .social-link {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 25px 20px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
  }

  .networks-grid .social-link:last-child {
    border-bottom: none;
  }

  @media (max-width: 480px) {
    .networks-grid .social-link {
      padding: 20px 15px;
      gap: 12px;
    }

    .social-icon {
      width: 22px;
      height: 22px;
    }

    .social-label {
      font-size: 13px;
    }
  }

  /* Resume Download Button - Mobile */
  .resume-download {
    margin: 25px 0;
  }

  .download-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    justify-content: center;
  }

  .download-icon {
    width: 18px;
    height: 18px;
  }
}

/* Contact Section - Small Mobile */
@media (max-width: 480px) {
  .connection-status {
    gap: 8px;
    margin-top: 12px;
    font-size: 10px;
  }

  .status-icon,
  .encryption-icon {
    width: 10px;
    height: 10px;
  }

  .contact-grid {
    gap: 25px;
    margin-top: 25px;
  }

  .contact-form {
    padding: 20px 15px;
  }

  .form-header {
    padding: 20px 15px;
  }

  .form-title {
    font-size: 16px;
  }

  .form-status {
    font-size: 12px;
  }
}

/* ==============================================
   MOBILE FOOTER
   ============================================== */
@media (max-width: 768px) {
  .main-footer {
    padding: 40px 0 100px;
    /* Extra padding for bottom dock */
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    font-size: 12px;
  }

  .footer-status {
    justify-content: center;
  }
}

/* ==============================================
   MOBILE LOADING SCREEN
   ============================================== */
@media (max-width: 768px) {
  .loading-container {
    max-width: 280px;
    padding: 0 20px;
  }

  .logo-grid {
    width: 60px;
    height: 60px;
    gap: 6px;
  }

  .loading-label {
    font-size: 12px;
  }

  .status-lines {
    font-size: 10px;
  }

  .status-line {
    margin-bottom: 4px;
  }
}

/* ==============================================
   SMALL MOBILE DEVICES (480px and below)
   ============================================== */
@media (max-width: 480px) {

  /* Navigation adjustments */
  .holo-dock {
    bottom: 15px !important;
  }

  .dock-container {
    padding: 10px 15px;
  }

  .ai-orb-logo {
    width: 50px;
    height: 50px;
    margin: 0 12px;
  }

  .ai-center {
    font-size: 10px;
  }

  .nav-orbit.expanded {
    width: 260px;
    height: 180px;
  }

  .nav-orbit.expanded .orbit-item {
    width: 42px;
    height: 42px;
  }

  .orbit-icon {
    font-size: 18px;
  }

  /* Hero adjustments */
  .hero-name {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-tagline {
    font-size: 13px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 14px;
    padding: 12px 18px;
    min-height: 46px;
  }

  /* Section titles */
  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  /* Skills category nav */
  .category-nav {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .category-btn {
    flex-direction: row;
    padding: 12px 15px;
  }

  /* System stats */
  .system-stats {
    grid-template-columns: 1fr;
  }

  /* Project cards */
  .project-image-container {
    height: 150px;
  }

  .project-content {
    padding: 15px;
  }

  .project-title {
    font-size: 16px;
  }

  .project-description {
    font-size: 13px;
  }

  /* Social Networks - Small Mobile */
  .networks-grid {
    grid-template-columns: 1fr;
  }

  .networks-grid .social-link {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .networks-grid .social-link:last-child {
    border-bottom: none;
  }

  .social-label {
    font-size: 13px;
  }
}

/* ==============================================
   TOUCH & INTERACTION OPTIMIZATIONS
   ============================================== */
@media (max-width: 768px) {

  /* Improve touch targets */
  .orbit-item,
  .btn-primary,
  .btn-secondary,
  .action-btn,
  .filter-btn,
  .category-btn,
  .tab-btn,
  .social-link {
    min-height: 44px;
    min-width: 44px;
  }

  /* Remove hover effects that don't work well on touch */
  .project-card:hover {
    transform: none;
  }

  .project-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

  .orbit-item:hover {
    transform: none;
  }

  .orbit-item:active {
    transform: scale(0.95);
    background: rgba(0, 255, 255, 0.3);
  }

  /* Disable complex animations for performance */
  .cursor-trail {
    display: none;
  }

  .scanning-line {
    display: none;
  }

  /* Reduce animation complexity */
  @keyframes neural-pulse {

    0%,
    100% {
      opacity: 0.6;
    }

    50% {
      opacity: 1;
    }
  }

  @keyframes orb-breathe {

    0%,
    100% {
      opacity: 0.3;
    }

    50% {
      opacity: 0.5;
    }
  }

  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }

  /* Prevent text selection on interactive elements */
  .ai-orb-logo,
  .orbit-item,
  .btn-primary,
  .btn-secondary,
  .action-btn {
    -webkit-user-select: none;
    user-select: none;
  }
}

/* ==============================================
   LANDSCAPE MOBILE ORIENTATION
   ============================================== */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-container {
    min-height: auto;
    padding: 40px 0 80px;
  }

  .hero-name {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary {
    flex: 1 1;
    min-width: 150px;
  }

  .holo-dock {
    bottom: 10px !important;
  }

  .nav-orbit.expanded {
    height: 160px;
  }
}

/* ==============================================
   SAFE AREA INSETS (Notch devices)
   ============================================== */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  @media (max-width: 768px) {
    .holo-dock {
      bottom: calc(15px + env(safe-area-inset-bottom)) !important;
    }

    .main-footer {
      padding-bottom: calc(80px + env(safe-area-inset-bottom));
    }

    .contact-section {
      padding-bottom: calc(100px + env(safe-area-inset-bottom));
    }
  }
}

/* ==============================================
   HIGH CONTRAST MODE
   ============================================== */
@media (max-width: 768px) and (prefers-contrast: high) {
  .dock-container {
    background: rgba(0, 0, 0, 0.98);
    border: 2px solid var(--brand-primary);
  }

  .orbit-item {
    border-width: 2px;
  }

  .btn-primary,
  .btn-secondary {
    border-width: 2px;
  }
}

/* ==============================================
   REDUCED MOTION PREFERENCE
   ============================================== */
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .nav-orbit.expanded {
    transition: opacity 0.1s ease;
  }

  .orbit-item {
    transition: none;
  }
}

/* ==============================================
   DARK MODE ADJUSTMENTS (if system prefers)
   ============================================== */
@media (max-width: 768px) and (prefers-color-scheme: dark) {
  .dock-container {
    background: rgba(0, 5, 15, 0.98);
  }

  .orbit-item {
    background: rgba(0, 15, 30, 0.98);
  }
}

/*# sourceMappingURL=main.cfa8a97e.css.map*/