body {
    max-width: 660px;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    margin: 0 auto;
    padding: 0;
    background: linear-gradient(135deg, #0a0a1e 0%, #151529 25%, #1e1e35 50%, #252542 75%, #2d2d55 100%);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: #f0f4ff;
    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%; }
}

/* Subtle background particles effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 168, 255, 0.1), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(102, 217, 255, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(0, 255, 255, 0.08), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(0, 102, 255, 0.1), 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); }
}

.gdcbdy-navbar {
    max-width: 660px;
    display: flex;
    background: linear-gradient(135deg, #0066ff 0%, #00a8ff 50%, #0097e6 100%);
    background-size: 200% 200%;
    color: #FFFFFF;
    height: 80px;
    z-index: 10;
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.4);
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    animation: headerGlow 4s ease-in-out infinite alternate-reverse;
    backdrop-filter: blur(10px);
    position: relative;
}

.gdcbdy-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes headerGlow {
    0% { 
        box-shadow: 0 12px 40px rgba(0, 102, 255, 0.4); 
        background-position: 0% 50%;
    }
    50% { 
        box-shadow: 0 16px 50px rgba(0, 168, 255, 0.6);
        background-position: 100% 50%;
    }
    100% { 
        box-shadow: 0 12px 40px rgba(0, 102, 255, 0.4); 
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

#nav-open {
    display: block;
    position: relative;   
    height: 3vh;
}

#nav-close {
    display: none;
    position: relative;   
    height: 4vh;
}



.gdcbdy-nav-logo img {
    height: 4vh;
    display: block;
}

.gdcbdy-navbar {
    display: flex;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #FFFFFF;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    position: relative;
}

.gdcbdy-menu {
    display: flex;
    width: 30%;
    flex-direction: column;
    gap: 35px;
    background-color: #fff;
    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;
}

.gdcbdy-menu li {
    position: relative;

}

.gdcbdy-menu li a:hover {
    color: #ccc;
}

.gdcbdy-menu.open {
    display: flex;
    flex-direction: column;
}

.gdcbdy-menu.open #nav-open {
    display: none;
}

.gdcbdy-menu.open #nav-close {
    display: block;
}

.gdcbdy-menu li a {
    font-size: 1rem;
    color: #6a11cb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
}

.gdcbdy-menu li a:hover {
    color: #2575fc;
    text-shadow: 0 2px 8px rgba(37, 117, 252, 0.3);
}

#gdcbdy-menu {
    animation: fadeIn 0.1s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0.3;
        width: 0%;
    }

    100% {
        opacity: 1;
        width: 30%;
    }
}

.gdcbdy-game-item {
    border-radius: 16px;
    position: relative;
    background: linear-gradient(135deg, rgba(30, 30, 63, 0.9) 0%, rgba(45, 45, 79, 0.9) 100%);
    padding: 6%;
    box-shadow: 
        0 8px 32px rgba(0, 102, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 168, 255, 0.3);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.gdcbdy-game-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.gdcbdy-game-item:hover::before {
    left: 100%;
}

.gdcbdy-game-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00a8ff, #0097e6, #0066ff);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.gdcbdy-game-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 102, 255, 0.4),
        0 0 0 2px rgba(0, 168, 255, 0.3);
    background: linear-gradient(135deg, rgba(40, 40, 80, 0.95) 0%, rgba(60, 60, 100, 0.95) 100%);
}
.gdcbdy-game-item a {
    
    text-decoration: none;
}

.gdcbdy-game-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 
        0px 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(0, 168, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: saturate(0.9) brightness(0.95);
    position: relative;
}

.gdcbdy-game-cover img:hover {
    transform: scale(1.08) rotate(1deg);
    border-radius: 16px;
    box-shadow: 
        0px 15px 40px rgba(0, 102, 255, 0.5),
        0 0 0 2px rgba(0, 168, 255, 0.4);
    filter: saturate(1.2) brightness(1.1);
    animation: imagePulse 1s ease-in-out infinite alternate;
}

@keyframes imagePulse {
    0% { box-shadow: 0px 15px 40px rgba(0, 102, 255, 0.5), 0 0 0 2px rgba(0, 168, 255, 0.4); }
    100% { box-shadow: 0px 20px 50px rgba(0, 102, 255, 0.7), 0 0 0 3px rgba(0, 255, 255, 0.6); }
}

.gdcbdy-game-cover-recommend img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.gdcbdy-game-item h3 {
    color: #fff;
    margin: 5px 0px;
    font-size: 0.75rem;

}

.gdcbdy-game-item p {
    color: #000;
    margin: 0px;
    font-size: 1rem;
}

.gdcbdy-game-info {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding: 5px;
}

.gdcbdy-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: #e0e0ff;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.gdcbdy-game-info p:last-child { 
    font-size: 0.75rem;
    color: #b0b0ff;
    font-weight: 400;
}

.common-game-right {
    display: flex;
    width: 20%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 5px;
    right: 0px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.common-game-right img {
    /* width: 60px; */
    /* height: 20px; */
}

.gdcbdy-recomed-div {
    margin: 0px 10px;
    border-radius: 5px;
    padding: 10px 0px;

}

.gdcbdy-detail-recomed-div {
    margin: 10px 20px;
    border-radius: 5px;
    padding: 10px 0px;

}

.gdcbdy-common-recommend-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    background: linear-gradient(135deg, #0066ff 0%, #00a8ff 100%);
    border-radius: 12px 12px 0 0;
    box-shadow: 
        0 4px 20px rgba(0, 102, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.gdcbdy-common-recommend-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: titleShimmer 3s ease-in-out infinite;
}

@keyframes titleShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

.gdcbdy-common-recommend-title p {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 12px 0px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.gdcbdy-common-recommend-title img {
    width: 22px;
    height: 22px;
}

.gdcbdy-common-recommend-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 0.5rem;
    /* Gap between items */
}

.gdcbdy-common-recommend-content-2 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 0.5rem;
    /* Gap between items */
}

.gdcbdy-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, #1a1a2e 0%, #16213e 100%);
    text-align: center;
    margin-top: 30px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -3px 20px rgba(0, 0, 0, 0.5);
}

.gdcbdy-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    /* Space between links */
    margin-bottom: 10px;
}

.gdcbdy-footer-links a {
    font-size: 0.7em;
    color: 	#FFD700;
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}

.gdcbdy-footer-links a:hover {
    color: #FFA500;
    text-shadow: 0 2px 8px rgba(255, 165, 0, 0.3);
}

.gdcbdy-footer-links a:hover {
    text-decoration: underline;
}

footer .gdcbdy-copyright {
    font-size: 0.8em;
    color: 	#FFD700;
    margin: 10px 0px;
    text-shadow: 0 1px 5px rgba(255, 215, 0, 0.2);
}

#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, rgba(30, 30, 63, 0.9) 0%, rgba(45, 45, 79, 0.9) 100%);
    padding: 15px;
    gap: 15px;
    border-radius: 50px;
    box-shadow: 
        0 10px 35px rgba(0, 102, 255, 0.4),
        0 0 0 2px rgba(0, 168, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(0, 168, 255, 0.4);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

#flow:hover {
    background: linear-gradient(135deg, rgba(40, 40, 80, 0.95) 0%, rgba(60, 60, 100, 0.95) 100%);
    box-shadow: 
        0 15px 50px rgba(0, 168, 255, 0.6),
        0 0 0 3px rgba(0, 255, 255, 0.5);
    transform: translateY(-8px) 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(0, 255, 255, 0.8));
}

.gdcbdy-game-detail-title {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 2rem;
    background: linear-gradient(135deg, rgba(30, 30, 63, 0.95) 0%, rgba(45, 45, 79, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 
        0 15px 50px rgba(0, 102, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin: 20px;
    border: 2px solid rgba(0, 168, 255, 0.4);
    backdrop-filter: blur(15px);
}

.gdcbdy-game-detail-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066ff, #00a8ff, #0097e6);
    border-radius: 20px 20px 0 0;
}

.game-detail-iframe {
    width: 100%;
}

.gdcbdy-game-detail-img {
    width: 100%;
    position: relative;
}

.gdcbdy-game-detail-img img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 1 / 0.8;
    display: block;
    box-shadow: 
        0 15px 40px rgba(0, 102, 255, 0.4),
        0 0 0 2px rgba(0, 168, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.gdcbdy-game-detail-img::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(45deg, rgba(0, 168, 255, 0.3), rgba(0, 255, 255, 0.1));
    border-radius: 20px;
    filter: blur(15px);
    z-index: 0;
    opacity: 0.6;
}

.gdcbdy-detail-info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 20px;
    order: 1;
}

.gdcbdy-detail-info h2 {
    color: #00a8ff;
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 168, 255, 0.4);
    letter-spacing: 0.5px;
}

.gdcbdy-detail-info p {
    color: #e0e0ff;
    font-size: 1rem;
    margin: 8px 0;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.gdcbdy-detail-info a {
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
}

.gdcbdy-game-instructions {
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
    background: linear-gradient(135deg, rgba(30, 30, 63, 0.9) 0%, rgba(45, 45, 79, 0.9) 100%);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 
        0 10px 35px rgba(0, 102, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 168, 255, 0.3);
    backdrop-filter: blur(10px);
}

.gdcbdy-game-instructions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066ff, #00a8ff, #0097e6);
    border-radius: 16px 16px 0 0;
}

.gdcbdy-game-instructions p {
    color: #e0e0ff;
    line-height: 1.6rem;
    font-size: 1rem;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}



.gdcbdy-game-gameplay-button {
    display: flex;
    background: linear-gradient(135deg, #0066ff 0%, #00a8ff 50%, #0097e6 100%);
    border-radius: 16px;
    padding: 20px 40px;
    width: fit-content;
    justify-content: center;
    align-items: center;
    box-shadow: 
        0 8px 35px rgba(0, 102, 255, 0.6),
        0 0 0 2px rgba(0, 168, 255, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    margin: 30px auto 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gdcbdy-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;
}

.gdcbdy-game-gameplay-button:hover::before {
    left: 100%;
}

.gdcbdy-game-gameplay-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 15px 50px rgba(0, 168, 255, 0.8),
        0 0 0 3px rgba(0, 255, 255, 0.6);
    background: linear-gradient(135deg, #00a8ff 0%, #0066ff 50%, #0097e6 100%);
}

.gdcbdy-game-gameplay-button img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.gdcbdy-game-gameplay-button:hover img {
    transform: scale(1.1) rotate(5deg);
}

.gdcbdy-game-gameplay-button p {
    color: #ffffff;
    margin: 0 15px 0 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gdcbdy-game-iframe {
    /* width: 100%; */
    /* max-width: 560px; */
    /* margin: 1rem 0; */
    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;
}
.gdcbdy-news-detail{
    color: #000;
    text-align: start;
    padding: 1rem;
    margin-top: 30px;
}
.gdcbdy-news-detail img{
    width: 100%;
    object-fit: contain;
}

.error-page {

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.error-page h1{
    font-size: 2em;
    color: #2D3436;
}
.error-page p{
    font-size: 1.4em;
    color: #2D3436;
    padding: 1rem;
    
}
.error-page img{
    width: 100%;
    padding: 2rem 1rem;
}

.gdcbdy-game-mark {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    /* background-color: #000; */
    height: 4vh;
    position: absolute;
    border-radius: 0px 0px 10px 10px;
    top: -10px;
    left: -10px;
}

.gdcbdy-game-mark img{
    width: 50px;
    height: 25px;
   
}

.gdcbdy-game-new {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    /* background-color: #000; */
    height: 4vh;
    position: absolute;
    border-radius: 0px 0px 10px 10px;
    top: 0px;
    left: -10px;
}

.gdcbdy-game-new img{
    width: 50px;
    height: 50px;
   
}

.gdcbdy-game-mark p {
    color: #fff;
    font-size: 1rem;
    margin: 0px 10px;
}

#gdcbdy-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) {
    .gdcbdy-game-item:active {
        transform: translateY(-5px) scale(0.98);
        box-shadow: 
            0 10px 30px rgba(0, 102, 255, 0.5),
            0 0 0 2px rgba(0, 168, 255, 0.5);
    }
    
    .gdcbdy-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(0, 168, 255, 0.8);
    }
    
    #back-top:active,
    #back-home:active {
        transform: scale(0.9);
    }
}

/* 手指可点击的组件优化 */
.gdcbdy-game-item,
.recommend-item-btn,
.gdcbdy-common-recommend-title,
.gdcbdy-game-gameplay-button {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 加载动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gdcbdy-game-item {
    animation: fadeInUp 0.6s ease forwards;
}

.gdcbdy-game-item:nth-child(1) { animation-delay: 0.1s; }
.gdcbdy-game-item:nth-child(2) { animation-delay: 0.2s; }
.gdcbdy-game-item:nth-child(3) { animation-delay: 0.3s; }
.gdcbdy-game-item:nth-child(4) { animation-delay: 0.4s; }

/* 响应式设计 - 小屏幕优化 */
@media (max-width: 480px) {
    .gdcbdy-game-item-div {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gdcbdy-recommend-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gdcbdy-recommend-content-hot {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gdcbdy-game-detail-title {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    #flow {
        bottom: 80px;
        right: 15px;
        padding: 12px;
        gap: 12px;
    }
}

/* 响应式设计 - 中屏幕优化 */
@media (min-width: 481px) and (max-width: 768px) {
    .gdcbdy-game-item-div {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .gdcbdy-recommend-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gdcbdy-recommend-content-hot {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 优化滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 30, 63, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0066ff, #00a8ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00a8ff, #0097e6);
}

/* 添加3D变换效果提升现代感 */
.gdcbdy-navbar {
    perspective: 1000px;
}

.gdcbdy-game-cover img {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gdcbdy-game-cover img:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.05);
}

/* 添加粒子效果背景增强科技感 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, #00a8ff, transparent),
        radial-gradient(2px 2px at 40px 70px, #0066ff, transparent),
        radial-gradient(1px 1px at 90px 40px, #0097e6, transparent);
    background-size: 100px 100px;
    animation: particles 60s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particles {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}






