/* Registration Process Block Styles */

.mobcash-registration-process-wrapper {
    width: 100%;
}

.reg-section {
    padding: 60px 0;
    background-color: var(--bg-main, #0B0E14);
}

.reg-header {
    text-align: center;
    margin-bottom: 60px;
}

.reg-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-white, #fff);
    margin-bottom: 20px;
}

.reg-intro {
    color: var(--text-gray, #8A92A6);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.reg-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.reg-step-card {
    background-color: var(--bg-header, #161A24);
    border: 1px solid var(--border-color, #272C3D);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.reg-step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 153, 0.3);
}

.reg-step-num {
    font-size: 48px;
    font-weight: 900;
    color: rgba(0, 229, 153, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.reg-step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white, #fff);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reg-step-title span {
    color: var(--accent-cyan, #00E599);
}

.reg-step-desc {
    font-size: 14px;
    color: var(--text-gray, #8A92A6);
    line-height: 1.6;
    margin-bottom: 25px;
}

.reg-note {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.reg-note-cyan {
    color: var(--accent-cyan, #00E599);
}

.reg-note-gray {
    color: var(--text-gray, #8A92A6);
}

/* Form links */
.form-links-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-form-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color, #272C3D);
    border-radius: 10px;
    color: var(--text-white, #fff);
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.btn-form-link:hover {
    background: rgba(0, 229, 153, 0.1);
    border-color: var(--accent-cyan, #00E599);
    color: var(--accent-cyan, #00E599);
}

/* Affiliate Promo Card */
.affiliate-promo-card {
    background: linear-gradient(90deg, rgba(110, 50, 249, 0.1) 0%, rgba(0, 229, 153, 0.05) 100%);
    border: 1px solid var(--border-color, #272C3D);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.aff-promo-text h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-white, #fff);
}

.aff-promo-text p {
    font-size: 15px;
    color: var(--text-gray, #8A92A6);
    line-height: 1.5;
    max-width: 600px;
}

.btn-aff-more {
    background-color: var(--accent-purple, #6E32F9);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(110, 50, 249, 0.3);
    text-decoration: none;
    transition: transform 0.3s;
}

.btn-aff-more:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .reg-steps-grid { grid-template-columns: 1fr; }
    .affiliate-promo-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .reg-title { font-size: 26px; }
}
