@font-face {
font-family: myFont;
src: url('../fonts/Montserrat-Regular.ttf');
}

@font-face {
font-family: myFont01;
letter-spacing: 2px;
src: url('../fonts/Glekzo.otf');
}

html,
.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
.uk-heading-2xlarge,
.uk-heading-large,
.uk-heading-medium,
.uk-heading-small,
.uk-heading-xlarge,
.uk-button,
.uk-navbar-nav>li>a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a,
span {
font-family: myFont01!important;
}

:root {
--primary-dark: #1a1a2e;
--primary-purple: #6c4ab6;
--primary-blue: #4361ee;
--accent-cyan: #4cc9f0;
--accent-purple: #b5179e;
--text-light: #e0e0e0;
--text-muted: #a0a0a0;
}

body {
background-color: var(--primary-dark);
color: var(--text-light);
margin: 0 auto;
min-width: 1400px;
}
html {
scroll-behavior: smooth;
}
.uk-font-01 {
font-family: myFont01!important;
}
.my-radius {
border-radius: 15px;
}
.my-radius2 {
border-radius: 50px;
}
.my-radius3 {
border-radius: 30px;
}
.z_download {
width: 100%;
padding: 20px 40px;
font-size: 2rem;
font-weight: 500;
color: #fff; 
border: none;
cursor: pointer;
outline: none; 
border: 4px solid #949b41;
background-color: #bac15a;
border-radius: 15px;
margin-bottom: 50px; 
z-index: 1; 
transition: all ease-in-out .3s;
}
.z_download:hover {
background-color: #6d722b; 
text-decoration: none;
color: #FFF;
}
.uk-text-white {
color: #FFF;
}
.g-scrollbar{ height:600px; overflow-y:scroll; padding-top:50px; }
.g-scrollbar span{ color:#FFF!important; }
.g-scrollbar::-webkit-scrollbar {
width: 8px;
}
.g-scrollbar::-webkit-scrollbar-track {
background: #373400;
border-radius: 10px;
}
.g-scrollbar::-webkit-scrollbar-thumb {
background: #fba46a;
border-radius: 10px;
border: solid 1px #d38959;
}
.g-scrollbar::-webkit-scrollbar-thumb:hover {
background: #c681ff;
}
/* Header & Navigation */
.uk-header {
    background: transparent;
    /* 改成透明，和原图一致 */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* 顶部社交/登录栏 */
.uk-header .uk-navbar-container:first-child {
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(76, 201, 240, 0.1);
    padding: 5px 50px;
}

/* 主菜单栏 */
.uk-header .main-nav {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(10px);
}

.social-links a,
.auth-links a {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.social-links a:hover,
.auth-links a:hover {
    color: var(--accent-cyan);
}

.register-link {
    color: var(--accent-cyan);
}

.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    clip-path: polygon(0% 50%, 30% 0%, 100% 0%, 100% 100%, 30% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon-small {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    clip-path: polygon(0% 50%, 30% 0%, 100% 0%, 100% 100%, 30% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.uk-navbar-nav>li>a {
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.uk-navbar-nav>li>a:hover,
.uk-navbar-nav>li.uk-active>a {
    color: var(--accent-cyan);
}

.join-btn {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 201, 240, 0.4);
}

/* 下拉面板样式不变，保持之前的关闭按钮设计 */
.nav-content-boxes {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    pointer-events: none;
}
.nav-content-boxes ul{ list-style-type:none; }
.nav-content-box {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    border: 1px solid rgba(76, 201, 240, 0.2);
    border-radius: 8px;
    padding: 50px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-content-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-content-box h4 {
    color: var(--accent-cyan);
    margin-bottom: 10px;
}

.nav-content-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.join-btn {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 201, 240, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.3) 0%, var(--primary-dark) 100%),
        url('../img/h_bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(108, 74, 182, 0.3) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.preorder-btn {
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 12px 30px;
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.preorder-btn:hover {
    background: var(--accent-cyan);
    color: var(--primary-dark);
    text-decoration: none;
}

.game-rating {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.rating-score {
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-cyan);
    margin: 0 auto 10px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Section Styles */
section {
    padding: 40px 0;
    position: relative;
}

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

.section-title h2 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title::before {
    content: '';
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

/* Game Cards */
.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 201, 240, 0.2);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card-content {
    padding: 20px;
}

.game-card h4 {
    margin-bottom: 10px;
    color: white;
}

.game-date {
    color: var(--accent-cyan);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.stars {
    color: #ffd700;
    font-size: 0.7rem;
}

/* Featured Game */
.featured-game {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px 0 0 15px;
}

.featured-game-info {
    padding: 40px;
    flex: 1;
     -webkit-flex: 1;
}



.btn-primary {
    background: linear-gradient(90deg, var(--accent-cyan), var(--primary-purple));
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}


/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(76, 201, 240, 0.1);
    border-radius: 10px;
    padding: 30px;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent-cyan);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    margin: 0;
    color: white;
}

.testimonial-author p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}


/* Stream Section */
.stream-section {
    background: rgba(255, 255, 255, 0.02);
}

.stream-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.stream-tab {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 15px 30px;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

.stream-tab.active {
    color: var(--accent-cyan);
}

.stream-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-cyan);
}

.stream-player {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.stream-player img {
    width: 100%;
    height: auto;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(76, 201, 240, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Gallery */

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(76, 201, 240, 0.1);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

.pricing-card.featured {
    border-color: var(--accent-cyan);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.best-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-purple);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
}

.pricing-card h4 {
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-cyan);
    margin-bottom: 30px;
}

.price span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.buy-btn {
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 12px 30px;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: var(--accent-cyan);
    color: var(--primary-dark);
}


/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 50px 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Decorative Elements */
.decorative-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid rgba(76, 201, 240, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .featured-game {
        flex-direction: column;
    }

    .game-rating {
        position: static;
        transform: none;
        margin-top: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

