@charset "UTF-8";

/* Global Font Settings */
body {
    font-family: 'Inter', sans-serif;
    background-color: #050505; /* Deep black */
    color: #ffffff;
    overflow-x: hidden;
    cursor: default;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #333;
}

/* Tech Card - Sharp, Opaque, Bordered */
.tech-card {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid #222;
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.tech-card:hover {
    border-color: #fff;
    transform: translateY(-4px);
}

/* Logo 2.0: Split Animation */
.logo-container {
    position: relative;
    width: 32px;
    height: 32px;
    overflow: visible;
}

.logo-part-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #fff;
    transform: skewX(-20deg) translateX(-2px);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-part-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: #fff;
    transform: skewX(-20deg) translateX(2px);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-beam {
    position: absolute;
    top: 48%;
    left: -10%;
    width: 120%;
    height: 4%;
    background: #000;
    z-index: 10;
    transform: rotate(-5deg);
}

.group:hover .logo-part-top,
.group:hover .logo-part-bottom {
    transform: skewX(0) translateX(0);
}

/* Text Effects */
.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-bar {
    width: 0;
    height: 1px;
    background: #fff;
    animation: load 1s ease-in-out forwards;
}

@keyframes load {
    to { width: 100px; }
}