/* Import high-tech fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Inter:wght@300;400;600&display=swap');

body {
    background-color: #05070a;
    background-image: 
        linear-gradient(rgba(0, 242, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-attachment: fixed;
    color: #a0adbb; /* Soft blue-gray for readability */
    font-family: 'Inter', sans-serif;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 50px 50px; }
}

h1, h2, h3, .navbar-brand {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(180deg, #2c3e50 0%, #000000 100%) !important;
    border: 1px solid #00f2ff !important;
    color: #00f2ff !important;
    text-shadow: 0 0 5px rgba(0, 242, 255, 0.5);
    box-shadow: inset 0 0 10px rgba(0, 242, 255, 0.2), 0 0 15px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%); /* Angled industrial edges */
    padding: 10px 25px;
}

.btn-primary:hover {
    background: #00f2ff !important;
    color: #000 !important;
    box-shadow: 0 0 20px #00f2ff;
    transform: scale(1.05);
}

a {
    color: #00f2ff;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px #00f2ff;
}

.text-muted {
    color: #5d6d7e !important;
}

/* Make Bootstrap tables look like holographic displays */
.table {
    background: rgba(0, 242, 255, 0.02);
    border-collapse: separate;
    border-spacing: 0 5px;
}

.table thead th {
    border-bottom: 2px solid #00f2ff !important;
    color: #00f2ff;
}

.navbar-brand:hover {
    animation: glitch 0.3s linear infinite;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); color: #ff00c1; }
    40% { transform: translate(-2px, -2px); color: #00f2ff; }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}