.wpsdn-game-container {
    margin: 10px 20px;
}

.wpsdn-category-intro {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(15, 52, 96, 0.3);
    border: 1px solid rgba(74, 144, 217, 0.3);
    padding: 30px;
    margin: 20px 0 30px 0;
    position: relative;
    overflow: hidden;
}

.wpsdn-category-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(74, 144, 217, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(53, 122, 184, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.wpsdn-category-intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #4a90d9 20%, #5dade2 50%, #4a90d9 80%, transparent 100%);
}

.wpsdn-category-intro p {
    color: #e0e8f0;
    font-size: 0.95rem;
    line-height: 1.9;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.wpsdn-category-intro p::first-letter {
    color: #5dade2;
    font-size: 1.8rem;
    font-weight: 700;
    float: left;
    margin-right: 8px;
    line-height: 1.2;
}

.wpsdn-game-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 25px 0px;
    margin: 30px 0px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.wpsdn-game-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4a90d9 0%, #357ab8 50%, #4a90d9 100%);
}

.wpsdn-game-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #4a90d9;
    border-radius: 2px;
}

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

.wpsdn-game-title img {
    width: 32px;
    height: 32px;
    display: block;
    z-index: 1;
}

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

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


.wpsdn-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 */
}

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

