:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --light-bg: #f3f4f6;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.z88effcontainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.z88effsection-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--light-text);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--background);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
}

/* Hero Section */
.z88effhero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0 2rem 0;
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.z88effhero-content {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.z88effhero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.z88effhero-image {
    margin: 2rem 0;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.z88effplatform-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.z88efffeatures-image {
    text-align: center;
    margin: 2rem 0;
}

.z88efffeatures-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.z88effhero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.z88effcta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.z88effcta-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s;
    white-space: nowrap;
    min-width: 180px;
    justify-content: center;
}

.z88effcta-btn.z88effandroid {
    background: var(--success-color);
    color: white;
}

.z88effcta-btn.z88effios {
    background: white;
    color: var(--primary-color);
}

.z88effcta-btn:hover {
    transform: translateY(-2px);
}

/* Hero Stats */
.z88effhero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.z88effstat-item {
    text-align: center;
}

.z88effstat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.z88effstat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Keyword Cloud Section */
.z88effkeyword-cloud {
    padding: 40px 0;
    background: var(--light-bg);
}

.z88effcloud-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Download Section */
.z88effdownload-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.z88effversion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.z88effversion-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.z88effcard-header {
    padding: 1.5rem;
    color: white;
}

.z88effcard-header.z88effandroid {
    background: var(--success-color);
}

.z88effcard-header.z88effios {
    background: var(--primary-color);
}

.z88effcard-content {
    padding: 1.5rem;
}

.z88effcard-content p {
    margin-bottom: 1rem;
}

.z88effcard-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.z88effcard-content li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.z88effdownload-btn {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.z88effdownload-btn:hover {
    background: var(--secondary-color);
}

/* Features Section */
.z88efffeatures-section {
    padding: 80px 0;
}

.z88efffeatures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.z88efffeature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.z88efffeature-item:hover {
    transform: translateY(-5px);
}

.z88efffeature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--light-bg);
    border-radius: 50%;
}

/* Products Section */
.z88effproducts-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.z88effproduct-tabs {
    /* 结构样式 */
}

.z88efftab-content {
    /* 结构样式 */
}

.z88effactive {
    /* 激活样式 */
}

.z88effproduct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.z88effproduct-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.z88effproduct-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.z88effproduct-card ul {
    list-style: none;
    margin-top: 1rem;
}

.z88effproduct-card li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

/* Guide Section */
.z88effguide-section {
    padding: 80px 0;
}

.z88effguide-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.z88efftimeline-item {
    text-align: center;
    position: relative;
}

.z88efftimeline-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 600;
}

/* About Section */
.z88effabout-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.z88effabout-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.z88effabout-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.z88effstat-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.z88effnumber {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.z88efflabel {
    color: var(--light-text);
}

/* Download Reminder Section */
.z88effdownload-reminder {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.z88effreminder-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.z88effreminder-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.z88effreminder-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.z88effreminder-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.z88effreminder-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Links Section */
.z88efflinks-section {
    padding: 40px 0;
    background: white;
}

.z88efflinks-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.z88effrelated-sites {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.z88effrelated-sites a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.875rem;
}

/* Ad Section */
.z88effad-section {
    padding: 20px 0;
    text-align: center;
    background: var(--light-bg);
}

/* Footer */
.z88effsite-footer {
    background: var(--text-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.z88efffooter-content p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
        cursor: pointer;
    }

    .mobile-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--text-color);
        margin: 5px 0;
        transition: 0.3s;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--background);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        gap: 1rem;
        display: none;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .z88effhero-image {
        max-width: 90%;
        margin: 1rem 0;
    }
    
    .z88efffeatures-image {
        margin: 1.5rem 0;
    }

    .z88effhero h1 {
        font-size: 2rem;
    }

    .z88effhero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .z88effcta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .z88effcta-btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .z88effabout-stats {
        grid-template-columns: 1fr;
    }
    
    .z88effcloud-content {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .z88effcontainer {
        padding: 0 1rem;
    }

    .z88effhero {
        padding: 100px 0 40px;
    }

    .z88efffeature-item,
    .z88effproduct-card,
    .z88effversion-card {
        padding: 1.5rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

.z88eff {
    /* Add any additional styles here */
} 
