* {
    font-family: 'Courier Prime', monospace;
}

body {
    background-color: #050505;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Scanline effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%,
        rgba(0, 0, 0, 0.1) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 50;
    opacity: 0.3;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border: 1px solid #555;
}

.border-brutalist {
    border: 1px solid #333;
}

.carousel-container {
    scrollbar-width: thin;
    scrollbar-color: #333 #0a0a0a;
    -webkit-overflow-scrolling: touch;
}

.project-card {
    flex-shrink: 0;
    width: 400px;
    transition: all 0.2s ease;
}

.project-card:hover {
    border-color: #666;
    background-color: #0a0a0a;
}

.member-avatar {
    filter: brightness(0.78);
    transform: scale(1);
    transition: filter 0.25s ease, transform 0.25s ease;
}

.member-avatar:hover {
    filter: brightness(1);
    transform: scale(1.08);
}

.ascii-divider {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    opacity: 0.3;
    white-space: nowrap;
    overflow: hidden;
}

@media (max-width: 768px) {
    .project-card {
        width: 85vw;
    }
}

a:hover {
    text-decoration: underline;
    text-decoration-style: solid;
}