/* ============================================
   RANDOM CATEGORIES - Cyberpunk Gaming Theme
   ============================================ */

.category__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.category__item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.category__item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.category__media {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.category__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category__item:hover .category__img {
    transform: scale(1.1);
}

.category__title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 25px 0 15px;
    text-align: center;
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category__info {
    padding: 0 20px;
    margin-bottom: 20px;
}

.category__desc {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    text-align: center;
}

.category__desc span {
    color: #fff;
    font-weight: 600;
}

.category__action {
    margin: 10px 15px 15px;
    margin-top: auto;
    padding: 12px 0;
    background: linear-gradient(135deg, #00d4ff, #bc13fe);
    color: #ffffff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
    border: none;
}

.category__action:hover {
    box-shadow:
        0 8px 25px rgba(0, 212, 255, 0.4),
        0 0 20px rgba(188, 19, 254, 0.3);
    transform: translateY(-2px);
}

/* No Results - Dark Theme */
.no-results {
    grid-column: 1 / -1;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.no-results__icon {
    font-size: 4rem;
    color: #00d4ff;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.no-results__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.no-results__message {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .category__list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }

    .category__img {
        height: 180px;
    }

    .category__title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .category__list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .category__title {
        font-size: 1.8rem;
        margin: 20px 0 10px;
    }
}

@media (max-width: 480px) {
    .category__list {
        grid-template-columns: 1fr;
    }

    .category__img {
        height: 200px;
    }
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #bc13fe, #ff00ff);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}