



/* 搜索框样式 */
.search-container {
    margin: 20px;
    position: relative;
    z-index: 100;
}

.search-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    border-radius: 24px;
    padding: 8px 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(249, 115, 22, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(249, 115, 22, 0.5);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-box:focus-within {
    box-shadow: 
        0 15px 50px rgba(249, 115, 22, 0.6),
        0 0 0 4px rgba(245, 158, 11, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(245, 158, 11, 0.7);
    transform: translateY(-2px);
}

.search-icon {
    color: #f97316;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.4));
    transition: all 0.3s ease;
}

.search-box:focus-within .search-icon {
    color: #eab308;
    transform: scale(1.1);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff0e0;
    font-size: 1rem;
    padding: 8px 0;
    font-weight: 500;
}

.search-input::placeholder {
    color: rgba(255, 240, 224, 0.5);
    font-weight: 400;
}

.search-clear-btn {
    background: linear-gradient(135deg, #f97316, #f59e0b);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 12px rgba(249, 115, 22, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2);
}

.search-clear-btn:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 
        0 6px 18px rgba(245, 158, 11, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.3);
}

.search-clear-btn:active {
    transform: scale(0.95);
}

.search-clear-btn svg {
    width: 14px;
    height: 14px;
}

/* 搜索结果样式 */
.search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    border-radius: 20px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 0 3px rgba(249, 115, 22, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(249, 115, 22, 0.5);
    backdrop-filter: blur(15px);
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
    animation: slideDown 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-results::-webkit-scrollbar {
    width: 10px;
}

.search-results::-webkit-scrollbar-track {
    background: rgba(45, 24, 16, 0.5);
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(249, 115, 22, 0.2);
}

.search-results::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f97316, #f59e0b);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(249, 115, 22, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f59e0b, #eab308);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.7);
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 2px solid rgba(249, 115, 22, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.search-result-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transition: left 0.6s ease;
}

.search-result-item:hover::before {
    left: 100%;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
    padding-left: 25px;
}

.search-result-item:active {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25) 0%, rgba(245, 158, 11, 0.25) 100%);
}

.search-result-img {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    object-fit: cover;
    margin-right: 15px;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(249, 115, 22, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.search-result-item:hover .search-result-img {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 
        0 10px 30px rgba(249, 115, 22, 0.5),
        0 0 0 3px rgba(245, 158, 11, 0.4);
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    color: #f97316;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    text-shadow: 0 2px 6px rgba(249, 115, 22, 0.4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-desc {
    color: #fff0e0;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
    opacity: 0.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.search-no-results {
    padding: 30px 20px;
    text-align: center;
    color: #fff0e0;
    font-size: 1rem;
    opacity: 0.7;
}

.search-no-results svg {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    color: #f97316;
    opacity: 0.5;
}

/* 轮播图样式 */
.carousel-container {
    position: relative;
    margin: 20px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 15px 50px rgba(249, 115, 22, 0.5),
        0 0 0 3px rgba(245, 158, 11, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    border: 3px solid rgba(249, 115, 22, 0.5);
    backdrop-filter: blur(15px);
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 300px;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    cursor: pointer;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(45, 24, 16, 0.95), rgba(45, 24, 16, 0.7), transparent);
    color: white;
}

.carousel-slide-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    text-shadow: 
        0 3px 10px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(249, 115, 22, 0.5);
    background: linear-gradient(135deg, #ffffff, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-slide-desc {
    font-size: 0.95rem;
    opacity: 0.95;
    margin: 0;
    line-height: 1.5;
    color: #fff0e0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    border: 3px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 20px rgba(249, 115, 22, 0.6),
        0 0 0 2px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    color: #ffffff;
    font-weight: 700;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
    transform: scale(1.15);
    box-shadow: 
        0 10px 30px rgba(245, 158, 11, 0.8),
        0 0 0 3px rgba(255, 255, 255, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.5), rgba(245, 158, 11, 0.5));
    border: 3px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.carousel-indicator.active {
    background: linear-gradient(135deg, #f97316, #f59e0b);
    border-color: #ffffff;
    transform: scale(1.3);
    box-shadow: 
        0 0 15px rgba(249, 115, 22, 0.8),
        0 0 0 2px rgba(255, 255, 255, 0.5);
}

.carousel-indicator:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.8), rgba(245, 158, 11, 0.8));
    transform: scale(1.15);
}

/* 可滚动的游戏展示区域 */
.scbua-recommend-content-scrollable {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 10px;
    padding: 20px;
    background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    border-radius: 0 0 20px 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(249, 115, 22, 0.4);
    backdrop-filter: blur(15px);
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #f97316 rgba(45, 24, 16, 0.5);
}

.scbua-recommend-content-scrollable::-webkit-scrollbar {
    width: 10px;
}

.scbua-recommend-content-scrollable::-webkit-scrollbar-track {
    background: rgba(45, 24, 16, 0.5);
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(249, 115, 22, 0.2);
}

.scbua-recommend-content-scrollable::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f97316, #f59e0b);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(249, 115, 22, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.scbua-recommend-content-scrollable::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f59e0b, #eab308);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.7);
}

.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    padding: 4%;
    border: 3px solid rgba(249, 115, 22, 0.4);
    border-radius: 20px;
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(249, 115, 22, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
}

/* .recommend-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.15), transparent);
    transition: left 0.8s ease;
} */

.recommend-item:hover::before {
    left: 100%;
}

.recommend-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 20px 50px rgba(249, 115, 22, 0.5),
        0 0 0 3px rgba(245, 158, 11, 0.5),
        0 0 25px rgba(249, 115, 22, 0.3);
    border-color: rgba(245, 158, 11, 0.6);
}

.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px rgba(249, 115, 22, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.recommend-item img:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(245, 158, 11, 0.6),
        inset 0 0 0 2px rgba(245, 158, 11, 0.5);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 12px;
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #f97316;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(249, 115, 22, 0.5);
}
.recommend-item-info p {
    display: flex;
    color: #fff0e0;
    font-size: 0.8rem;
    margin: 10px 10px;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 35px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 25%, #f59e0b 50%, #eab308 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    border-radius: 12px;
    box-shadow: 
        0 6px 25px rgba(249, 115, 22, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.5);
    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 10px 35px rgba(245, 158, 11, 0.7),
        0 0 0 3px rgba(255, 255, 255, 0.4);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.recommend-item-btn:hover img {
    transform: scale(1.1);
}

.scbua-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 10px;
    padding: 20px;
    background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    border-radius: 0 0 20px 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(249, 115, 22, 0.4);
    backdrop-filter: blur(15px);
}

.scbua-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 10px 20px;
    padding: 20px;
    background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    border-radius: 20px;
    box-shadow: 
        0 15px 50px rgba(249, 115, 22, 0.4),
        0 0 0 3px rgba(245, 158, 11, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(249, 115, 22, 0.5);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.scbua-recommend-content-hot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f97316, #f59e0b, #eab308, #f97316);
    background-size: 200% 100%;
    animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.scbua-recommend-content img {
    width: 100%;
}



.scbua-recommend-content-hot img {
    width: 100%;
}

/* 分类宫格区域样式 */
.category-grid-container {
    margin: 30px 20px;
    padding: 25px;
    background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    border-radius: 24px;
    box-shadow: 
        0 15px 50px rgba(249, 115, 22, 0.4),
        0 0 0 3px rgba(245, 158, 11, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(249, 115, 22, 0.5);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.category-grid-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f97316, #f59e0b, #eab308, #f97316);
    background-size: 200% 100%;
    animation: gradientFlow 3s linear infinite;
    z-index: 1;
}

.category-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.category-title h2 {
    font-size: 1.9rem;
    margin: 0;
    text-shadow: 
        0 3px 10px rgba(249, 115, 22, 0.6),
        0 0 15px rgba(245, 158, 11, 0.4);
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #f97316, #f59e0b, #eab308);
    -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, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 3px solid rgba(249, 115, 22, 0.4);
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(249, 115, 22, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: inherit;
    transform-style: preserve-3d;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #f59e0b, #eab308);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.category-item:hover {
    transform: translateY(-12px) rotateX(5deg) scale(1.05);
    box-shadow: 
        0 25px 60px rgba(249, 115, 22, 0.6),
        0 0 0 3px rgba(245, 158, 11, 0.5),
        0 0 30px rgba(249, 115, 22, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    border-color: rgba(245, 158, 11, 0.8);
    background: linear-gradient(145deg, #3d2518 0%, #4a3020 50%, #5a3d2a 100%);
}

.category-item:hover::before {
    opacity: 1;
}

.category-item:hover .category-icon {
    transform: rotateY(180deg) scale(1.15);
    box-shadow: 
        0 10px 30px rgba(249, 115, 22, 0.7),
        0 0 0 3px rgba(255, 255, 255, 0.3);
}

.category-item:hover::after {
    transform: scaleX(1);
}

.category-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
    background: linear-gradient(145deg, #f97316, #f59e0b, #eab308);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 8px 25px rgba(249, 115, 22, 0.6),
        0 0 0 2px rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    overflow: hidden;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: iconShimmer 3s linear infinite;
}

@keyframes iconShimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.category-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    position: relative;
    z-index: 1;
}

.category-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.7),
        0 0 12px rgba(249, 115, 22, 0.4);
    text-align: center;
    z-index: 2;
    line-height: 1.3;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.category-item:hover .category-name {
    text-shadow: 
        0 3px 10px rgba(0, 0, 0, 0.8),
        0 0 18px rgba(245, 158, 11, 0.6);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .category-item {
        height: 105px;
    }
    
    .scbua-recommend-content-scrollable {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .carousel-wrapper {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .search-container {
        margin: 15px;
    }
    
    .search-box {
        padding: 6px 15px;
        border-radius: 20px;
    }
    
    .search-input {
        font-size: 0.9rem;
    }
    
    .search-result-img {
        width: 50px;
        height: 50px;
    }
    
    .search-result-title {
        font-size: 0.9rem;
    }
    
    .search-result-desc {
        font-size: 0.8rem;
    }
    
    .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);
    }
    
    .scbua-recommend-content-scrollable {
        grid-template-columns: repeat(2, 1fr);
        max-height: 400px;
    }
    
    .carousel-wrapper {
        height: 200px;
    }
    
    .carousel-slide-title {
        font-size: 1.2rem;
    }
    
    .carousel-slide-desc {
        font-size: 0.8rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .scbua-category-nav {
        gap: 5px;
    }
    
    .category-nav-item {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .category-item {
        height: 80px;
    }
    
    .category-title h2 {
        font-size: 1.5rem;
    }
    
    .scbua-recommend-content-scrollable {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 15px;
        max-height: 350px;
    }
    
    .carousel-wrapper {
        height: 180px;
    }
    
    .carousel-slide-title {
        font-size: 1rem;
    }
    
    .carousel-slide-desc {
        font-size: 0.75rem;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
    }
    
    .carousel-indicator {
        width: 8px;
        height: 8px;
    }
}

/* SEO Content Section Styles */
.seo-content-section {
    background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    padding: 40px 12px;
    margin: 40px 20px;
    border-radius: 24px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(249, 115, 22, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(249, 115, 22, 0.5);
    backdrop-filter: blur(15px);
}

.seo-content-section h2 {
    background: linear-gradient(135deg, #f97316, #f59e0b, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 
        0 3px 10px rgba(249, 115, 22, 0.5),
        0 0 15px rgba(245, 158, 11, 0.3);
    font-weight: 800;
}

.seo-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    background: linear-gradient(145deg, rgba(61, 37, 24, 0.6) 0%, rgba(74, 48, 32, 0.6) 100%);
    padding: 25px;
    border-radius: 16px;
    border: 2px solid rgba(249, 115, 22, 0.4);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, rgba(61, 37, 24, 0.8) 0%, rgba(74, 48, 32, 0.8) 100%);
    box-shadow: 
        0 15px 45px rgba(249, 115, 22, 0.5),
        0 0 0 3px rgba(245, 158, 11, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(245, 158, 11, 0.6);
}

.benefit-item h3 {
    background: linear-gradient(135deg, #f97316, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
}

.benefit-item p {
    color: #fff0e0;
    line-height: 1.6;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Game Types Section */
.game-types-section {
    background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    padding: 40px 25px;
    margin: 40px 20px;
    border-radius: 24px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(249, 115, 22, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(249, 115, 22, 0.5);
    backdrop-filter: blur(15px);
}

.game-types-section h2 {
    background: linear-gradient(135deg, #f97316, #f59e0b, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 800;
    text-shadow: 
        0 3px 10px rgba(249, 115, 22, 0.5),
        0 0 15px rgba(245, 158, 11, 0.3);
}

.game-type-info h3 {
    background: linear-gradient(135deg, #f97316, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    margin: 25px 0 10px 0;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
}

.game-type-info p {
    color: #fff0e0;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Category Subtitle */
.category-subtitle {
    color: #fff0e0;
    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;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}




