body {
    background: linear-gradient(135deg, #0a0f1c, #111827);
    color: #e5e7eb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.title,
.subtitle {
    color: #00d1ff;
    text-shadow: 0 0 10px rgba(0, 209, 255, 0.5);
}

.navbar {
    background-color: #020617;
    border-bottom: 2px solid #00d1ff;
}

.navbar-item {
    color: #e5e7eb;
    transition: 0.3s;
}

.navbar-item:hover {
    background-color: #00d1ff;
    color: #000;
}

.section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.box {
    background-color: #020617;
    border: 1px solid #00d1ff;
    box-shadow: 0 0 15px rgba(0, 209, 255, 0.2);
}

.button.is-primary {
    background: linear-gradient(45deg, #00d1ff, #6366f1);
    border: none;
    color: white;
    box-shadow: 0 0 10px rgba(0, 209, 255, 0.6);
}

.button.is-primary:hover {
    transform: scale(1.05);
}

.image img {
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 209, 255, 0.4);
}

.notification {
    border-left: 5px solid #00d1ff;
    background-color: #020617;
    color: #e5e7eb;
}

.progress {
    height: 12px;
    border-radius: 10px;
}

.table {
    background-color: #020617;
    color: #e5e7eb;
}

.table thead {
    background-color: #00d1ff;
    color: #000;
}

.input,
.textarea {
    background-color: #020617;
    color: #e5e7eb;
    border: 1px solid #00d1ff;
}

.input:focus,
.textarea:focus {
    border-color: #6366f1;
    box-shadow: 0 0 5px #6366f1;
}

.glow {
    text-shadow: 0 0 5px #00d1ff, 0 0 10px #00d1ff;
}

.card-hover:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .title {
        font-size: 1.8rem;
    }
}

/* ====== NAVBAR RESPONSIVE ====== */

/* Ajustes en móvil */
@media (max-width: 1023px) {

    .navbar-menu {
        background-color: #020617;
    }

    .navbar-item {
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-item:hover {
        background-color: #00d1ff;
        color: #000;
    }
}

.footer {
    background-color: #020617;
    color: #e5e7eb;
    padding: 3rem 1.5rem;
}

@media (max-width: 768px) {

    .footer .column {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer .buttons {
        justify-content: center;
    }
}

.footer a {
    color: #00d1ff;
    transition: 0.3s;
}

.footer a:hover {
    color: #6366f1;
}

* {
    transition: all 0.2s ease-in-out;
}

#menu-toggle {
    display: none;
}

@media (max-width: 1023px) {
    .navbar-menu {
        display: none;
    }

    #menu-toggle:checked+nav .navbar-menu {
        display: block;
    }
}