body {
    max-width: 660px;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    margin: 0 auto;
    padding: 0;
    background: #87ceeb;
    color: #1a0a2e;
    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(255, 105, 180, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 245, 255, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 215, 0, 0.35), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(123, 104, 238, 0.35), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    pointer-events: none;
    z-index: -1;
}

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

.tyigb-navbar {
    max-width: 660px;
    display: flex;
    background: #ff69b4;
    color: #FFFFFF;
    height: 80px;
    z-index: 10;
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.7);
    border-bottom: 3px solid rgba(255, 255, 255, 0.5);
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
}

.tyigb-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

@keyframes headerGlow {
    0% { 
        box-shadow: 0 12px 40px rgba(255, 105, 180, 0.7), 0 4px 15px rgba(0, 245, 255, 0.6);
        background-position: 0% 50%;
    }
    50% { 
        box-shadow: 0 16px 50px rgba(0, 245, 255, 0.9), 0 6px 20px rgba(255, 215, 0, 0.7);
        background-position: 100% 50%;
    }
    100% { 
        box-shadow: 0 12px 40px rgba(255, 105, 180, 0.7), 0 4px 15px rgba(0, 245, 255, 0.6);
        background-position: 0% 50%;
    }
}

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

.tyigb-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;
}

.tyigb-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(255, 105, 180, 0.8),
        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;
}

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

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

.tyigb-menu {
    display: flex;
    width: 30%;
    flex-direction: column;
    gap: 35px;
    background: #00f5ff;
    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 #ff69b4;
}

.tyigb-menu li {
    position: relative;
}

.tyigb-menu li a:hover {
    color: #ffd700;
}

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

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

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

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

.tyigb-menu li a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(5px);
}

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

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

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

.tyigb-game-item {
    border-radius: 20px;
    position: relative;
    background: #00f5ff;
    padding: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #ff69b4;
    overflow: hidden;
}

.tyigb-game-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 0, 0.1);
}

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

.tyigb-game-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ffd700;
}

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

.tyigb-game-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.7);
    background: #7b68ee;
    border-color: #00f5ff;
}

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

.tyigb-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);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.tyigb-game-cover img:hover {
    transform: scale(1.08) rotate(1deg);
    border-radius: 18px;
    box-shadow: 0px 18px 45px rgba(255, 105, 180, 0.6);
}

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

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

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

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

.tyigb-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: #f0e0ff;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

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

.common-game-right {
    display: flex;
    width: 20%;
    background: #ff69b4;
    border-radius: 5px;
    right: 0px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.3);
}

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

.tyigb-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: #ff69b4;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 6px 25px rgba(255, 105, 180, 0.4);
    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: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.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;
}

.tyigb-common-recommend-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #00f5ff;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 245, 255, 0.35);
    position: relative;
    overflow: visible;
    border: 3px solid #ff69b4;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tyigb-common-recommend-title:hover {
    box-shadow: 0 15px 45px rgba(0, 245, 255, 0.5);
    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: #ff69b4;
    color: #ffffff;
}

.badge-icon-purple {
    background: #7b68ee;
    color: #ffffff;
}

.badge-icon-orange {
    background: #ffa500;
    color: #ffffff;
}

.badge-icon-blue {
    background: #00bfff;
    color: #ffffff;
}

.badge-icon-green {
    background: #32cd32;
    color: #ffffff;
}

.badge-icon-yellow {
    background: #ffd700;
    color: #ffffff;
}

.badge-icon-red {
    background: #ff4500;
    color: #ffffff;
}

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

.badge-title {
    color: #ff69b4;
    font-size: 1.15rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.badge-subtitle {
    color: #1a0a2e;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.7;
    letter-spacing: 0.3px;
}

.badge-more-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 105, 180, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff69b4;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.badge-more-btn:hover {
    background: #ff69b4;
    color: #ffffff;
    transform: translateX(5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.6);
}

.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);
}

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

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

.tyigb-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: #7b68ee;
    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 #ff69b4;
}

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

.tyigb-footer-links a:hover {
    color: #00f5ff;
    background: rgba(0, 245, 255, 0.15);
    transform: translateY(-2px);
}

footer .tyigb-copyright {
    font-size: 0.8em;
    color: #ffd700;
    margin: 10px 0px;
}

#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: #ff69b4;
    padding: 15px;
    gap: 15px;
    border-radius: 50px;
    box-shadow: 0 10px 35px rgba(255, 105, 180, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid #ffffff;
    z-index: 1000;
}

#flow:hover {
    background: #00f5ff;
    box-shadow: 0 15px 50px rgba(0, 245, 255, 0.7);
    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));
}

.tyigb-game-detail-title {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 2rem;
    background: linear-gradient(135deg, #2d1b4e 0%, #3d2563 50%, #4a2d7a 100%);
    border-radius: 24px;
    box-shadow: 
        0 15px 50px rgba(255, 107, 157, 0.4),
        0 0 0 3px rgba(255, 138, 92, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    margin: 20px;
    border: 3px solid rgba(255, 107, 157, 0.5);
    backdrop-filter: blur(15px);
}

.tyigb-game-detail-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6b9d, #ff8a5c, #f8b500);
    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, #2d1b4e 0%, #3d2563 50%, #4a2d7a 100%);
    border-radius: 32px;
    box-shadow: 
        0 25px 70px rgba(255, 107, 157, 0.45),
        0 0 0 3px rgba(255, 138, 92, 0.35),
        inset 0 2px 0 rgba(255, 255, 255, 0.12);
    border: 3px solid rgba(255, 107, 157, 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, #ff6b9d, #ff8a5c, #f8b500, #ff6b9d);
    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, #ff6b9d, #ff8a5c);
    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(255, 107, 157, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.2);
    width: fit-content;
}

.game-detail-main-title {
    color: #ff8a5c;
    font-size: 3rem;
    margin: 0;
    font-weight: 900;
    text-shadow: 
        0 4px 12px rgba(255, 138, 92, 0.6),
        0 0 25px rgba(255, 107, 157, 0.35);
    letter-spacing: 0.5px;
    line-height: 1.15;
}

.game-detail-main-desc {
    color: #f0e0ff;
    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, #ff6b9d 0%, #ff8a5c 50%, #f8b500 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(255, 107, 157, 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(255, 138, 92, 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(255, 107, 157, 0.25), rgba(255, 138, 92, 0.25));
    border: 2px solid rgba(255, 107, 157, 0.5);
    border-radius: 16px;
    padding: 16px 28px;
    color: #ff8a5c;
    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(255, 107, 157, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.game-detail-share-btn:hover {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.4), rgba(255, 138, 92, 0.4));
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(255, 107, 157, 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(255, 107, 157, 0.2);
}

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

.stat-item svg {
    color: #ff8a5c;
    filter: drop-shadow(0 2px 4px rgba(255, 138, 92, 0.4));
}

.game-detail-container {
    margin: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: linear-gradient(135deg, #2d1b4e 0%, #3d2563 50%, #4a2d7a 100%);
    border-radius: 28px;
    box-shadow: 
        0 20px 60px rgba(255, 107, 157, 0.5),
        0 0 0 3px rgba(255, 138, 92, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 107, 157, 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, #ff6b9d, #ff8a5c, #f8b500);
    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, #ff6b9d, #ff8a5c);
    border-radius: 2px;
}

.game-detail-title-text {
    color: #ff8a5c;
    font-size: 2.8rem;
    margin: 0;
    font-weight: 800;
    text-shadow: 
        0 3px 10px rgba(255, 138, 92, 0.6),
        0 0 20px rgba(255, 107, 157, 0.4);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.game-detail-description {
    color: #f0e0ff;
    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, #ff6b9d 0%, #ff8a5c 50%, #f8b500 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(255, 107, 157, 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(255, 138, 92, 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, #2d1b4e 0%, #3d2563 50%, #4a2d7a 100%);
    border-radius: 28px;
    box-shadow: 
        0 20px 60px rgba(255, 107, 157, 0.5),
        0 0 0 3px rgba(255, 138, 92, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 107, 157, 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, #ff6b9d, #ff8a5c, #f8b500);
    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, 27, 78, 0.95) 0%, rgba(45, 27, 78, 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: #ff8a5c;
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    font-weight: 800;
    text-shadow: 
        0 3px 10px rgba(255, 138, 92, 0.6),
        0 0 20px rgba(255, 107, 157, 0.4);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.game-detail-description {
    color: #f0e0ff;
    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, #ff6b9d 0%, #ff8a5c 50%, #f8b500 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(255, 107, 157, 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(255, 138, 92, 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);
}

.tyigb-game-detail-title {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 2rem;
    background: linear-gradient(135deg, #2d1b4e 0%, #3d2563 50%, #4a2d7a 100%);
    border-radius: 24px;
    box-shadow: 
        0 15px 50px rgba(255, 107, 157, 0.4),
        0 0 0 3px rgba(255, 138, 92, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    margin: 20px;
    border: 3px solid rgba(255, 107, 157, 0.5);
    backdrop-filter: blur(15px);
}

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

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

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

.tyigb-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(255, 107, 157, 0.5),
        0 0 0 3px rgba(255, 138, 92, 0.4);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.tyigb-game-detail-img::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.3), rgba(255, 138, 92, 0.1));
    border-radius: 20px;
    filter: blur(15px);
    z-index: 0;
    opacity: 0.6;
}

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

.tyigb-detail-info h2 {
    color: #ff8a5c;
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    font-weight: 800;
    text-shadow: 
        0 2px 8px rgba(255, 138, 92, 0.5),
        0 0 15px rgba(255, 107, 157, 0.3);
    letter-spacing: 0.5px;
}

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

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

.tyigb-game-instructions {
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
    background: linear-gradient(135deg, #2d1b4e 0%, #3d2563 50%, #4a2d7a 100%);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 107, 157, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 107, 157, 0.5);
    backdrop-filter: blur(15px);
}

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

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

.tyigb-game-gameplay-button {
    display: flex;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 25%, #ff8a5c 50%, #f8b500 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(255, 107, 157, 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);
}

.tyigb-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;
}

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

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

.tyigb-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));
}

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

.tyigb-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);
}

.tyigb-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;
}

.tyigb-news-detail{
    color: #f0e0ff;
    text-align: start;
    padding: 2rem;
    margin-top: 30px;
    background: rgba(45, 27, 78, 0.6);
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
}

.tyigb-news-detail h3 {
    color: #ff8a5c;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 3px 10px rgba(255, 138, 92, 0.5);
    text-align: center;
}

.tyigb-news-detail h4 {
    color: #ff6b9d;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 8px rgba(255, 107, 157, 0.4);
}

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

.tyigb-news-detail strong {
    color: #f8b500;
    font-weight: 700;
}

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

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

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

.tyigb-news-detail a:hover {
    color: #f8b500;
    text-decoration: underline;
}

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

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

@media (max-width: 480px) {
    .tyigb-news-detail {
        padding: 1.2rem;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 14px;
    }
    
    .tyigb-news-detail h3 {
        font-size: 1.3rem;
    }
    
    .tyigb-news-detail h4 {
        font-size: 1.05rem;
        margin-top: 1.5rem;
    }
    
    .tyigb-news-detail p,
    .tyigb-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: #ff8a5c;
}

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

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

.tyigb-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;
}

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

.tyigb-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;
}

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

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

#tyigb-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) {
    .tyigb-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);
    }
    
    .tyigb-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);
    }
    
    .tyigb-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) {
    .tyigb-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) {
    .tyigb-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;
    }
}

.tyigb-game-item,
.recommend-item-btn,
.tyigb-common-recommend-title,
.tyigb-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;
    }
}
