
.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;
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #667eea;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}
.recommend-item-info p {
    display: flex;
    color: #475569;
    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, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 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(118, 75, 162, 0.6);
    background: linear-gradient(135deg, #f093fb 0%, #764ba2 50%, #667eea 100%);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.cbdsjkax-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 10px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(243, 244, 246, 0.8) 100%);
    border-radius: 0 0 16px 16px;
    box-shadow: 
        0 8px 32px rgba(102, 126, 234, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
}

.cbdsjkax-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 10px 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 16px;
    box-shadow: 
        0 12px 40px rgba(102, 126, 234, 0.2),
        0 0 0 1px rgba(118, 75, 162, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.cbdsjkax-recommend-content-hot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 200% 100%;
    animation: gradientFlow 3s linear infinite;
}

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

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

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

.recommend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(243, 244, 246, 0.9) 100%);
    border-radius: 16px;
    padding: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    box-shadow: 
        0 6px 20px rgba(102, 126, 234, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.recommend-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    transition: left 0.6s ease;
}

.recommend-item:hover::before {
    left: 100%;
}

.recommend-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(102, 126, 234, 0.3),
        0 0 0 2px rgba(118, 75, 162, 0.3);
    border-color: rgba(102, 126, 234, 0.4);
    background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
}

.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
    width: 100%;
}

.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.recommend-item:hover img {
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.yvdcsv-grid-container {
    margin: 30px 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 244, 246, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 
        0 12px 40px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.yvdcsv-grid-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 200% 100%;
    animation: gradientFlow 3s linear infinite;
    z-index: 1;
}

.yvdcsv-title {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.yvdcsv-title h2 {
    font-size: 1.8rem;
    color: #667eea;
    margin: 0;
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.yvdcsv-item {
    position: relative;
    height: 110px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 244, 246, 0.95) 100%);
    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 rgba(102, 126, 234, 0.2);
    box-shadow: 
        0 8px 30px rgba(102, 126, 234, 0.15),
        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);
}

.yvdcsv-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yvdcsv-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.yvdcsv-item:hover {
    transform: translateY(-10px) rotateX(5deg) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(102, 126, 234, 0.3),
        0 0 0 3px rgba(118, 75, 162, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.5);
    border-color: rgba(102, 126, 234, 0.5);
    background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
}

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

.yvdcsv-item:hover .yvdcsv-icon {
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.3);
}

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

.yvdcsv-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    background: linear-gradient(145deg, #667eea, #764ba2, #f093fb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 6px 20px rgba(102, 126, 234, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.yvdcsv-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    text-shadow: none;
    text-align: center;
    z-index: 2;
    line-height: 1.3;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.yvdcsv-item:hover .yvdcsv-name {
    text-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 1024px) {
    .yvdcsv-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .yvdcsv-item {
        height: 105px;
    }
}

@media (max-width: 768px) {
    .yvdcsv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .yvdcsv-item {
        height: 95px;
        border-radius: 16px;
    }
    
    .yvdcsv-icon {
        width: 38px;
        height: 38px;
    }
    
    .yvdcsv-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .yvdcsv-name {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .yvdcsv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .yvdcsv-item {
        height: 80px;
    }
    
    .yvdcsv-title h2 {
        font-size: 1.5rem;
    }
}

.seo-content-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 244, 246, 0.95) 100%);
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.seo-content-section h2 {
    color: #667eea;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.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(102, 126, 234, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

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

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

.game-types-section {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

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

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

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

.yvdcsv-subtitle {
    color: #475569;
    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-guide-section {
    margin: 30px 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
    border: 2px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.game-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f093fb, #f5576c, #ffd89b);
}

.game-guide-section h3 {
    color: #667eea;
    font-size: 1.4rem;
    margin: 0 0 20px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.game-guide-section h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    border-radius: 50%;
    margin-right: 10px;
}

.game-guide-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.guide-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(243, 244, 246, 0.9) 100%);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.guide-card .guide-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.guide-card h4 {
    color: #1e293b;
    font-size: 0.95rem;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.guide-card p {
    color: #64748b;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .game-guide-cards {
        grid-template-columns: 1fr;
    }
}

.trending-games-carousel {
    margin: 30px 20px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.trending-games-carousel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: carouselGlow 8s linear infinite;
}

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

.trending-games-carousel h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0 0 15px 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.trending-games-carousel h3::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    margin-right: 8px;
}

.trending-items {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
}

.trending-items::-webkit-scrollbar {
    height: 6px;
}

.trending-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.trending-items::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.trending-item {
    min-width: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.trending-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.trending-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.trending-item span {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    display: block;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
