
        /* Global color definitions (match LOGO) */
        :root {
            --green-dark: #1f2d55;
            --green-deep: #1f2d55;
            --gold-main: #FFD124;
            --gold-dark: #B89000;
            --text-green: #141d36;
            --white: #ffffff;
            --gray-text: #dddddd;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
            text-decoration: none;
        }
        body {
            background-color: #FFF;
            background-image: radial-gradient(rgba(255,209,36,0.06) 1px, transparent 1px);
            background-size: 30px 30px;
            color: var(--white);
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }
        /* Universal gold border card */
        .gold-card {
            border: 1px solid var(--gold-main);
            box-shadow: 0 0 8px rgba(255, 209, 36, 0.35);
            border-radius: 12px;
        }
        /* Gold button styles */
        .gold-btn {
            display: block;
            width: 100%;
            text-align: center;
            padding: 10px;
            border-radius: 20px;
            background: linear-gradient(180deg, #FFD124 0%, #E6B600 100%);
            color: var(--green-deep);
            font-weight: bold;
            transition: all 0.25s ease;
        }
        .gold-btn:hover {
            background: linear-gradient(180deg, #FFDD55 0%, #B89000 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 209, 36, 0.45);
        }
        .gold-btn-inline {
            display: inline-block;
            width: auto;
            padding: 12px 40px;
        }
        /* Header navigation */
        header {
            position: sticky;
            top: 0;
            z-index: 999;
            background-color: #1f2d55;
            border-bottom: 1px solid #917b27;
            padding: 0px 15px;
        }
        .header-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
        }
        .logo-box {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        .logo-img {
            width: 64px;
            height: 64px;
            border-radius: 8px;
        }
        .logo-text {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: bold;
            color: var(--gold-main);
            letter-spacing: 1px;
        }
        /* PC navigation menu */
        .pc-nav {
            display: none;
            gap: 30px;
        }
        .pc-nav a {
            color: var(--white);
            text-decoration: none;
            font-size: 16px;
        }
        .pc-nav a:hover {
            color: var(--gold-main);
        }
        /* Mobile hamburger button */
        .menu-toggle {
            background: transparent;
            border: none;
            color: var(--gold-main);
            font-size: 24px;
            cursor: pointer;
        }
        /* Mobile dropdown menu */
        .mobile-menu {
            display: none;
            background-color: var(--green-dark);
            
        }
        .mobile-menu-inner {
            padding: 16px 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .mobile-menu a {
            color: var(--white);
            text-decoration: none;
            font-size: 18px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255,209,36,0.2);
        }
        .mobile-menu a:hover {
            color: var(--gold-main);
        }
        /* Main content area spacing */
        main {
            padding: 24px 0;
        }
        section {
            margin-bottom: 30px;
        }
        /* Banner section */
        .banner-block {
            padding: 32px 16px;
            border-radius: 0px;
            border: none;
            background: linear-gradient(to bottom, #243565, var(--green-dark));
            text-align: center;
        }
        .banner-title {
            font-size: 24px;
            color: var(--gold-main);
            font-weight: bold;
            margin-bottom: 16px;
        }
        .banner-desc {
            color: rgba(255,255,255,0.8);
            font-size: 18px;
            max-width: 700px;
            line-height: 24px;
            margin: 0 auto 32px;
        }
        .banner-game-grid {
            display: grid;
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .game-card-white {
            background: #fff;
            padding: 16px;
            border-radius: 20px;
            text-align: center;
        }
        .game-icon-box {
            width: 96px;
            height: 96px;
            border-radius: 8px;
            margin: 10px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: var(--gold-main);
        }
        .game-card-title {
            font-size: 20px;
            font-weight: bold;
            color: var(--text-green);
            margin: 12px;
        }
        .game-card-sub {
            color: #d30808;
            font-size: 14px;
            margin-bottom: 16px;
            font-weight: 700;
        }
        /* Telegram promotion section */
        .tg-block {
            padding: 25px 16px;
            background-color: #2e3c63;
            border-radius: 50px;
            border: none;
    box-shadow: none;
}
        
        .tg-flex-wrap {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .tg-icon-box {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
        }
        .tg-icon-box img {
            width: 48px;
            height: 48px;

        }

        .tg-text-wrap {
            flex: 1;
            min-width: 0;
        }
        .tg-title {
            font-size: clamp(1.4rem, 4vw, 1.8rem);
            color: var(--gold-main);
            font-weight: bold;
            margin: 0 0 8px 0;
        }
        .tg-desc {
            color: rgba(255,255,255,0.8);
            margin: 0;
            line-height: 1.5;
            font-size: 15px;
        }
        .block-title {
            font-size: clamp(1.4rem, 4vw, 2rem);
            color: var(--gold-main);
            font-weight: bold;
            margin-bottom: 12px;
        }
        .block-desc {
            color: rgba(255,255,255,0.8);
            max-width: 650px;
            margin: 0 auto 24px;
            line-height: 1.6;
        }
        /* Game list grid - permanent horizontal layout (mobile/PC unified) */
        .game-list-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .list-game-card {
            background: #fff;
            border-radius: 20px;
            display: flex;
            flex-direction: row !important; /* Force horizontal, prevent stacking */
            align-items: center;
            padding: 12px;
            gap: 12px;
            overflow: hidden;
        }
        /* Left image: fixed width, prevent compression */
        .list-game-img-box {
            width: 100px;
            height: 110px;
            flex-shrink: 0; /* Key: image width stays fixed */
            background:#fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 42px;
            color: var(--gold-main);
        }
        /* Right text area: auto-fill remaining width */
        .list-game-text-wrap {
            flex: 1;
            min-width: 0; /* Fix text overflow on small screens */
        }
        .list-game-name {
            font-size: 17px;
            font-weight: bold;
            color: var(--text-green);
            margin-bottom: 6px;
        }
        .list-game-tag {
           color: #ff6100;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 500;
        }
        /* Contact section */
        .contact-block {
            padding: 32px 16px;
            background-color: var(--green-dark);
            text-align: center;
        }
        .contact-text {
            color: rgba(255,255,255,0.8);
            font-size: 16px;
            margin: 8px 0;
        }
        /* Disclaimer section */
        .disclaimer-block {
            padding: 24px 16px;
            background-color: var(--green-deep);
            border-radius: 10px;
        }
        .disclaimer-text {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            line-height: 1.7;
        }
        .disclaimer-text p {
            margin-bottom: 12px;
        }
        /* Friendly links */
        .friend-link-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .friend-link-wrap a {
            color: #ccc;
            text-decoration: none;
        }
        .friend-link-wrap a:hover {
            color: var(--gold-main);
        }
        /* Footer */
        footer {
            background-color: var(--green-dark);
            margin-top: 40px;
            padding: 32px 0;
        }
        .foocon{padding: 0 20px;}
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-bottom: 24px;
        }
        .footer-col h3 {
            color: var(--gold-main);
            font-size: 18px;
            margin-bottom: 12px;
        }
        .footer-col a {
            display: block;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            margin-bottom: 8px;
        }
        .footer-col a:hover {
            color: var(--gold-main);
        }
        .footer-col p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 8px;
        }
        .copyright {
            border-top: 1px solid rgba(255,209,36,0.3);
            padding-top: 16px;
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 14px;
        }
        .tglink{
            background:  #1296db;
            color: #FFF;
            border-radius: 20px;
        }
        .tglink:hover{
            background: no-repeat url(img/telegram.png) 10px 9px #1296db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 209, 36, 0.45);
        }
        .list-img{width: 100%;border-radius: 25px;}
       
        /* Small screen mobile optimization */
        @media (max-width:480px) {
            .tg-flex-wrap {
                gap: 12px;
            }
            .tg-icon-box {
                width: 56px;
                height: 56px;
                font-size: 24px;
            }
            .tg-title {
                font-size: 1rem;
            }
            .tg-desc {
                font-size: 13px;
            }
            .gold-btn-inline {
                padding: 8px 16px;
                font-size: 13px;
            }
            .tglink {
                padding: 12px 20px !important;
                font-size: 12px;
            }
            .banner-game-grid {
                gap: 16px;
            }
            .game-icon-box {
                width: 64px;
                height: 64px;
                font-size: 28px;
            }
            .game-card-white {
                padding: 12px;
            }
            .game-card-title {
                font-size: 20px;
            }
            .game-card-sub {
                font-size: 12px;
                margin-bottom: 10px;
            }
            .gold-btn {
                padding: 8px;
                font-size: 14px;
            }
            .condownload{padding: 16px 30px;}
        }
        /* Tablet/PC media query */
        @media (min-width:768px) {
            .pc-nav {
                display: flex;
            }
            .menu-toggle {
                display: none;
            }
            
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            /* Wider images on large screens */
            .list-game-img-box {
                width: 160px;
                height: 160px;
                font-size: 50px;
            }
        }
    


    .shangxia{color: #333;  font-size: 13px;   padding-left: 12px;}
    .shangxia a{color: #025a80; text-decoration: none;}

    .mianbao{ padding: 0px 20px 8px; max-width: 1200px;    margin: 0 auto;   color: #999;    position: relative;    top: -10px;}
    .mianbao a{ color:#999; }
    .breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    font-size: 13px;
    background: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding: 0 8px;
    color: #999;
}

.breadcrumb-item a {
    color: #999;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}
.breadcrumb-item{
    min-width: 38px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: bottom;}

.breadcrumb-item.active {
    max-width: 160px;    
    color: #888;
}
.concon{ line-height: 28px; }
.concon ul{margin: 0 25px;}
.concon ol{margin: 0 25px;}
.condownload{display: inline-block;
           padding: 16px 50px;
           background: linear-gradient(135deg, #ff6b00, #ff3c00);
           color: #ffffff;
           font-size: 19px;
           font-weight: 600;
           text-transform: uppercase;
           text-decoration: none;
           border-radius: 50px;
           border: none;
           box-shadow: 0 6px 25px rgba(255, 107, 0, 0.5);
           transition: all 0.3s ease;
           letter-spacing: 1px;
           font-family: Arial, sans-serif;}
.bannerdown{display:inline-block;white-space: nowrap; padding:14px 45px; background:linear-gradient(135deg,#ffcf00,#f7971e); color:#182857; font-size:18px; font-weight:600; text-transform:uppercase;  border-radius:50px; border:none;  transition:all 0.3s ease; letter-spacing:1px; font-family:Arial,sans-serif;}
.bannerlogo-img{ height: 80px; width: 80px;  border-radius: 20px;  border: 3px solid #ffd448;}

.game-card-sub {
    background: linear-gradient(90deg, #ff9b00, #ff0000, #ff9d00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 18px;
    animation: shimmer 2s linear infinite;
}

.featured h2 {
    background: linear-gradient(90deg, #fdff00, #ff8c00, #ffcf00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 20px;
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}