body {
    font-family: 'Orbitron', Arial, sans-serif;
    background: radial-gradient(circle at top, #0f0f0f, #1a1a1a, #000000);
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 20px 0;
    color: #00ff9d; 
    text-shadow: 0 0 10px #00ff9d, 0 0 20px #00ff9d;
}

.navbar {
    background-color: #111 !important;
    padding: 15px;
    border-bottom: 2px solid #ff004c; 
}

    .navbar a {
        color: #00d4ff !important;
        font-weight: 600;
        transition: color 0.3s ease, text-shadow 0.3s ease;
    }

        .navbar a:hover {
            color: #ff004c !important;
            text-shadow: 0 0 10px #ff004c;
        }

.jumbotron {
    background: linear-gradient(135deg, #6a00ff, #ff004c);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 0 20px #6a00ff, 0 0 40px #ff004c;
}

.card {
    background-color: #1a1a1a;
    border: 2px solid #6a00ff;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover; 
    border-bottom: 2px solid #000; 
}


    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 0 20px #00ff9d, 0 0 40px #6a00ff;
    }

.card-title {
    color: #ff004c;
    font-weight: bold;
    text-shadow: 0 0 10px #ff004c;
}

.btn {
    border-radius: 25px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #00ff9d;
    color: #000;
    border: none;
    text-shadow: 0 0 5px #00ff9d;
}

    .btn-primary:hover {
        background-color: #ff004c;
        color: #fff;
        text-shadow: 0 0 10px #ff004c;
    }

.btn-danger {
    background-color: #6a00ff;
    border: none;
    color: #fff;
}

    .btn-danger:hover {
        background-color: #ff004c;
    }

.btn-success {
    background-color: #00d4ff;
    border: none;
    color: #000;
}

    .btn-success:hover {
        background-color: #00ff9d;
        color: #000;
    }

.table {
    background-color: #111;
    border-radius: 10px;
    overflow: hidden;
    color: #00ff9d;
}

    .table th {
        background-color: #6a00ff;
        color: #fff;
        text-align: center;
        text-shadow: 0 0 5px #6a00ff;
    }

    .table td {
        text-align: center;
        color: #00d4ff;
    }

footer {
    background-color: #000;
    color: #ff004c;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    border-top: 2px solid #00ff9d;
    text-shadow: 0 0 10px #ff004c;
}
