



.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: #ff5722;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(255, 87, 34, 0.3);
}
.recommend-item-info p {
    display: flex;
    color: #4a4a4a;
    font-size: 0.8rem;
    margin: 10px 10px;
    font-weight: 500;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 50%, #ff7043 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 183, 77, 0.4);
    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(255, 152, 0, 0.7);
    background: linear-gradient(135deg, #ff5722 0%, #ff9800 50%, #ff7043 100%);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.whucsa-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 10px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(224, 247, 250, 0.8) 100%);
    border-radius: 0 0 20px 20px;
    box-shadow: 
        0 8px 32px rgba(255, 152, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 152, 0, 0.2);
    backdrop-filter: blur(10px);
}

.whucsa-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 10px 20px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(178, 235, 242, 0.9) 100%);
    border-radius: 20px;
    box-shadow: 
        0 12px 40px rgba(255, 152, 0, 0.2),
        0 0 0 1px rgba(255, 152, 0, 0.3);
    border: 1px solid rgba(255, 152, 0, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.whucsa-recommend-content-hot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ff5722, #ff7043, #ff9800);
    background-size: 200% 100%;
    animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.whucsa-recommend-content img {
    width: 100%;
}



.whucsa-recommend-content-hot img {
    width: 100%;
}

/* 分类宫格区域样式 */
.category-grid-container {
    margin: 30px 20px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(224, 247, 250, 0.9) 100%);
    border-radius: 24px;
    box-shadow: 
        0 12px 40px rgba(255, 152, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 152, 0, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.category-grid-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ff5722, #ff7043, #ff9800);
    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: #ff5722;
    margin: 0;
    text-shadow: 0 2px 10px rgba(255, 87, 34, 0.4);
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ff5722, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 0;
    perspective: 1000px;
}

.category-item {
    position: relative;
    height: 110px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(224, 247, 250, 0.9) 100%);
    border-radius: 24px;
    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 rgba(255, 152, 0, 0.3);
    box-shadow: 
        0 8px 30px rgba(255, 152, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-decoration: none;
    color: inherit;
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 87, 34, 0.15) 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, #ff9800, #ff5722);
    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(255, 152, 0, 0.5),
        0 0 0 3px rgba(255, 152, 0, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 152, 0, 0.8);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(178, 235, 242, 0.95) 100%);
}

.category-item:hover::before {
    opacity: 1;
}

.category-item:hover .category-icon {
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(255, 152, 0, 0.6),
        0 0 0 3px rgba(255, 183, 77, 0.4);
}

.category-item:hover::after {
    transform: scaleX(1);
}

.category-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    background: linear-gradient(145deg, #ff9800, #ff5722, #ff7043);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 6px 20px rgba(255, 152, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.category-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.category-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ff5722;
    text-shadow: 
        0 1px 3px rgba(255, 152, 0, 0.2);
    text-align: center;
    z-index: 2;
    line-height: 1.3;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ff5722, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-item:hover .category-name {
    text-shadow: 
        0 2px 6px rgba(255, 152, 0, 0.4);
    background: linear-gradient(135deg, #ff9800, #ff5722);
    -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: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(224, 247, 250, 0.9) 100%);
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.seo-content-section h2 {
    color: #ff5722;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}

.seo-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 152, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
}

.benefit-item h3 {
    color: #ff5722;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #37474f;
    line-height: 1.6;
    font-size: 1rem;
}

/* Game Types Section */
.game-types-section {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.game-types-section h2 {
    color: #ff5722;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.game-type-info h3 {
    color: #ff5722;
    font-size: 1.4rem;
    margin: 25px 0 10px 0;
    font-weight: 600;
}

.game-type-info p {
    color: #37474f;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Category Subtitle */
.category-subtitle {
    color: #37474f;
    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;
}

/* Game Guides Section */
.game-guides-section {
    background: linear-gradient(145deg, rgba(255, 243, 224, 0.9) 0%, rgba(255, 224, 178, 0.9) 100%);
    padding: 40px 20px;
    margin: 40px 20px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(255, 152, 0, 0.25);
    border: 2px solid rgba(255, 152, 0, 0.3);
}

.game-guides-section h2 {
    color: #ff5722;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.guide-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 225, 0.95) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 152, 0, 0.3);
    box-shadow: 0 8px 30px rgba(255, 152, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ff5722, #ff7043);
}

.guide-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 152, 0, 0.4);
    border-color: rgba(255, 152, 0, 0.6);
}

.guide-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    transition: all 0.3s ease;
}

.guide-card:hover .guide-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.6);
}

.guide-card h3 {
    color: #ff5722;
    font-size: 1.3rem;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-align: center;
}

.guide-card p {
    color: #546e7a;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: center;
}

.guide-link {
    display: inline-block;
    color: #ff9800;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.guide-link:hover {
    color: #ff5722;
    text-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}

/* Daily Featured Section */
.daily-featured-section {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 50%, #ff7043 100%);
    padding: 30px;
    margin: 40px 20px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(255, 152, 0, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.daily-featured-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.featured-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.featured-badge span {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-game-content {
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.featured-game-image {
    flex-shrink: 0;
}

.featured-game-image img {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.featured-game-info h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.featured-game-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.featured-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Quick Play Button */
.quick-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffffff, #fff9c4);
    color: #ff5722;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 20px;
}

.quick-play-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fff9c4, #ffffff);
}

/* Trending Games Widget */
.trending-widget {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 243, 224, 0.9) 100%);
    padding: 25px;
    margin: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(255, 152, 0, 0.2);
    border: 2px solid rgba(255, 152, 0, 0.3);
}

.trending-widget h3 {
    color: #ff5722;
    font-size: 1.5rem;
    margin: 0 0 20px 0;
    font-weight: 700;
    text-align: center;
}

.trending-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trending-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.trending-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.2);
}

.trending-rank {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.trending-info {
    flex: 1;
}

.trending-info h4 {
    color: #ff5722;
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.trending-info p {
    color: #78909c;
    margin: 0;
    font-size: 0.85rem;
}

/* Achievement Badge */
.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd54f, #ffb300);
    padding: 8px 16px;
    border-radius: 50px;
    color: #5d4037;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
    margin: 5px;
}

/* Responsive for new components */
@media (max-width: 768px) {
    .featured-game-content {
        flex-direction: column;
        text-align: center;
    }
    
    .featured-stats {
        justify-content: center;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
    }
}




