body {
    background-color: #080808;
    font-family: 'Inter', sans-serif;
    color: #f2f2f2;
}

/* Typography */
h1, h2, h3, h4, h5,
.sidebar-title,
.nav-link {
/*    font-family: 'Poppins', sans-serif;*/
    font-family: "Boldonse", system-ui;
    font-weight: 800;
}

h1, h2, h3, h4, h5 {
    color: #ff7a00;
}

a,
a:hover,
a:active {
    color: #ff7a00;
}

.sidebar-title {
    font-size: 2.3rem;
    color: #ff7a00;
}

.nav-link {
    font-size: 0.95rem;
    text-transform: uppercase;
    color: #ccc;
    transition: color 0.2s ease;
    align-items: center;
    padding-top: 20px;
}

.nav-link:hover, .nav-link:active, .nav-link:focus, .nav-link:visited { color: #ff7a00; }

/* Layout Width */
.container-custom {
    max-width: 60%;
}

@media (max-width: 1200px) {
    .container-custom { max-width: 85%; }
}

@media (max-width: 768px) {
    .container-custom { max-width: 95%; }
}

/* Cards */
.card {
    background-color: #000;
    border: 1px solid #1a1a1a;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link:hover .card {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(255,122,0,0.15);
    border-color: #ff7a00;
}

/* Featured Image in Cards */
.card-img-top {
    height: 240px;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.card-link:hover .card-img-top {
    opacity: 1;
}

/* Card Content */
.card-body {
    color: #ffffff;
}

.card-title {
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
    color: #ff7a00;
}

/* Left Sidebar */
.sidebar-left {
    text-align: right;
}

/* Right Sidebar Featured Grid */
.featured-grid a {
    display: block;
}

.featured-thumb {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 0.75rem;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.featured-grid a:hover .featured-thumb {
    transform: scale(1.05);
    border-color: #ff7a00;
}

/* Pagination */
.pagination .page-link {
    background-color: #000;
    border: 1px solid #333;
    color: #ccc;
}

.pagination .page-link:hover {
    background-color: #ff7a00;
    border-color: #ff7a00;
    color: #000;
}

.pagination .active .page-link {
    background-color: #ff7a00;
    border-color: #ff7a00;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .sidebar-left {
        text-align: center;
        margin-bottom: 2rem;
    }
}

.btn-orange {
    background-color: #ff7a00;
    border-color: #ff7a00;
    color: #fff;
}

.btn-orange:hover {
    background-color: #e96d00;
    border-color: #e96d00;
}

.input-group .form-control {
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0.75rem !important;
}

.input-group .btn-orange {
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0.75rem !important;
}

.emoji {
    font-size: 1.4rem;
    line-height: 1;
}

/* Keyword buttons */
.keyword-button {
  margin: 5px;
  padding: 3px 7px;
  text-decoration: none;
  color: #ffffff;
  background-color: #ff7a00;
  border: 1px solid #ff7a00;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: background-color 0.3s, color 0.3s;
}

.keyword-button:hover,
.keyword-button.active {
  background-color: #e96d00;
  color: #000000;
}