.homescreen-prompt {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1a1a1a;
    color: white;
    z-index: 999999;
    font-family: YekanBakh, Vazirmatn, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    direction: rtl;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prompt-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 80vh;
    position: relative;
}

.logo_iphone {
    height: auto;
    margin: 0 auto 40px;
}

.instruction-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.steps {
    width: 100%;
    margin-bottom: 40px;
}

.step {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    display: flex;
    align-items: center;
    text-align: right;
}

.step:last-child {
    border-bottom: none;
}

.step-icon {
    margin-left: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.step-text {
    flex: 1;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.understood-button {
    background-color: #FFA537;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    width: calc(100% - 40px);
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
}