body {
    background-color: #0A0E17;
    color: #E5E7EB;
}

/* Efek glow tipis pada teks/elemen tertentu, tidak berlebihan */
.glow-text-cyan {
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.glow-border {
    box-shadow: 0 0 0 1px rgba(0, 240, 255, 0.1), 0 0 20px 0 rgba(0, 240, 255, 0.05);
    transition: all 0.3s ease;
}

.glow-border:hover {
    box-shadow: 0 0 0 1px rgba(0, 240, 255, 0.3), 0 0 30px 0 rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
}

/* Animasi garis pindai untuk elemen bertema keamanan */
@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}
.scan-container {
    position: relative;
    overflow: hidden;
}
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(0, 240, 255, 0.8), transparent);
    animation: scanline 3s linear infinite;
}

/* Style scrollbar kustom agar menyatu dengan tema */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0A0E17;
}
::-webkit-scrollbar-thumb {
    background: #1F2937;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #374151;
}

/* Utilities */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.perspective-1000 {
    perspective: 1000px;
}

.rotate-y-\[-5deg\] {
    transform: rotateY(-5deg);
}

.rotate-x-\[5deg\] {
    transform: rotateX(5deg);
}

/* Fix for form elements background and text color */
input, select, textarea, option {
    background-color: #1F2937 !important; /* bg-dark-800 equivalent */
    color: #FFFFFF !important;
    border-color: #374151 !important;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #00F0FF !important; /* brand-cyan */
}

/* Custom dropdown style */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239CA3AF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}
