/* css/styles.css */

/* Custom Scrollbar for the main application */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent; 
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1); 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2); 
}

/* Custom Scrollbar specifically for the terminal */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent; 
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15); 
    border-radius: 10px;
}

.text-balance {
    text-wrap: balance;
}

/* Ultra-Soft Silky Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 2rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.4);
    transition: background 0.7s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

/* Extremely subtle skill badges */
.skill-badge {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a1a1aa;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.5s ease;
}

.skill-badge:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #e4e4e7;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Base Terminal Typographic refinements */
.typing-cursor {
    display: inline-block;
    width: 0.5em;
    height: 1.2em;
    background-color: rgba(255,255,255,0.4);
    animation: blink 1s step-end infinite;
    vertical-align: text-top;
    margin-left: 4px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Elegant Timeline Line */
.absolute-timeline {
    border-left: 1px solid rgba(255,255,255,0.03);
}

html, body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section {
    position: relative;
    z-index: 10;
}
