@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;700&family=Kulim+Park:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&family=Silkscreen:wght@400;700&family=Ubuntu+Sans+Mono:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --bg-dark: #070709;
    --card-bg: rgba(13, 14, 20, 0.45);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(0, 240, 255, 0.3);
    --neon-cyan: #00f0ff;
    --neon-cyan-glow: rgba(0, 240, 255, 0.15);
    --text-muted: #8e909a;
    --text-light: #f3f4f6;
    
    --section-title-fsize: clamp(1.8rem, 3vw, 2.8rem);
    --content-title-fsize: 1.25rem;
    --content-info-fsize : 0.9rem;
}

/* Elite custom scrollbar for absolute premium aesthetic */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    border: 2px solid var(--bg-dark);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Glassmorphic global layout wrappers */
.content_wrap {
    width: 100%;
    height: auto;
    display: flex;
    margin: 0;
    border: 0;
    background-color: transparent !important;
}

.content_wrap_2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    border: 0;
}

/* Generic container overrides for safety fallback */
.content_container {
    width: 85%;
    max-width: 1200px;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px dashed rgba(255, 255, 255, 0.06) !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border-radius: 12px;
    margin: 1rem auto !important;
    padding: 1.25rem !important;
    flex-direction: row;
    backdrop-filter: blur(12px);
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.content_container:hover {
    border-color: rgba(0, 240, 255, 0.15) !important;
}

/* Mac window header buttons */
.circle_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    margin-right: 1rem;
}

.element_mac_circles {
    width: 11px !important;
    height: 11px !important;
    border-radius: 50% !important;
    margin: 0 !important;
}

.red { background-color: #ff5f56 !important; }
.yellow { background-color: #ffbd2e !important; }
.green { background-color: #27c93f !important; }

/* Global custom keyframe micro-animations */
@keyframes neon-glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 240, 255, 0.2), 0 0 10px rgba(0, 240, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 240, 255, 0.4), 0 0 25px rgba(0, 240, 255, 0.2);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 240, 255, 0.2), 0 0 10px rgba(0, 240, 255, 0.1);
    }
}

.glowing_node {
    animation: neon-glow 2s infinite ease-in-out;
}