
body {
    font-family: 'Orbitron', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: background 0.3s, color 0.3s;
}
body.light {
    background-color: #f5f5f5;
    color: #111;
    background-image: none;
}
#darkToggle {
    position: fixed;
    top: 10px;
    right: 10px;
    background: #111;
    color: #0ff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    z-index: 999;
}
nav {
    background-color: rgba(0, 0, 0, 0.8);
}
nav a.nav-link {
    color: #0ff;
    text-shadow: 0 0 5px #0ff;
}
h1, h2 {
    text-align: center;
    text-shadow: 0 0 10px #0ff;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}
input, textarea {
    padding: 0.5rem;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
    border: none;
}
button {
    padding: 0.75rem 2rem;
    background-color: #0ff;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
footer {
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: #aaa;
}
iframe {
    margin-top: 1rem;
}
.online {
    color: #0f0;
}
.offline {
    color: #f00;
}

section {
    margin-bottom: 3rem;
}
.navbar-nav .nav-link {
    color: #0ff !important;
    text-shadow: 0 0 5px #0ff;
}
.navbar-nav .nav-link:hover {
    color: #fff !important;
}
.navbar-toggler {
    border-color: #0ff;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='#0ff' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}
.faq-question {
    background-color: #111;
    color: #0ff;
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: left;
}
.faq-question:hover {
    background-color: #0ff;
    color: #000;
}
.faq-answer {
    background-color: #222;
    color: #fff;
    padding: 1rem;
    border-radius: 0 0 5px 5px;
    margin-top: 0.5rem;
}
footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ccc;
}

body {
    cursor: url('../img/cursor.cur'), auto;
}
