/* BASE */
body { background-color: #050505; }

/* 1. MODULE CARDS (High Visibility) */
.module-card {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}
.module-card:hover {
    border-color: rgba(255, 107, 0, 0.6);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
    transform: translateY(-5px);
    background: #181818;
}

.icon-box {
    width: 3.5rem; height: 3.5rem;
    border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 0, 0.3);
    background: rgba(255, 107, 0, 0.1);
}

/* 2. INTEGRATION CARDS */
.integration-card {
    background: #161616;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}
.integration-card:hover {
    border-color: rgba(255,255,255,0.3);
    background: #202020;
    transform: translateY(-5px);
}
.integration-card span {
    font-size: 0.75rem; font-weight: 700; color: #fff; letter-spacing: 0.05em; font-family: 'JetBrains Mono', monospace;
}

/* 3. SCROLLBARS */
::-webkit-scrollbar { width: 8px; background: #050505; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #FF6B00; }

.custom-scroll::-webkit-scrollbar { width: 4px; }
.custom-scroll::-webkit-scrollbar-track { background: transparent; }
.custom-scroll::-webkit-scrollbar-thumb { background: #333; }

/* 4. UTILITIES */
.text-steergo-orange { color: #FF6B00; }
.bg-steergo-orange { background-color: #FF6B00; }
.border-steergo-orange { border-color: #FF6B00; }

.cyber-grid {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
}