body {
    padding-top: 80px;
    padding-bottom: 11%;
    width: 100%;
    overflow-x: hidden;
    background: linear-gradient(to bottom right, #050020, #030033, #000000);
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    backdrop-filter: blur(12px);
    background: linear-gradient(90deg, rgba(255, 94, 0, 0.199), rgba(121, 40, 202, 0.2));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card {
    backdrop-filter: blur(12px);
    background: linear-gradient(90deg, rgba(255, 94, 0, 0.13), rgba(121, 40, 202, 0.2));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 28px;
    font-weight: bold;
    color: #ff5e00 !important;
}

.nav-link {
    color: #3399ff !important;
    font-size: 18px;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.search-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.input-search {
    background-color: #1f1f1f;
    border: 1px solid #ff5e00;
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
    width: 100%;
    outline: none;
    font-size: 16px;
}

.btn-search {
    margin-left: -45px;
    background: none;
    border: none;
    color: #ff5e00;
    font-size: 18px;
}

h2.category-title {
    margin-top: 60px;
    font-size: 2rem;
    color: #ff5e00;
    border-bottom: 2px solid #ff5e00;
    display: inline-block;
    padding-bottom: 5px;
}

.card {
    background-color: #1e1e1e;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(121, 40, 202, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.card-title {
    color: #ffffff;
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
    border-radius: 18px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.8);
        border-radius: 10px;
        padding: 10px;
    }

    .nav-link {
        color: white !important;
    }

    .search-box {
        width: 100%;
    }
}

.carousel-caption-hover {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-radius: 10x;
    color: #fff;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-item:hover .carousel-caption-hover {
    opacity: 1;
}

.carousel-item {
    position: relative;
}

.carousel-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.carousel-item {
    position: relative;
    overflow: hidden;
}

.carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.28);
    transition: 0.3s ease;
    z-index: -1;
}

.carousel-item img {
    transition: transform 0.4s ease;
    position: relative;
    z-index: 0;
}

.carousel-item:hover::before {
    background-color: transparent;
}

.carousel-item:hover img {
    transform: scale(1.05);
}