@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

body {
    background-color: #0D0D0D;
}

a {
    text-decoration: none;
}

::selection {
    background-color: #f2f2f2;
    color: #0D0D0D;
}

.navbar {
    background-color: #0D0D0D;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.desktop-nav,
.mobile-nav {
    background-color: #0D0D0D;
}

.navbar-brand,
.navbar-brand:hover,
.navbar-brand:focus {
    color: #ffffff;
}

.heading h1 {
    color: #f2f2f2;
}

.heading a {
    text-decoration: none;
    color: #f2f2f2;
}

.heading a:hover {
    text-decoration: underline;
}

.light-p {
    color: #A1A1AA;
}

.hero-heading {
    background-color: #0D0D0D;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-section.row {
    height: auto;
    padding-top: 100px;
}

.card {
    overflow: hidden;
    height: auto;
    border-radius: 12px;
    padding: 0;
}

.card a {
    display: block;
    width: 100%;
    height: 100%;
}

.card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: 400ms;
}

.card img:hover {
    transform: scale(1.1);
}

.title {
    color: #f2f2f2;
}

.title:hover {
    color: #9058D7;
}

.date, .read {
    color: #A1A1AA;
    font-family: "Courier Prime", monospace;
    font-weight: 100;
    font-size: 12px;
}

.modal-dialog {
    overflow: hidden;
}

.modal-body {
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal-body::-webkit-scrollbar {
    display: none;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
    padding-left: 0;
}

.modal-content {
    background-color: #0D0D0D;   
    color: #f2f2f2;              
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 4px;
}

.profile-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.profile-chip img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #9058D7;
}

.profile-chip .name {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.text {
    color: #A1A1AA;
    font-family: "Courier Prime", monospace;
    font-weight: 100;
    font-size: 12px;
}

.modal-body {
    border: none;
    padding: 4px;
}

.modal-body .read {
    font-size: 12px;
}

.modal-body p {
    font-weight: 200;
    font-size: 14px;
}

.modal button {
    background-color: #f2f2f2;
    color: #0D0D0D;
    padding: 10px 30px;
    border-radius: 12px;
    width: 100%;
}

.modal button:hover {
    background-color: #0D0D0D;
    color: #f2f2f2;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0;
}

footer {
    background-color: #0D0D0D;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 576px) {
    
}