body {
    font-family: 'Roboto', sans-serif;
    background-color: #0a0e1a;
    color: #e0e0e0;
    background-image: url('/assets/img/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}
.bg-glass {
    background-color: rgba(11, 18, 33, 0.85); /* Darker, more neutral blue */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(52, 152, 219, 0.2);
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.1);
}
.border-accent {
    border-color: #3498db; /* New accent blue */
}
.text-accent {
    color: #3498db; /* New accent blue */
}
.bg-accent {
    background-color: #3498db; /* New accent blue */
}
.bg-accent-hover:hover {
    background-color: #2980b9; /* Darker shade of new accent */
}
.text-highlight {
    color: #f1c40f; /* Slightly adjusted gold */
}
.bg-highlight {
    background-color: #f1c40f; /* Slightly adjusted gold */
}
.bg-highlight-hover:hover {
    background-color: #f39c12;
}
.form-input {
    background-color: #05080f; /* Darker input background */
    border: 1px solid #2c3e50; /* Muted border */
    color: #e0e0e0;
}
.form-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.4);
}
.copy-btn {
    transition: all 0.2s ease-in-out;
}
.copy-btn:hover {
    transform: scale(1.1);
    color: #f1c40f;
}
.faq-bubble {
    border-left: 3px solid #3498db; /* New accent blue */
}
#copy-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 5px;
    color: #0a0e1a;
    font-weight: bold;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background-color: #f1c40f; /* Notification uses highlight color */
}
