* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4b 50%, #0d1235 100%);
    color: #e8e8e8;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0a0e27;
    font-size: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    color: #e8e8e8;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

nav a:hover,
nav a.active {
    color: #ffd700;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffaa00);
    transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.header-btns {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #0a0e27;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid #ffd700;
    color: #ffd700;
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

main {
    margin-top: 75px;
}

.hero {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.section-title p {
    color: #a0a0a0;
    font-size: 16px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 170, 0, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #a0a0a0;
    font-size: 15px;
}

.stats {
    background: rgba(255, 215, 0, 0.05);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-item p {
    color: #a0a0a0;
    font-size: 16px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffd700;
}

.product-card p {
    color: #a0a0a0;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
}

.product-features li {
    padding: 8px 0;
    color: #e8e8e8;
    padding-left: 25px;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 170, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: #ffd700;
    font-size: 14px;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
}

.news-card p {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    color: #ffd700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    text-decoration: underline;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: #a0a0a0;
}

.breadcrumb a:hover {
    color: #ffd700;
}

.breadcrumb span {
    color: #ffd700;
}

.page-header {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-header p {
    color: #a0a0a0;
    font-size: 18px;
}

.content-section {
    padding: 60px 0;
}

.content-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
}

.content-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffd700;
}

.content-block h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #ffffff;
}

.content-block p {
    color: #a0a0a0;
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-block ul {
    margin-left: 25px;
    color: #a0a0a0;
}

.content-block li {
    margin-bottom: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #ffd700;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #ffffff;
}

.contact-item p {
    color: #a0a0a0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #e8e8e8;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.news-detail {
    max-width: 900px;
    margin: 0 auto;
}

.news-detail-header {
    margin-bottom: 40px;
}

.news-detail-header h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    gap: 30px;
    color: #a0a0a0;
    font-size: 14px;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-content-full {
    font-size: 16px;
    line-height: 1.9;
}

.news-content-full p {
    margin-bottom: 20px;
    color: #e8e8e8;
}

.news-content-full h2 {
    font-size: 24px;
    margin: 35px 0 20px;
    color: #ffd700;
}

.news-content-full h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #ffffff;
}

.cta-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-section p {
    color: #a0a0a0;
    font-size: 18px;
    margin-bottom: 35px;
}

.mobile-btns {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    padding: 15px;
    gap: 15px;
    z-index: 999;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.mobile-btns .btn {
    flex: 1;
    padding: 15px;
    font-size: 16px;
}

footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0a0;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .header-btns {
        display: none;
    }
    
    nav ul {
        gap: 20px;
    }
    
    nav a {
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .mobile-btns {
        display: flex;
    }
    
    main {
        margin-bottom: 80px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .products-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
    }
}
