body {
    max-width: 660px;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    margin: 0 auto;
    padding: 0;
    background: linear-gradient(135deg, #1a0a00 0%, #2d1810 25%, #3d2518 50%, #4a3020 75%, #5a3d2a 100%);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: #fff5f0;
    line-height: 1.6;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 25%; }
    50% { background-position: 0% 50%; }
    75% { background-position: 100% 75%; }
    100% { background-position: 0% 50%; }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(251, 146, 60, 0.15), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(251, 191, 36, 0.15), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(245, 158, 11, 0.12), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(239, 68, 68, 0.12), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particlesMove 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particlesMove {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-200px); }
}

.scbua-navbar {
    max-width: 660px;
    display: flex;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 25%, #f59e0b 50%, #eab308 100%);
    background-size: 300% 300%;
    color: #FFFFFF;
    height: 80px;
    z-index: 10;
    box-shadow: 
        0 12px 40px rgba(249, 115, 22, 0.5),
        0 4px 15px rgba(245, 158, 11, 0.4);
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    animation: headerGlow 5s ease-in-out infinite alternate-reverse;
    backdrop-filter: blur(15px);
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
}

.scbua-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shimmer 3s infinite;
}

@keyframes headerGlow {
    0% { 
        box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5), 0 4px 15px rgba(245, 158, 11, 0.4);
        background-position: 0% 50%;
    }
    50% { 
        box-shadow: 0 16px 50px rgba(245, 158, 11, 0.7), 0 6px 20px rgba(234, 179, 8, 0.5);
        background-position: 100% 50%;
    }
    100% { 
        box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5), 0 4px 15px rgba(245, 158, 11, 0.4);
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.scbua-category-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scbua-category-nav::-webkit-scrollbar {
    display: none;
}

.category-nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.category-nav-item::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.6s ease;
}

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

.category-nav-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.2) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 20px rgba(16, 185, 129, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.category-nav-item:active {
    transform: translateY(-1px) scale(1.02);
}

#nav-open {
    display: block;
    position: relative;   
    height: 3vh;
}

#nav-close {
    display: none;
    position: relative;   
    height: 4vh;
}

.scbua-nav-logo img {
    height: 4vh;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.5));
    transition: transform 0.3s ease;
}

.scbua-nav-logo img:hover {
    transform: scale(1.1) rotate(-5deg);
}

.scbua-menu {
    display: flex;
    width: 30%;
    flex-direction: column;
    gap: 35px;
    background: linear-gradient(135deg, #1a3a1a 0%, #2a5a2a 100%);
    position: absolute;
    align-items: start;
    height: 100vh;
    top: 6vh;
    right: 0px;
    padding: 35px 1rem;
    z-index: 10;
    margin: 0;
    list-style-type: none;
    display: none;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    border-left: 3px solid rgba(249, 115, 22, 0.5);
}

.scbua-menu li {
    position: relative;
}

.scbua-menu li a:hover {
    color: #f97316;
}

.scbua-menu.open {
    display: flex;
    flex-direction: column;
}

.scbua-menu.open #nav-open {
    display: none;
}

.scbua-menu.open #nav-close {
    display: block;
}

.scbua-menu li a {
    font-size: 1rem;
    color: #fff5f0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.scbua-menu li a:hover {
    color: #f97316;
    background: rgba(249, 115, 22, 0.15);
    transform: translateX(5px);
}

#scbua-menu {
    animation: fadeIn 0.1s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0.3;
        width: 0%;
    }

    100% {
        opacity: 1;
        width: 30%;
    }
}

.scbua-game-item {
    border-radius: 20px;
    position: relative;
    background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    padding: 16px;
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(249, 115, 22, 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);
    border: 2px solid rgba(249, 115, 22, 0.4);
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.scbua-game-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
    transition: left 0.8s ease;
}

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

.scbua-game-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #f59e0b, #eab308);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.scbua-game-item:hover {
    transform: translateY(-12px) 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 30px rgba(249, 115, 22, 0.3);
    background: linear-gradient(135deg, #3d2518 0%, #4a3020 50%, #5a3d2a 100%);
    border-color: rgba(245, 158, 11, 0.6);
}

.scbua-game-item a {
    text-decoration: none;
}

.scbua-game-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    box-shadow: 
        0px 10px 30px 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);
    filter: saturate(0.95) brightness(0.95);
    position: relative;
}

.scbua-game-cover img:hover {
    transform: scale(1.08) rotate(1deg);
    border-radius: 18px;
    box-shadow: 
        0px 18px 45px rgba(249, 115, 22, 0.6),
        0 0 0 3px rgba(245, 158, 11, 0.5);
    filter: saturate(1.2) brightness(1.1);
}

.scbua-game-cover-recommend img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.scbua-game-item h3 {
    color: #fff;
    margin: 5px 0px;
    font-size: 0.75rem;
}

.scbua-game-item p {
    color: #000;
    margin: 0px;
    font-size: 1rem;
}

.scbua-game-info {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding: 5px;
}

.scbua-game-info p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    max-height: 4.5em;
    font-size: 0.9rem;
    color: #fff0e0;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.scbua-game-info p:last-child { 
    font-size: 0.75rem;
    color: #ffd0a0;
    font-weight: 400;
}

.common-game-right {
    display: flex;
    width: 20%;
    background: linear-gradient(45deg, #f97316, #f59e0b);
    border-radius: 5px;
    right: 0px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
}

.scbua-recomed-div {
    margin: 0px 10px;
    border-radius: 5px;
    padding: 10px 0px;
}

.scbua-detail-recomed-div {
    margin: 10px 20px;
    border-radius: 5px;
    padding: 10px 0px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 25%, #f59e0b 50%, #eab308 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    border-radius: 16px 16px 0 0;
    box-shadow: 
        0 6px 25px rgba(249, 115, 22, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: titleShimmer 3s ease-in-out infinite;
}

.section-title p {
    color: #ffffff;
    font-size: 1.15rem;
    margin: 14px 0px;
    font-weight: 800;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.8px;
    position: relative;
    z-index: 1;
}

.scbua-common-recommend-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    border-radius: 20px;
    box-shadow: 
        0 10px 35px rgba(249, 115, 22, 0.35),
        0 0 0 3px rgba(245, 158, 11, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible;
    border: 3px solid rgba(249, 115, 22, 0.4);
    backdrop-filter: blur(15px);
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scbua-common-recommend-title:hover {
    box-shadow: 
        0 15px 45px rgba(249, 115, 22, 0.5),
        0 0 0 4px rgba(245, 158, 11, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.badge-card {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.badge-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 16px;
    background: inherit;
    filter: blur(8px);
    opacity: 0.5;
    z-index: -1;
}

.badge-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.badge-icon-pink {
    background: linear-gradient(135deg, #f97316, #f59e0b);
    color: #ffffff;
}

.badge-icon-purple {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: #ffffff;
}

.badge-icon-orange {
    background: linear-gradient(135deg, #f59e0b, #eab308);
    color: #ffffff;
}

.badge-icon-blue {
    background: linear-gradient(135deg, #d97706, #ea580c);
    color: #ffffff;
}

.badge-icon-green {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #ffffff;
}

.badge-icon-yellow {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #ffffff;
}

.badge-icon-red {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: #ffffff;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-title {
    color: #f97316;
    font-size: 1.15rem;
    margin: 0;
    font-weight: 800;
    text-shadow: 
        0 2px 8px rgba(249, 115, 22, 0.5),
        0 0 15px rgba(245, 158, 11, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.badge-subtitle {
    color: #fff0e0;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
}

.badge-more-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(245, 158, 11, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    text-decoration: none;
    box-shadow: 
        0 4px 15px rgba(249, 115, 22, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.badge-more-btn:hover {
    background: linear-gradient(135deg, #f97316, #f59e0b);
    color: #ffffff;
    transform: translateX(5px) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(245, 158, 11, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.2);
}

.badge-more-btn:active {
    transform: translateX(3px) scale(1.05);
}

.badge-more-btn svg {
    transition: transform 0.3s ease;
}

.badge-more-btn:hover svg {
    transform: scale(1.2);
}

.scbua-common-recommend-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.scbua-common-recommend-content-2 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.scbua-game-big-2 {
    grid-column: span 2;
    grid-row: span 2;
}

.game-big-3 {
    grid-column: span 3;
    grid-row: span 3;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background: linear-gradient(135deg, #1a0a00 0%, #2d1810 100%);
    text-align: center;
    margin-top: 30px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
    border-top: 3px solid rgba(249, 115, 22, 0.4);
}

.scbua-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.scbua-footer-links a {
    font-size: 0.7em;
    color: #f97316;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.scbua-footer-links a:hover {
    color: #eab308;
    background: rgba(249, 115, 22, 0.15);
    transform: translateY(-2px);
}

footer .scbua-copyright {
    font-size: 0.8em;
    color: #f97316;
    margin: 10px 0px;
    text-shadow: 0 1px 5px rgba(249, 115, 22, 0.3);
}

#back-top,
#back-home {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#flow {
    position: fixed;
    bottom: 120px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #f59e0b 100%);
    padding: 15px;
    gap: 15px;
    border-radius: 50px;
    box-shadow: 
        0 10px 35px rgba(249, 115, 22, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    z-index: 1000;
}

#flow:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #eab308 100%);
    box-shadow: 
        0 15px 50px rgba(245, 158, 11, 0.7),
        0 0 0 4px rgba(255, 255, 255, 0.4);
    transform: translateY(-10px) scale(1.05);
}

#back-top,
#back-home {
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

#back-top:hover,
#back-home:hover {
    transform: scale(1.2);
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.scbua-game-detail-title {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 2rem;
    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);
    margin: 20px;
    border: 3px solid rgba(249, 115, 22, 0.5);
    backdrop-filter: blur(15px);
}

.scbua-game-detail-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f97316, #f59e0b, #eab308);
    border-radius: 24px 24px 0 0;
}

.game-detail-wrapper {
    margin: 20px;
    position: relative;
}

.game-detail-hero-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    border-radius: 32px;
    box-shadow: 
        0 25px 70px rgba(249, 115, 22, 0.45),
        0 0 0 3px rgba(245, 158, 11, 0.35),
        inset 0 2px 0 rgba(255, 255, 255, 0.12);
    border: 3px solid rgba(249, 115, 22, 0.45);
    backdrop-filter: blur(15px);
    overflow: hidden;
    position: relative;
    min-height: 520px;
}

.game-detail-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f97316, #f59e0b, #eab308, #f97316);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
    z-index: 10;
}

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

.game-detail-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
}

.game-detail-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.game-detail-hero-section:hover .game-detail-image-container img {
    transform: scale(1.05);
}

.image-shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.game-detail-hero-section:hover .image-shine-effect {
    left: 100%;
}

.game-detail-content-container {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 5;
}

.game-detail-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 
        0 4px 15px rgba(249, 115, 22, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.2);
    width: fit-content;
}

.game-detail-main-title {
    color: #f97316;
    font-size: 3rem;
    margin: 0;
    font-weight: 900;
    text-shadow: 
        0 4px 12px rgba(249, 115, 22, 0.6),
        0 0 25px rgba(245, 158, 11, 0.35);
    letter-spacing: 0.5px;
    line-height: 1.15;
}

.game-detail-main-desc {
    color: #fff0e0;
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0.92;
}

.game-detail-cta-section {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.game-detail-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 50%, #eab308 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    border-radius: 20px;
    padding: 18px 42px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 
        0 12px 45px rgba(249, 115, 22, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.45);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.game-detail-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.7s ease;
}

.game-detail-cta-btn:hover::before {
    left: 100%;
}

.game-detail-cta-btn:hover {
    transform: translateY(-6px) scale(1.06);
    box-shadow: 
        0 22px 65px rgba(245, 158, 11, 0.8),
        0 0 0 4px rgba(255, 255, 255, 0.5);
}

.game-detail-cta-btn:active {
    transform: translateY(-3px) scale(1.03);
}

.game-detail-cta-btn svg {
    transition: transform 0.3s ease;
}

.game-detail-cta-btn:hover svg {
    transform: scale(1.25) rotate(5deg);
}

.game-detail-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(245, 158, 11, 0.25));
    border: 2px solid rgba(249, 115, 22, 0.5);
    border-radius: 16px;
    padding: 16px 28px;
    color: #f97316;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 6px 20px rgba(249, 115, 22, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.game-detail-share-btn:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.4), rgba(245, 158, 11, 0.4));
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(249, 115, 22, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.game-detail-share-btn svg {
    transition: transform 0.3s ease;
}

.game-detail-share-btn:hover svg {
    transform: scale(1.15);
}

.game-detail-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 2px solid rgba(249, 115, 22, 0.2);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff0e0;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.85;
}

.stat-item svg {
    color: #f97316;
    filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.4));
}

.game-detail-container {
    margin: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    border-radius: 28px;
    box-shadow: 
        0 20px 60px 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.1);
    border: 3px solid rgba(249, 115, 22, 0.5);
    backdrop-filter: blur(15px);
    overflow: hidden;
    position: relative;
}

.game-detail-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f97316, #f59e0b, #eab308);
    z-index: 10;
}

.game-detail-main-image {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 24px;
    margin: 10px;
}

.game-detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 0 3px rgba(255, 138, 92, 0.3);
    transition: transform 0.6s ease;
}

.game-detail-container:hover .game-detail-main-image img {
    transform: scale(1.02);
}

.image-glow-effect {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: radial-gradient(circle at center, rgba(255, 107, 157, 0.3), transparent 70%);
    filter: blur(30px);
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

.game-detail-info-panel {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.info-panel-header {
    position: relative;
    padding-bottom: 20px;
}

.info-panel-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #f59e0b);
    border-radius: 2px;
}

.game-detail-title-text {
    color: #f97316;
    font-size: 2.8rem;
    margin: 0;
    font-weight: 800;
    text-shadow: 
        0 3px 10px rgba(249, 115, 22, 0.6),
        0 0 20px rgba(245, 158, 11, 0.4);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.game-detail-description {
    color: #fff0e0;
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.game-detail-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.game-detail-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 50%, #eab308 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    border-radius: 18px;
    padding: 18px 40px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 
        0 10px 40px rgba(249, 115, 22, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.game-detail-play-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.6s ease;
}

.game-detail-play-btn:hover::before {
    left: 100%;
}

.game-detail-play-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(245, 158, 11, 0.8),
        0 0 0 4px rgba(255, 255, 255, 0.5);
}

.game-detail-play-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.game-detail-play-btn svg {
    transition: transform 0.3s ease;
}

.game-detail-play-btn:hover svg {
    transform: scale(1.2);
}

.game-detail-hero {
    margin: 20px;
    background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    border-radius: 28px;
    box-shadow: 
        0 20px 60px 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.1);
    border: 3px solid rgba(249, 115, 22, 0.5);
    backdrop-filter: blur(15px);
    overflow: hidden;
    position: relative;
}

.game-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f97316, #f59e0b, #eab308);
    z-index: 10;
}

.game-detail-hero-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.game-detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.game-detail-hero:hover .game-detail-hero-image img {
    transform: scale(1.03);
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(45, 24, 16, 0.95) 0%, rgba(45, 24, 16, 0.7) 50%, transparent 100%);
    pointer-events: none;
}

.game-detail-hero-content {
    padding: 30px 40px 40px;
    position: relative;
    z-index: 5;
}

.game-detail-title-text {
    color: #f97316;
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    font-weight: 800;
    text-shadow: 
        0 3px 10px rgba(249, 115, 22, 0.6),
        0 0 20px rgba(245, 158, 11, 0.4);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.game-detail-description {
    color: #fff0e0;
    font-size: 1.1rem;
    margin: 0 0 30px 0;
    line-height: 1.7;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    opacity: 0.9;
}

.game-detail-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 50%, #eab308 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    border-radius: 18px;
    padding: 16px 36px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 
        0 10px 40px rgba(249, 115, 22, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.game-detail-play-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.6s ease;
}

.game-detail-play-btn:hover::before {
    left: 100%;
}

.game-detail-play-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(245, 158, 11, 0.8),
        0 0 0 4px rgba(255, 255, 255, 0.5);
}

.game-detail-play-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.game-detail-play-btn svg {
    transition: transform 0.3s ease;
}

.game-detail-play-btn:hover svg {
    transform: scale(1.2);
}

.scbua-game-detail-title {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 2rem;
    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);
    margin: 20px;
    border: 3px solid rgba(249, 115, 22, 0.5);
    backdrop-filter: blur(15px);
}

.scbua-game-detail-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f97316, #f59e0b, #eab308);
    border-radius: 24px 24px 0 0;
}

.game-detail-iframe {
    width: 100%;
}

.scbua-game-detail-img {
    width: 100%;
    position: relative;
}

.scbua-game-detail-img img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    aspect-ratio: 1 / 0.8;
    display: block;
    box-shadow: 
        0 15px 40px rgba(249, 115, 22, 0.5),
        0 0 0 3px rgba(245, 158, 11, 0.4);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.scbua-game-detail-img::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.3), rgba(245, 158, 11, 0.1));
    border-radius: 20px;
    filter: blur(15px);
    z-index: 0;
    opacity: 0.6;
}

.scbua-detail-info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 20px;
    order: 1;
}

.scbua-detail-info h2 {
    color: #f97316;
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    font-weight: 800;
    text-shadow: 
        0 2px 8px rgba(249, 115, 22, 0.5),
        0 0 15px rgba(245, 158, 11, 0.3);
    letter-spacing: 0.5px;
}

.scbua-detail-info p {
    color: #fff0e0;
    font-size: 1rem;
    margin: 8px 0;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.scbua-detail-info a {
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
}

.scbua-game-instructions {
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
    background: linear-gradient(135deg, #2d1810 0%, #3d2518 50%, #4a3020 100%);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 
        0 10px 35px 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);
}

.scbua-game-instructions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f97316, #f59e0b, #eab308);
    border-radius: 20px 20px 0 0;
}

.scbua-game-instructions p {
    color: #fff0e0;
    line-height: 1.6rem;
    font-size: 1rem;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.scbua-game-gameplay-button {
    display: flex;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 25%, #f59e0b 50%, #eab308 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    border-radius: 20px;
    padding: 20px 40px;
    width: fit-content;
    justify-content: center;
    align-items: center;
    box-shadow: 
        0 10px 40px rgba(249, 115, 22, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    margin: 30px auto 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scbua-game-gameplay-button::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;
}

.scbua-game-gameplay-button:hover::before {
    left: 100%;
}

.scbua-game-gameplay-button:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(245, 158, 11, 0.8),
        0 0 0 4px rgba(255, 255, 255, 0.5);
}

.scbua-game-gameplay-button img {
    width: 60px;
    height: 60px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.scbua-game-gameplay-button:hover img {
    transform: scale(1.15) rotate(5deg);
}

.scbua-game-gameplay-button p {
    color: #ffffff;
    margin: 0 15px 0 0;
    font-size: 1.25rem;
    font-weight: 800;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 255, 255, 0.3);
}

.scbua-game-iframe {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100vh;
    position: relative;
}

#iframe-menu-btn  {
    margin-top: 20px;
    margin-left: 60px;
    position: absolute;
    height: 40px;
    height: 40px;
}

#iframe-back-btn {
    margin-top: 20px;
    margin-left: 20px ;
    position: absolute;
    height: 50px;
    height: 50px;
}

.scbua-news-detail{
    color: #fff0e0;
    text-align: start;
    padding: 2rem;
    margin-top: 30px;
    background: rgba(45, 24, 16, 0.6);
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(249, 115, 22, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
}

.scbua-news-detail h3 {
    color: #f97316;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 3px 10px rgba(249, 115, 22, 0.5);
    text-align: center;
}

.scbua-news-detail h4 {
    color: #f59e0b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.scbua-news-detail p {
    color: #fff0e0;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.scbua-news-detail strong {
    color: #eab308;
    font-weight: 700;
}

.scbua-news-detail ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.scbua-news-detail li {
    color: #fff0e0;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.scbua-news-detail a {
    color: #f97316;
    text-decoration: none;
    transition: color 0.3s ease;
}

.scbua-news-detail a:hover {
    color: #eab308;
    text-decoration: underline;
}

.scbua-news-detail img{
    width: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .scbua-news-detail {
        padding: 1.5rem;
        margin-left: 15px;
        margin-right: 15px;
        border-radius: 16px;
    }
    
    .scbua-news-detail h3 {
        font-size: 1.5rem;
    }
    
    .scbua-news-detail h4 {
        font-size: 1.15rem;
    }
    
    .scbua-news-detail p,
    .scbua-news-detail li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .scbua-news-detail {
        padding: 1.2rem;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 14px;
    }
    
    .scbua-news-detail h3 {
        font-size: 1.3rem;
    }
    
    .scbua-news-detail h4 {
        font-size: 1.05rem;
        margin-top: 1.5rem;
    }
    
    .scbua-news-detail p,
    .scbua-news-detail li {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.error-page h1{
    font-size: 2em;
    color: #f97316;
}

.error-page p{
    font-size: 1.4em;
    color: #fff0e0;
    padding: 1rem;
}

.error-page img{
    width: 100%;
    padding: 2rem 1rem;
}

.scbua-game-mark {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    height: 4vh;
    position: absolute;
    border-radius: 0px 0px 10px 10px;
    top: -10px;
    left: -10px;
}

.scbua-game-mark img{
    width: 50px;
    height: 25px;
}

.scbua-game-new {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    height: 4vh;
    position: absolute;
    border-radius: 0px 0px 10px 10px;
    top: 0px;
    left: -10px;
}

.scbua-game-new img{
    width: 50px;
    height: 50px;
}

.scbua-game-mark p {
    color: #fff;
    font-size: 1rem;
    margin: 0px 10px;
}

#scbua-game-body {
    margin-top: 30px;
}

.iframe-menu {
    display: flex;
    width: 60%;
    flex-direction: column;
    gap: 35px;
    background-color: #fff;
    position: absolute;
    align-items: start;
    height: 100vh;
    top: 0vh;
    right: 0px;
    z-index: 8;
    margin: 0;
    list-style-type: none;
    display: none;
    padding: 10px 10px;
}

.iframe-menu.open {
    display: flex;
    flex-direction: column;
}

.iframe-menu li a {
    font-size: 1rem;
    color: #6a11cb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
}

.iframe-menu li a:hover {
    color: #2575fc;
    text-shadow: 0 2px 8px rgba(37, 117, 252, 0.3);
}

.iframe-list-item a{
    display: flex;
    flex-direction: row;
    margin: 0px;
    justify-content: space-between;
    align-items: center;
}

.iframe-list-item a img {
    margin: 0px;
    height: 40px;
    height: 40px;
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

.iframe-list-item a p {
    margin: 0px 20px;
    position: relative;
}

.iframe-list-item-close a{
    display: flex;
    flex-direction: row;
    margin: 0px;
    justify-content: end;
    align-items: center;
}

.iframe-list-item-close img {
    margin: 0px;
    height: 40px;
    height: 40px;
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

#iframe-close-btn {
    right: 0px;
    top: 0px;
}

@media (hover: none) and (pointer: coarse) {
    .scbua-game-item:active {
        transform: translateY(-5px) scale(0.98);
        box-shadow: 
            0 10px 30px rgba(255, 107, 157, 0.5),
            0 0 0 2px rgba(255, 138, 92, 0.5);
    }
    
    .scbua-game-cover img:active {
        transform: scale(1.05);
        filter: saturate(1.3) brightness(1.1);
    }
    
    .recommend-item-btn:active {
        transform: translateY(-3px) scale(0.95);
        box-shadow: 0 6px 25px rgba(255, 107, 157, 0.8);
    }
    
    #back-top:active,
    #back-home:active {
        transform: scale(0.9);
    }
    
    .scbua-common-recommend-title:active {
        transform: translateY(-2px);
    }
    
    .badge-icon:active {
        transform: scale(1.05);
    }
    
    .badge-more-btn:active {
        transform: translateX(3px) scale(1.05);
    }
}

@media (max-width: 768px) {
    .scbua-common-recommend-title {
        padding: 10px 14px;
        margin-bottom: 12px;
    }
    
    .badge-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
    
    .badge-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .badge-title {
        font-size: 1.05rem;
    }
    
    .badge-subtitle {
        font-size: 0.75rem;
    }
    
    .badge-more-btn {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    
    .badge-more-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .scbua-common-recommend-title {
        padding: 8px 12px;
        margin-bottom: 10px;
        border-radius: 16px;
    }
    
    .badge-card {
        gap: 10px;
    }
    
    .badge-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
    
    .badge-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .badge-title {
        font-size: 0.95rem;
    }
    
    .badge-subtitle {
        font-size: 0.7rem;
    }
    
    .badge-more-btn {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    
    .badge-more-btn svg {
        width: 16px;
        height: 16px;
    }
}

.scbua-game-item,
.recommend-item-btn,
.scbua-common-recommend-title,
.scbua-game-gameplay-button {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .game-detail-wrapper {
        margin: 15px;
    }
    
    .game-detail-hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 24px;
    }
    
    .game-detail-image-container {
        min-height: 320px;
        height: 320px;
    }
    
    .game-detail-content-container {
        padding: 35px 30px;
        gap: 20px;
    }
    
    .detail-badge {
        font-size: 0.7rem;
        padding: 5px 14px;
    }
    
    .game-detail-main-title {
        font-size: 2.2rem;
    }
    
    .game-detail-main-desc {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .game-detail-cta-section {
        gap: 12px;
    }
    
    .game-detail-cta-btn {
        padding: 16px 32px;
        font-size: 1.15rem;
        width: 100%;
        justify-content: center;
    }
    
    .game-detail-share-btn {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .game-detail-stats {
        gap: 18px;
        padding-top: 12px;
    }
    
    .stat-item {
        font-size: 0.85rem;
    }
    
    .game-detail-hero {
        margin: 15px;
        border-radius: 20px;
    }
    
    .game-detail-hero-image {
        height: 280px;
    }
    
    .game-detail-hero-content {
        padding: 20px 25px 30px;
    }
    
    .game-detail-title-text {
        font-size: 1.8rem;
    }
    
    .game-detail-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .game-detail-play-btn {
        padding: 14px 28px;
        font-size: 1.05rem;
    }
    
    .game-detail-play-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .game-detail-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 15px;
        border-radius: 20px;
    }
    
    .game-detail-main-image {
        min-height: 300px;
        margin: 10px;
    }
    
    .game-detail-info-panel {
        padding: 0 30px 30px;
        gap: 20px;
    }
    
    .info-panel-header::after {
        width: 60px;
        height: 3px;
    }
    
    .game-detail-title-text {
        font-size: 2rem;
    }
    
    .game-detail-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .game-detail-play-btn {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .game-detail-hero {
        margin: 10px;
        border-radius: 16px;
    }
    
    .game-detail-hero-image {
        height: 220px;
    }
    
    .game-detail-hero-content {
        padding: 15px 20px 25px;
    }
    
    .game-detail-title-text {
        font-size: 1.5rem;
    }
    
    .game-detail-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .game-detail-play-btn {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .game-detail-container {
        margin: 10px;
        border-radius: 16px;
    }
    
    .game-detail-main-image {
        min-height: 250px;
        margin: 8px;
    }
    
    .game-detail-info-panel {
        padding: 0 20px 25px;
        gap: 15px;
    }
    
    .info-panel-header::after {
        width: 50px;
        height: 3px;
    }
    
    .game-detail-title-text {
        font-size: 1.6rem;
    }
    
    .game-detail-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .game-detail-actions {
        flex-direction: column;
    }
    
    .game-detail-play-btn {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}
