
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(102deg, #f5f4f1, #e6cd9e);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        button {
            cursor: pointer;
            border: none;
            outline: none;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            background: rgba(0, 0, 0, 0.8);
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 10px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-img {
            height: 50px;
            width: 50px;
            border-radius: 8px;
            /*border: 2px solid #fff;*/
        }

		.logotext {display: none; }

        .logo-text {
            font-size: 18px;
            font-weight: bold;
            color: #ffffff;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .logo-text2 {
		    color: #838383;
			font-size: 12px;

        }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-link {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 8px 0;
            position: relative;
        }

        .nav-link:hover {
            color: #f39c12;
        }

        .nav-link:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: #f39c12;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from { width: 0; }
            to { width: 100%; }
        }

        .download-btn {
            background: linear-gradient(135deg, #ff4734, #dc3a29);
            color: white;
            padding: 4px 10px;
            border-radius: 10px;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 14px;
            text-decoration: none;
            display: inline-block;
			display: none;
        }

        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #fff;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: end;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        .hero-bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 1s ease;
        }
        
        .hero2 {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .hero-bg2 {
            width: 100%;
            height: 0;
            padding-bottom: 30%; 
            position: relative;
        }

        .hero-bg-img2 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
           object-fit: cover; 
           object-position: center; 
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            z-index: -1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 200px 0 10px 0;
            color: white;
			background: linear-gradient(rgb(219 206 188 / 0%), rgb(218 191 153));
        }

        .hero-layout {
            display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 90px  5px;
    border-radius: 16px;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
        }
        
        .hero-layout::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
}

        .game-icon {
            flex-shrink: 0;
    position: relative;
    z-index: 1;
        }

        .game-icon-img {
            width: 100px;
    height:100px;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
        }
        
        .game-icon-img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

        .game-details {
    flex: 1;
    position: relative;
    z-index: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

        .game-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}
        
        .discount-badge {
    background: linear-gradient(135deg, #ff3366, #ff6b6b);
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 6px;
    border-radius: 20px;
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.4);
    transform: translateY(-2px);
    letter-spacing: 1px;
    white-space: nowrap;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateY(-2px) scale(1); }
    50% { transform: translateY(-2px) scale(1.05); }
}


.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 15px 0;
}

.game-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}


.game-tag:nth-child(1) {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.game-tag:nth-child(2) {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.game-tag:nth-child(3) {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.game-tag:nth-child(4) {
    background: linear-gradient(135deg, #2196F3, #0D47A1);
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.game-tag:nth-child(5) {
    background: linear-gradient(135deg, #ff3366, #ff6b6b);
    border: 1px solid rgba(255, 51, 102, 0.3);
    animation: pulse 2s infinite;
}

.game-tag:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}


.game-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    margin: 5px 0;
    max-width: 100%;
}

.info-item {
     display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    min-width: 0; 
    flex-shrink: 0;
}

.info-item:hover {
    opacity: 1;
}

.info-icon {
    fill: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.info-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.info-value {
    font-weight: 600;
    color: white;
}

.age-16 {
    background: rgba(255, 87, 34, 0.2);
    color: #ffccbc;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    border: 1px solid rgba(255, 87, 34, 0.3);
}

       .game-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.stars {
    color: #FFD700;
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}


       .rating-text {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

        .download-game-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 160px;
    position: relative;
    z-index: 1;
}

.download-game-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.download-game-btn.primary {
    background: linear-gradient(135deg, #fe2c55, #fe2c55);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.download-game-btn.secondary {
    background: #fe2c55;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-game-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.download-game-btn.primary:hover {
    background: linear-gradient(135deg, #f90c3a, #f90c3a);
}

.download-game-btn.secondary:hover {
    background: #f90c3a;
}

.btn-icon {
    fill: currentColor;
}

        /* News Section */
        .news-section {
            background: linear-gradient(102deg, #f5f4f1, #e6cd9e);
            padding: 20px 0;
            color: #333;
        }

        .news-container {
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }

        .game-preview {
            flex: 1;
            max-width: 560px;
        }

        .news-content-wrapper {
            flex: 1;
            min-width: 0;
			width: 100%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 1px;
        }

        .section-title h2 {
            font-size: 2.3rem;
            color: #8b4513;
            font-weight: 700;
            margin-bottom: 16px;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #c09955, #8b4513);
        }

        /* Preview Slideshow */
        .preview-slideshow {
            position: relative;
            overflow: hidden;
            
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .slideshow-container {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide {
            min-width: 100%;
            flex-shrink: 0;
        }
        
        .slide2 {
        width: 250px;
        height: 478px;
        padding: 10px 30px 0px 10px;
        margin-left: 9px;
        /*background: url(../img/fybg.jpg) no-repeat;*/
        position: relative;
    overflow: hidden;   
        }
        
        .slide2 img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            object-position: center;
          display: block;
        }

        .preview-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            display: block;
        }

        .slideshow-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(255,255,255,0.8);
        }

        .news-tabs {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .tab-btn {
            background: none;
            color: #666;
            padding: 12px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
            border-radius: 8px;
        }

        .tab-btn.active {
            color: #e74c3c;
            /*background: rgba(231, 76, 60, 0.1);*/
        }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 3px;
            background: #e74c3c;
            border-radius: 2px;
        }

        .more-link {
            color: #3498db;
            text-decoration: none;
            font-weight: 600;
            margin-left: auto;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .more-link:hover {
            background: rgba(52, 152, 219, 0.1);
            transform: translateX(4px);
        }

        .news-content {
            position: relative;
            min-height: 300px;
        }

        .news-list {
            display: flex;
            flex-direction: column;
            opacity: 1;
            transition: opacity 0.4s ease;
        }

        .news-list.hidden {
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            pointer-events: none;
        }

        .news-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 13.3px 20px;
            background: white;
            margin-bottom: 1px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .news-item:hover {
            
            box-shadow: 0 2px 2px rgb(234 147 81);
        }
        
        .sub-category {
            color: #f72020; 
            
        }

        .news-title {
            flex: 1;
            color: #666;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .news-title:hover {
            color: #e74c3c;
        }

        .news-date {
            color: #999;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 12px;
        }

        /* Features Section */
        .features-section {
            background: linear-gradient(135deg, #f5f4f1, #e6cd9e);
            padding: 30px 0;
            color: #333;
        }

        .carousel-container {
            position: relative;
            margin: 0 auto 60px;
            max-width: 1000px;
            overflow: visible;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px;
        }

        .carousel-track {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .carousel-slide.center {
            z-index: 3;
            transform: translateX(0) scale(1);
            opacity: 1;
            width: 350px;
            height: 600px;
        }

        .carousel-slide.left {
            z-index: 2;
            transform: translateX(-238px) scale(0.85);
            opacity: 0.4;
            width: 350px;
            height: 600px;
        }

        .carousel-slide.right {
            z-index: 2;
            transform: translateX(238px) scale(0.85);
            opacity: 0.4;
            width: 350px;
            height: 600px;
        }

        .carousel-slide.hidden {
            z-index: 1;
            opacity: 0;
            transform: scale(0.7);
            pointer-events: none;
        }

        .feature-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #cc6a1a;
            color: white;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 32px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .carousel-btn:hover {
            background: #8b4513;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 20px;
        }

        .carousel-btn.next {
            right: 20px;
        }


        /* Game Description */
        .game-description {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .description-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .description-card h3 {
            font-size: 2rem;
            color: #8b4513;
            margin-bottom: 24px;
            font-weight: 700;
        }

        .description-card p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        .description-card p:last-child {
            color: #777;
            font-style: italic;
        }

        /* Visual Section */
        .visual-section {
            background: linear-gradient(135deg, #e6cd9e, #d4b896);
            padding: 20px 0;
            color: #333;
        }

        .visual-tabs {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .visual-tab-btn {
            background: #c09955;
            color: white;
            padding: 16px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(192, 153, 85, 0.3);
        }

        .visual-tab-btn.active {
            background: #8b4513;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
        }

        .visual-gallery {
            position: relative;
            min-height: 400px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
            opacity: 1;
            transition: opacity 0.4s ease;
        }

        .gallery-grid.hidden {
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            pointer-events: none;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            background: #b58749;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Social Section */
        .social-section {
            background: #ffffff;
            padding: 20px 0;
            color: #333;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 12px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .qr-content {
            
            padding: 12px;
            border-radius: 20px;
            
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
        }

        

        .qr-code {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            flex-shrink: 0;
            object-fit: cover;
        }

        .qr-info {
            flex: 1;
        }

        .qr-text {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 8px;
        }

        .qr-subtext {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 10px 0;
            text-align: center;
        }

        .back-to-top {
            color: #dbc099;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 16px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .back-to-top:hover {
            color: #e5a771;
            transform: translateY(-2px);
        }

        .copyright {
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        
        .copyright a {
            color: #bdc3c7;
            font-size: 0.9rem;
            text-decoration: none;
        }
        
        .linkbox ul {display: flex;gap: 10px;}
        
        .linkbox li {list-style: none;display: flex;}
        
        .linkbox li a {color: #666; font-size: 0.85rem; line-height: 1.4;text-decoration: none;}
    
        
        
        /* 模态框样式 */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 100;
            align-items: center;
            justify-content: center;
        }
        
        .modal.actives {
            display: flex;
        }
        
        .modal-img {
            max-width: 90%;
            max-height: 90%;
        }
        
        .close-btn {
            position: absolute;
            top: 70px;
            right: 60px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            background: none;
            border: none;
        }
        
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            color: white;
            border: none;
            font-size: 24px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
        }
        
        .prev-btn {
            left: 20px;
        }
        
        .next-btn {
            right: 20px;
        }
        
        .counter {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            text-align: center;
            color: white;
            font-size: 18px;
        }
        
        
        
        /* News Section2 */


        .container2 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }


        .news-section2 {
            background: linear-gradient(102deg, #f5f4f1, #e6cd9e);
            padding: 10px 0;
            color: #333;
        }

        .news-container2 {
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }

        .game-preview2 {
            flex: 1;
            max-width: 260px;
        }

        .news-content-wrapper2 {
            flex: 1;
            min-width: 0;
			width: 100%;
        }

        .section-title2 {
            text-align: center;
            margin-bottom: 1px;
        }

        .section-title2 h2 {
            font-size: 2.3rem;
            color: #8b4513;
            font-weight: 700;
            margin-bottom: 16px;
            position: relative;
        }

        .section-title2 h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #c09955, #8b4513);
        }



		.news-tabs2 {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .tab-btn2 {
            background: none;
            color: #666;
            padding: 12px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
            border-radius: 8px;
			text-decoration: none;
        }

        .tab-btn2.active {
            color: #e74c3c;
            /*background: rgba(231, 76, 60, 0.1);*/
        }

        .tab-btn2.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 3px;
            background: #e74c3c;
            border-radius: 2px;
        }

        
        /* 分页样式 */
        .pagebar {
            display: flex;
            justify-content: center;
            margin-top: 10px;
            padding-top: 10px;
        }
        
        .pagebar a {
            padding: 8px 15px;
            margin: 0 5px;
            background-color: #e7d0a5;
            border: 1px solid #efe6d3;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            color: #f0f2f5;
        }
        
        .current {
            background-color: #c09955!important;
            color: #fff!important;
            border-color: #8B4513;
        }
        
        .pagebar a:hover:not(.current) {
            background-color: #ccb17d;
        }
        
        
        
        /* Article Content */
        .article-content {
            flex: 1;
            min-width: 300px;
            padding: 10px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        .breadcrumb a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb a:hover {
            color: #2575fc;
        }
        
        .breadcrumb span {
            margin: 0 5px;
            color: #5a5858;
        }
        
        .article {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .article-title {
            font-size: 28px;
            margin-bottom: 15px;
            color: #333;
            line-height: 1.4;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            color: #888;
            font-size: 14px;
        }
        
        .article-date {
            margin-right: 20px;
        }
        
        .article-content-text {
            font-size: 16px;
            line-height: 1.8;
        }
        
        .article-content-text p {
            margin-bottom: 20px;
        }
        
        .article-content-text img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .article-image-full {
            width: 100%;
        }
        
        .article-image-left {
            float: left;
            margin-right: 20px;
            margin-bottom: 10px;
            max-width: 50%;
        }
        
        .article-image-right {
            float: right;
            margin-left: 20px;
            margin-bottom: 10px;
            max-width: 50%;
        }

        
        
        @media (max-width: 1024px) {
    .game-info-grid {
        grid-template-columns: repeat(2, 1fr);
                   }
      }

        

        

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 280px;
                height: calc(100vh - 70px);
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                padding: 40px 20px;
                transition: right 0.3s ease;
                z-index: 999;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-link {
                padding: 16px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                width: 100%;
            }

			.logo-img {
             border: 1px solid #fff;
                }
             
			.logotext {display: block; }
			
			
			.download-btn {display: block;}

            .mobile-menu-toggle {
                /*display: flex; */
            }

            .mobile-menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .mobile-menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            
            .slide {
            width: 100%;
            }

			.hero {
            position: relative;
            min-height: 80vh;
	            }
	            
	      
	            
	        .hero-bg2 {
             padding-bottom: 60%; 
             }
	        

	       .hero-bg-img {
              width: 100%;
               height: auto;}

            .hero-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
        padding: 24px 20px;
    }

            .game-icon-img {
        width: 100px;
        height: 100px;
        border-radius: 25px;
    }
    
    .game-details {
        align-items: center;
        width: 100%;
    }
    
    .game-title {
        justify-content: center;
        font-size: 24px;
        display: block;
    }
    
     .game-tags {
        gap: 6px;
        justify-content: center;
    }
    
    .game-tag {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    
    
    .game-info-grid {
        width: 100%;
        max-width: 500px;
        
    }
    
    .info-item {
        justify-content: center;
        
    }
    
    .game-rating {
        justify-content: center;
    }

            .download-game-section {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    .download-game-btn {
        width: 100%;
        padding: 14px 20px;
    }

            .news-container {
                flex-direction: column;
                gap: 20px;
            }

            .game-preview {
                max-width: none;
            }

            .preview-img {
                height: 250px;
            }

            .news-tabs {
                gap: 12px;
                justify-content: center;
            }

            .tab-btn {
                padding: 10px 16px;
                font-size: 0.9rem;
            }
            
            
            

            .news-container2 {
                flex-direction: column;
                gap: 20px;
            }



            .game-preview2 {
                max-width: none;
				display: none;
            }



			.section-title2 h2 {
                font-size: 2rem;
            }

            .preview-img2 {
                height: 250px;
            }

            .news-tabs2 {
                gap: 12px;
                justify-content: center;
            }

            .tab-btn2 {
                padding: 10px 16px;
                font-size: 0.9rem;
            }



            .more-link {
                margin-left: 0;
                margin-top: 16px;
            }

            .news-item {
                
                align-items: flex-start;
                gap: 12px;
				padding: 8px 15px;
            }

            .news-date {
                align-self: flex-end;
            }


			 .carousel-container {
                height: 450px;
            }

            .carousel-slide.center {
                width: 250px;
                height: 450px;
            }

            .carousel-slide.left {
                transform: translateX(-80px) scale(0.8);
                width: 250px;
                height: 450px;
            }

            .carousel-slide.right {
                transform: translateX(80px) scale(0.8);
                width: 250px;
                height: 450px;
            }

            .carousel-btn {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .carousel-btn.prev {
                left: 10px;
            }

            .carousel-btn.next {
                right: 10px;
            }




            

            .visual-tabs {
                gap: 16px;
            }

            .visual-tab-btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
                width: 450px;
            }

            .social-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .qr-content {
                padding: 5px;
            }

            .section-title h2 {
                font-size: 2rem;
            }
            
             .article-content {
                order: 1;
            }
            
            .article-title {
                font-size: 22px;
            }
            
            .article-image-left,
            .article-image-right {
                float: none;
                max-width: 100%;
                margin: 20px 0;
            }
            
            
            .breadcrumb {
             display: block;
            justify-content: flex-end;
            margin-bottom: 20px;
            font-size: 14px;
              }
            
            
            
        }

        @media (max-width: 480px) {

            .logo-img {
             border: 1px solid #fff;
                }
			.logotext {display: block; }
		    .download-btn {display: block;}

            .container {
                padding: 0 16px;
            }

			.hero {
            position: relative;
            min-height: 70vh;
	            }
	            
	      .hero-bg-img2 {
	       top: 60px;
	      }

            .hero-layout {
        padding: 20px 16px;
        border-radius: 12px;
        gap: 10px;
    }
            
            .hero-bg2 {
                 padding-bottom: 60%; 
              }

			.hero-bg-img {
        width: 100%;
        height: auto;}

            .game-icon-img {
        width: 85px;
        height: 85px;
        border-radius: 20px;
    }
    
    .game-title {
        font-size: 22px;
        gap: 8px;
        flex-direction: column;
    }
     .discount-badge {
        font-size: 11px;
        padding: 3px 10px;
        order: 2;
    }
    
    .game-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .info-item {
    
        text-align: center;
        gap: 4px;
    }
    
    .info-label, .info-value {
        font-size: 12px;
    }
    
    .game-rating {
        flex-direction: column;
        gap: 8px;
    }

            .download-game-section {
        gap: 10px;
    }
    
    .download-game-btn {
        padding: 12px 16px;
        font-size: 13px;
    }

            .news-tabs {
                gap: 4px;
				margin-bottom: 20px;
            }

            .tab-btn {
                padding: 8px 11px;
                font-size: 0.8rem;
            }
            
            .tab-btn2 {
              padding: 6px 10px;
              font-size: 0.9rem;
              }

            .carousel-container {
                height: 450px;
            }

            .carousel-slide.center {
                width: 250px;
                height: 450px;
            }

            .carousel-slide.left {
                transform: translateX(-75px) scale(0.8);
                width: 250px;
                height: 450px;
            }

            .carousel-slide.right {
                transform: translateX(75px) scale(0.8);
                width: 250px;
                height: 450px;
            }

            .carousel-btn {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .carousel-btn.prev {
                left: 10px;
            }

            .carousel-btn.next {
                right: 10px;
            }



            .gallery-grid {
                grid-template-columns: 1fr;
                width: auto;
            }

            .qr-content {
                
                gap: 16px;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 360px) {
    .game-title {
        font-size: 20px;
    }
    
    .game-info-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .info-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .download-game-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
}
        

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease forwards;
        }
    