[data-bs-theme="light"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-bs-theme="dark"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 1200px) {
    .navbar-brand img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .card {
        margin-bottom: 1.5rem;
    }
}

.bg-dracula {
    background-color: #282a42;
    font-family: "JetBrains Mono", monospace;
}

.navbar-dracula {
    background-color: #30334e;
    color: #d7d8ee;
}

.container-dracula {
    background-color: #2e314a;
    color: #d7d8ee;
    border-color: #30334e;
    border-radius: 0.625rem;
}

.text-body-sec {
    color: #b2b3ca !important;
}

.btn-dracula {
    transition: all 0.3s ease;
    background-color: #666cff;
    color: #fff;
}

.btn-dracula:hover {
    background-color: #5c61e6;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(157, 79, 209, 0.4);
}

.btn-dracula:focus {
    outline: 2px solid #bd93f9;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: calc(var(--order) * 0.1s);
}

h1 { font-weight: 700; }
h2 { font-weight: 600; }
body {
    font-weight: 400;
    width: 99%;
}
main {
    margin-top: 4rem;
}
section { margin-bottom: 3rem; }
h4 { margin-bottom: 1.5rem; }

.badge.text-bg-warning {
    animation: pulse 3s infinite;
}
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.card-body {
    font-family: "JetBrains Mono", monospace;
}

.gradient-border-header {
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #A166BA, #846EBE, #5E2179) 1;
}

.gradient-border-footer {
    border-top: 3px solid;
    border-image: linear-gradient(to right, #A166BA, #846EBE, #5E2179) 1;
}

.table-dracula {
    --bs-table-bg: #30334e;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
}

.scrollable-table-container {
    max-height: 540px;
    overflow-y: auto;
}