/* App Download Block Styles */

.mobcash-app-download-wrapper {
    width: 100%;
}

.download-section {
    padding: 60px 0;
    background-color: var(--bg-main, #0B0E14);
    position: relative;
}

.download-header {
    text-align: center;
    margin-bottom: 60px;
}

.download-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-white, #fff);
    margin-bottom: 20px;
}

/* Platform badges */
.platform-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.p-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card, #1E2330);
    border: 1px solid var(--border-color, #272C3D);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--text-gray, #8A92A6);
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.p-badge svg {
    width: 20px;
    height: 20px;
}

a.p-badge {
    text-decoration: none;
    cursor: pointer;
}

.p-badge:hover {
    border-color: var(--accent-cyan, #00E599);
    color: var(--text-white, #fff);
}

/* Content container */
.download-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--bg-header, #161A24);
    border: 1px solid var(--border-color, #272C3D);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Steps */
.download-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.d-step {
    display: flex;
    gap: 20px;
    position: relative;
}

.d-step-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 229, 153, 0.1);
    color: var(--accent-cyan, #00E599);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
}

.d-step-info span {
    font-size: 18px;
    color: var(--text-white, #fff);
    margin-bottom: 8px;
}

.d-step-info p {
    font-size: 14px;
    color: var(--text-gray, #8A92A6);
    line-height: 1.6;
}

.d-step-info b {
    color: var(--accent-purple, #6E32F9);
}

/* Phone mockup */
.download-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 260px;
    height: 520px;
    background: #000;
    border: 8px solid #1f2330;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--accent-purple, #6E32F9) 0%, var(--bg-main, #0B0E14) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.phone-logo {
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.phone-agent-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-cyan, #00E599);
    letter-spacing: 2px;
}

.phone-divider {
    margin-top: 40px;
    width: 80%;
    height: 2px;
    background: rgba(255,255,255,0.1);
}

.phone-balance {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.phone-balance-label {
    font-size: 10px;
    color: var(--text-gray, #8A92A6);
}

.phone-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(110, 50, 249, 0.2) 0%, transparent 70%);
    z-index: -1;
    top: 0;
    left: 0;
}

/* Bottom text */
.unlimited-earnings {
    margin-top: 60px;
    text-align: center;
}

.unlimited-earnings h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white, #fff);
    margin-bottom: 15px;
}

.unlimited-earnings p {
    color: var(--text-gray, #8A92A6);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .download-content {
        flex-direction: column;
        padding: 40px;
    }
    .download-visual {
        order: -1;
        margin-bottom: 40px;
    }
    .platform-badges { flex-wrap: wrap; }
}

@media (max-width: 576px) {
    .download-title { font-size: 26px; }
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
}
