:root {
    --color-bg: #030014;
    --color-card-bg: rgba(15, 23, 42, 0.4);
    --color-border: rgba(255, 255, 255, 0.05);
    --color-border-hover: rgba(99, 102, 241, 0.4);
    --color-shadow-glow: rgba(99, 102, 241, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    overflow-x: hidden;
    color: #d1d5db;
    transition: background-color 0.3s, color 0.3s;
}

h1, h2, h3, h4, .font-display {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* SVG Grid pattern background */
.bg-grid-pattern {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
}

/* Floating Blobs animation */
@keyframes orb-float {
    0% { transform: translate(0px, 0px) scale(1); }
    50% { transform: translate(-30px, 50px) scale(1.1); }
    100% { transform: translate(0px, 0px) scale(1); }
}
.ambient-glow {
    animation: orb-float 20s ease-in-out infinite alternate;
}

/* Frosted Glass Resume container */
.resume-glass-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Resume section list style */
.resume-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}
.resume-list li::before {
    content: '⬢';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-size: 0.75em;
    top: 0.3em;
}

/* Media queries for print compatibility */
@media print {
    .no-print {
        display: none !important;
    }
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt !important;
    }
    .resume-glass-card {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .print-card {
        page-break-inside: avoid !important;
        margin-bottom: 2rem !important;
    }
    .print-border {
        border-color: #cbd5e1 !important;
    }
    .print-full-width {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
    }
    .print-grid {
        display: block !important;
    }
    .print-border {
        border-bottom: 1px solid #cbd5e1 !important;
        padding-bottom: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .print-badge {
        border: 1px solid #374151 !important;
        background: transparent !important;
        color: black !important;
    }
}

/* Hide Scrollbar */
::-webkit-scrollbar {
    display: none;
}
html, body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Mobile Menu Optimization */
#mobile-menu {
    will-change: transform, opacity;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
