



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #FF3366;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(255, 51, 102, 0.3);
}
.recommend-item-info p {
    display: flex;
    color: #333333;
    font-size: 0.8rem;
    margin: 10px 10px;
    font-weight: 600;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 30px;
    background: #4CAF50;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #4CAF50;
    position: relative;
    overflow: hidden;
}

.recommend-item-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.recommend-item-btn:hover::before {
    left: 100%;
}

.recommend-item-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.7);
    background: #45a049;
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.ujfvjdk-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 10px;
    padding: 20px;
    background: #FF9800;
    border-radius: 0 0 16px 16px;
    box-shadow: 
        0 8px 32px rgba(255, 152, 0, 0.3);
    border: 2px solid #FF9800;
}

.ujfvjdk-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 10px 20px;
    padding: 20px;
    background: #2196F3;
    border-radius: 16px;
    box-shadow: 
        0 12px 40px rgba(33, 150, 243, 0.4);
    border: 2px solid #2196F3;
    position: relative;
    overflow: hidden;
}

.ujfvjdk-recommend-content-hot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066ff, #00a8ff, #0097e6, #0066ff);
    background-size: 200% 100%;
    animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.ujfvjdk-recommend-content img {
    width: 100%;
}



.ujfvjdk-recommend-content-hot img {
    width: 100%;
}

/* 分类宫格区域样式 */
.category-grid-container {
    margin: 30px 20px;
    padding: 20px;
    background: #9C27B0;
    border-radius: 20px;
    box-shadow: 
        0 12px 40px rgba(156, 39, 176, 0.4);
    border: 2px solid #9C27B0;
    position: relative;
    overflow: hidden;
}

.category-grid-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066ff, #00a8ff, #0097e6, #0066ff);
    background-size: 200% 100%;
    animation: gradientFlow 3s linear infinite;
    z-index: 1;
}

.category-title {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.category-title h2 {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 0;
    perspective: 1000px;
}

.category-item {
    position: relative;
    height: 110px;
    background: #FF5722;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 2px solid #FF5722;
    box-shadow: 
        0 8px 30px rgba(255, 87, 34, 0.4);
    text-decoration: none;
    color: #FFFFFF;
    transform-style: preserve-3d;
}

/* 为不同分类设置不同颜色 */
.category-item:nth-child(1) { background: #FF5722; border-color: #FF5722; }
.category-item:nth-child(2) { background: #E91E63; border-color: #E91E63; }
.category-item:nth-child(3) { background: #9C27B0; border-color: #9C27B0; }
.category-item:nth-child(4) { background: #3F51B5; border-color: #3F51B5; }
.category-item:nth-child(5) { background: #2196F3; border-color: #2196F3; }
.category-item:nth-child(6) { background: #00BCD4; border-color: #00BCD4; }
.category-item:nth-child(7) { background: #4CAF50; border-color: #4CAF50; }
.category-item:nth-child(8) { background: #FF9800; border-color: #FF9800; }

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0066ff, #00a8ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.category-item:hover {
    transform: translateY(-10px) rotateX(5deg) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 0 3px #FFFFFF;
    border-color: #FFFFFF;
}

.category-item:hover::before {
    opacity: 1;
}

.category-item:hover .category-icon {
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(0, 168, 255, 0.7),
        0 0 0 3px rgba(255, 255, 255, 0.2);
}

.category-item:hover::after {
    transform: scaleX(1);
}

.category-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.2),
        0 0 0 2px #FFFFFF;
    transition: all 0.3s ease;
    overflow: hidden;
}

.category-icon svg {
    width: 20px;
    height: 20px;
    fill: #333333;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* 为不同分类设置不同的图标颜色 */
.category-item:nth-child(1) .category-icon svg { fill: #FF5722; }
.category-item:nth-child(2) .category-icon svg { fill: #E91E63; }
.category-item:nth-child(3) .category-icon svg { fill: #9C27B0; }
.category-item:nth-child(4) .category-icon svg { fill: #3F51B5; }
.category-item:nth-child(5) .category-icon svg { fill: #2196F3; }
.category-item:nth-child(6) .category-icon svg { fill: #00BCD4; }
.category-item:nth-child(7) .category-icon svg { fill: #4CAF50; }
.category-item:nth-child(8) .category-icon svg { fill: #FF9800; }

.category-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.6);
    text-align: center;
    z-index: 2;
    line-height: 1.3;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.category-item:hover .category-name {
    text-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(0, 168, 255, 0.5);
    background: linear-gradient(135deg, #00a8ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .category-item {
        height: 105px;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-item {
        height: 95px;
        border-radius: 16px;
    }
    
    .category-icon {
        width: 38px;
        height: 38px;
    }
    
    .category-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .category-name {
        font-size: 0.88rem;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .category-item {
        height: 80px;
    }
    
    .category-title h2 {
        font-size: 1.5rem;
    }
}

/* SEO Content Section Styles */
.seo-content-section {
    background: #FFEB3B;
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 235, 59, 0.3);
    border: 2px solid #FFEB3B;
}

.seo-content-section h2 {
    color: #333333;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.seo-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #FF3366;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 51, 102, 0.2);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.4);
}

.benefit-item h3 {
    color: #FF3366;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-item p {
    color: #333333;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
}

/* Game Types Section */
.game-types-section {
    background: #4CAF50;
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 15px;
    border: 2px solid #4CAF50;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.game-types-section h2 {
    color: #FFFFFF;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.game-type-info h3 {
    color: #FFEB3B;
    font-size: 1.4rem;
    margin: 25px 0 10px 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.game-type-info p {
    color: #FFFFFF;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Category Subtitle */
.category-subtitle {
    color: #e0e0e0;
    font-size: 1.2rem;
    text-align: center;
    margin: 20px 0 40px 0;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}




