/* 主视图样式 */
.start-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
}

.main-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.ifunbox-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.ifunbox-icon img {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.main-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.main-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 3rem;
}

.start-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.playstore-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 1);
    padding: 0.625rem 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    outline: 0;
    transition: all 0.2s ease;
    text-decoration: none;
    min-width: 200px;
}

.playstore-button:hover {
    background-color: transparent;
    color: rgba(0, 0, 0, 1);
}

.playstore-button.light-version {
    background-color: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
}

.playstore-button.light-version:hover {
    background-color: transparent;
    color: rgba(0, 0, 0, 1);
}

.icon {
    height: 1.5rem;
    width: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon {
    fill: currentColor;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.playstore-button:hover .download-icon {
    transform: translateY(2px);
}

.texts {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.text-1 {
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-2 {
    font-weight: 600;
}

.version {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-content {
        padding: 1.5rem;
    }

    .main-content h1 {
        font-size: 2rem;
    }

    .main-content p {
        font-size: 1rem;
    }

    .playstore-button {
        width: 100%;
        margin: 10px 0;
        justify-content: center;
    }

    .texts {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .start-hero {
        padding: 1rem;
    }

    .ifunbox-icon img {
        width: 80px;
        height: 80px;
    }
}