:root {
    --bg-color: #050505;
    --accent-color: #ffffff;
    --border-color: #222;
    --highlight: #ff0000;
}

body {
    background-color: var(--bg-color);
    color: var(--accent-color);
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* Header Style */
.exe-header {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: rgba(5, 5, 5, 0.9);
    z-index: 100;
}

.status-dot {
    height: 8px;
    width: 8px;
    background-color: #0f0;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #0f0;
    margin-right: 5px;
}

/* Containers */
.exe-container {
    border: 1px solid var(--border-color);
    padding: 30px;
    margin: 20px;
    background: linear-gradient(145deg, #0a0a0a, #050505);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exe-container:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.tag {
    font-family: 'JetBrains Mono', monospace;
    color: #555;
    font-size: 0.7rem;
    margin-bottom: 10px;
}

/* Animations Scroll */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
}

.show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition: all 0.8s ease-out;
}

/* Typography */
.glitch-text {
    font-weight: 900;
    letter-spacing: -1px;
}