:root {
    --primary: #f0b90b;
    --primary-dark: #d6a309;
    --dark: #1e2026;
    --dark-light: #2a2d37;
    --gray: #76808f;
    --light: #f5f5f5;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    background: linear-gradient(135deg, #0b0e11 0%, #161920 100%);
    color: #eaecef;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
header {
    background-color: rgba(30, 32, 38, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo h1 {
    color: var(--primary);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--dark);
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(240, 185, 11, 0.2);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

nav li {
    margin: 0 8px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 15px;
}

nav a:hover {
    color: var(--primary);
    background: rgba(240, 185, 11, 0.1);
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 185, 11, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(240, 185, 11, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1{
	font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-text h2 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
	color: var(--primary);
    display: block;
}

.hero-text h2 span {
    color: var(--primary);
    display: block;
}

.hero-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 35px;
    max-width: 90%;
    line-height: 1.8;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: linear-gradient(145deg, rgba(30, 32, 38, 0.8), rgba(42, 45, 55, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 185, 11, 0.3);
}

.stat-value {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.5;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img{
	width:60%;
}

.app-mockup {
    width: 320px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.app-mockup:hover {
    transform: perspective(1000px) rotateY(0) scale(1.03);
}

.app-badge {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.badge {
    background: rgba(30, 32, 38, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.badge:hover {
    background: rgba(240, 185, 11, 0.15);
    transform: translateY(-5px);
}

.badge i {
    font-size: 24px;
}

/* App Features Section */
.app-features {
    padding: 120px 0 80px;
    position: relative;
}

.app-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(30,32,38,0.3)" width="100" height="100"/><path d="M0 50 L100 50 M50 0 L50 100" stroke="rgba(240,185,11,0.05)" stroke-width="1"/></svg>');
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, var(--dark-light), var(--dark));
    border-radius: 20px;
    padding: 35px 30px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.1) 0%, transparent 70%);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(240, 185, 11, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(240, 185, 11, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--gray);
    position: relative;
    z-index: 2;
    line-height: 1.8;
}

/* App Showcase Section */
.app-showcase {
    padding: 100px 0;
    background: linear-gradient(to right, #0f1217 0%, #14171e 100%);
}

.showcase-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.showcase-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.showcase-image img {
    max-width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.showcase-content {
    flex: 1;
}

.showcase-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 800;
}

.showcase-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-list i {
    color: var(--primary);
    font-size: 20px;
    margin-top: 3px;
}

.feature-list span {
    font-size: 18px;
}

.download-options {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(30, 32, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.download-btn:hover {
    background: rgba(240, 185, 11, 0.15);
    transform: translateY(-3px);
}

.download-btn i {
    font-size: 28px;
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-text span:first-child {
    font-size: 12px;
    color: var(--gray);
}

.btn-text span:last-child {
    font-weight: 600;
    font-size: 16px;
}

/* Multi Platform Download Section */
.platform-download {
    padding: 100px 0;
    background: linear-gradient(to bottom, #0f1217, #0b0e11);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.platform-card {
    background: linear-gradient(145deg, var(--dark-light), var(--dark));
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.platform-card:hover {
    transform: translateY(-10px);
    border-color: rgba(240, 185, 11, 0.3);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: rgba(240, 185, 11, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
}

.platform-title h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.platform-title p {
    color: var(--gray);
    font-size: 15px;
}

.platform-info {
    list-style: none;
    margin-bottom: 30px;
}

.platform-info li {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label {
    color: var(--gray);
}

.info-value {
    font-weight: 600;
    text-align: right;
}

.download-count {
    display: block;
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
    margin-top: 5px;
}

/* News Section */
.news {
    padding: 100px 0;
}

.news-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.latest-news, .industry-news {
    background: linear-gradient(145deg, var(--dark-light), var(--dark));
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-header h3 {
    font-size: 26px;
    font-weight: 700;
}

.news-list {
    list-style: none;
}

.news-item {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 15px;
}

.news-title {
    font-size: 18px;
    margin-bottom: 12px;
    display: block;
    font-weight: 600;
}

.news-content {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(to right, #0f1217 0%, #1a1d25 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.cta-box {
    background: linear-gradient(145deg, rgba(30, 32, 38, 0.8), rgba(42, 45, 55, 0.8));
    border: 1px solid rgba(240, 185, 11, 0.3);
    border-radius: 25px;
    padding: 70px 50px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.cta-box h2 {
    font-size: 46px;
    margin-bottom: 25px;
    font-weight: 800;
}

.cta-box p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.bonus-amount {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary);
    margin: 30px 0;
    text-shadow: 0 5px 15px rgba(240, 185, 11, 0.3);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

/* Footer */
footer {
    background: #080a0d;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .showcase-container {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-list li {
        justify-content: center;
    }
    
    .download-options {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text p {
        max-width: 100%;
        margin: 0 auto 30px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 50px auto 0;
    }
    
    .app-mockup {
        margin-top: 50px;
        transform: none;
    }
    
    .app-badge {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin-top: 40px;
    }
    
    .news-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .hero-text h2 {
        font-size: 40px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .cta-box h2 {
        font-size: 36px;
    }
    
    .bonus-amount {
        font-size: 48px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .header-buttons .btn {
        display: none;
    }
    
    .header-buttons .btn-primary {
        display: flex;
    }
    
    .hero-text h2 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .cta-box {
        padding: 50px 20px;
    }
    
    .cta-box h2 {
        font-size: 28px;
    }
    
    .bonus-amount {
        font-size: 36px;
    }
    
    .app-badge {
        flex-direction: column;
    }
    
    .stat-value {
        font-size: 28px;
    }
}
.news-container a{
    color: #fff;
    text-decoration: none;
}
.app-badge a{
    color: #fff;
    text-decoration: none;
}
.download-options a{
    color: #fff;
    text-decoration: none;
}