.hdcbza-game-container {
    margin: 15px 20px;
}

.hdcbza-category-intro {
    background: linear-gradient(135deg, #ffffff 0%, #f6f7fc 100%);
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(107, 126, 232, 0.1);
    border: 2px solid #e2e4ef;
    padding: 28px;
    margin: 25px 0 35px 0;
    position: relative;
    overflow: hidden;
}

.hdcbza-category-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6b7ee8 0%, #8b7ee8 50%, #6b7ee8 100%);
    border-radius: 20px 20px 0 0;
}

.hdcbza-category-intro::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(107, 126, 232, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hdcbza-category-intro p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

.hdcbza-category-intro p::first-letter {
    color: #6b7ee8;
    font-size: 2rem;
    font-weight: 800;
    float: left;
    margin-right: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(107, 126, 232, 0.2);
}

.hdcbza-game-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
    margin: 35px 0px;
    background: linear-gradient(135deg, #ffffff 0%, #f6f7fc 100%);
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(107, 126, 232, 0.1);
    border: 2px solid #e2e4ef;
    position: relative;
    overflow: hidden;
}

.hdcbza-game-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6b7ee8 0%, #8b7ee8 50%, #6b7ee8 100%);
    border-radius: 20px 20px 0 0;
}

.hdcbza-game-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #6b7ee8, transparent);
    transition: width 0.4s ease;
}

.hdcbza-game-title:hover::after {
    width: 60%;
}

.hdcbza-game-title p {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0px;
    padding: 0px 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.hdcbza-game-title img {
    width: 36px;
    height: 36px;
    display: block;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hdcbza-game-title:hover img {
    transform: rotate(15deg) scale(1.1);
}

.hdcbza-game-item-div {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 10px 0;
}

.hdcbza-nav-game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}


.hdcbza-nav-game-info p {
    color: #000;
    margin: 0px;
    font-size: 0.8rem;
}

.recommend {
    margin: 10px 1rem;
}

.recommend-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns layout */
    gap: 0.5rem;
    /* Gap between items */
}

.hdcbza-recommend-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

