/* ==========================================================================
   RESOURCES & CATEGORY / SHOW PAGE STYLES (resources.css)
   Theme: Vibrant Orange & Corporate Luxury Slate
   ========================================================================== */

/* ── Category Hero ── */
.show-hero {
    position: relative;
    background: linear-gradient(135deg, #0e1422 0%, #161e31 100%);
    padding: 70px 0 80px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-dark);
}

.show-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.2;
    filter: blur(8px);
}

.show-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right, rgba(249, 115, 22, 0.15) 0%, transparent 60%);
    z-index: 2;
}

.show-hero__content {
    position: relative;
    z-index: 3;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light-muted);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--text-light-muted);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb__sep {
    color: var(--primary);
}

.show-hero__label {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.show-hero__content h1 {
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 14px;
}

.show-hero__content p {
    color: var(--text-light-muted);
    font-size: 1.05rem;
    max-width: 680px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.show-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Category Info Section ── */
.show-info {
    margin: 50px 0;
}

.show-info__text {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.show-info__text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.show-info__img {
    margin: 20px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.show-info__img img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.show-info__content {
    font-size: 0.975rem;
    color: var(--text-dark-secondary);
    line-height: 1.8;
}


/* ── Ad Block ── */
.ad-block {
    margin: 40px 0;
}

/* ── List / Featured Games Section ── */
.list-section {
    margin: 60px 0 80px;
}

.list-section__header {
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 14px;
    margin-bottom: 30px;
}

.list-section__header h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
}

/* 3 columns on laptop / desktop */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 860px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 580px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Modern Card Component */
.card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(249, 115, 22, 0.15);
    border-color: var(--primary);
}

.card--hot {
    border-color: rgba(249, 115, 22, 0.4);
}

.card__img-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card__img-wrap img {
    transform: scale(1.06);
}

.card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.card__badge--hot {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
}

.card__body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.card__body h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.35;
    margin: 0;
}

.card__body p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.card__btn {
    margin-top: auto;
    width: 100%;
}
