/* ===== استایل‌های بخش تیک آبی ===== */
.dktr-blue-tick-section {
    max-width: 700px;
    margin: 0 auto;
}

/* استایل هدر مارکتینگ جدید */
.blue-tick-marketing-header {
    background: linear-gradient(135deg, #0073aa, #960dcc, #1da1f2);
    background-size: 200% 200%;
    animation: gradientAnimation 8s ease infinite;
    border-radius: 16px;
    padding: 28px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(0, 115, 170, 0.25);
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.marketing-header-content {
    flex: 1;
}

.marketing-badge {
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    backdrop-filter: blur(5px);
}

.blue-tick-marketing-header h2 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.marketing-lead {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    color: #f1f5f9;
}

.marketing-lead strong {
    color: #fff;
    text-shadow: 0 0 5px rgba(255,255,255,0.4);
}

.marketing-header-badge-animate {
    flex-shrink: 0;
}

.pulse-tick {
    width: 75px;
    height: 75px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    animation: pulseScale 2s infinite ease-in-out;
}

@keyframes pulseScale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* کارت تیک آبی فعال */
.blue-tick-active-card {
    background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
    border: 2px solid #1da1f2;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
}

.blue-tick-badge-large {
    margin-bottom: 16px;
}

.blue-tick-active-card h3 {
    color: #1a73e8;
    font-size: 22px;
    margin: 10px 0;
}

.blue-tick-active-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

/* باکس هشدار */
.blue-tick-warning-box {
    background: #fffbeb;
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.12);
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #fde68a;
}

.warning-icon {
    font-size: 28px;
    animation: pulse-warning 1.5s ease-in-out infinite;
}

@keyframes pulse-warning {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.warning-header h4 {
    color: #92400e;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.warning-content p {
    color: #78350f;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.wallet-status {
    background: #fef3c7;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
    border: 1px solid #fcd34d;
}

.wallet-label {
    font-weight: 600;
    color: #78350f;
    font-size: 15px;
}

.wallet-amount {
    font-size: 20px;
    font-weight: 800;
    color: #059669;
    background: white;
    padding: 4px 16px;
    border-radius: 8px;
    direction: ltr;
}

.wallet-amount.insufficient {
    color: #dc2626;
}

.warning-steps {
    margin: 20px 0;
}

.warning-steps p {
    font-weight: 600;
    color: #78350f;
    margin-bottom: 12px;
}

.warning-steps ol {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.warning-steps ol li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #fde68a;
    counter-increment: step-counter;
}

.warning-steps ol li:last-child {
    border-bottom: none;
}

.step-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-text {
    color: #451a03;
    font-size: 14px;
    line-height: 1.7;
}

.step-text strong {
    color: #78350f;
}

.step-text a {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 600;
}

.step-text a:hover {
    color: #1e40af;
}

.warning-actions {
    display: flex;
    gap: 12px;
    margin: 20px 0 16px 0;
    flex-wrap: wrap;
}

.btn-charge-wallet,
.btn-request-ticket {
    flex: 1;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-charge-wallet {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}

.btn-charge-wallet:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(5, 150, 105, 0.4);
    color: white;
}

.btn-request-ticket {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-request-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-charge-wallet i,
.btn-request-ticket i {
    font-size: 18px;
}

.warning-note {
    background: #fef9e7;
    border-right: 4px solid #f59e0b;
    padding: 14px 18px;
    border-radius: 8px;
    margin-top: 16px;
}

.warning-note p {
    margin: 0;
    font-size: 13px;
    color: #78350f;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.warning-note i {
    color: #f59e0b;
    font-size: 18px;
    margin-top: 2px;
}

/* بخش مزایا */
.blue-tick-benefits {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    border: 1px solid #e2e8f0;
}

.blue-tick-benefits h3 {
    color: #1e293b;
    font-size: 18px;
    margin: 0 0 16px 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.benefit-item {
    background: white;
    padding: 14px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.benefit-item:hover {
    border-color: #1da1f2;
    box-shadow: 0 2px 8px rgba(29, 161, 242, 0.1);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 20px;
}

.benefit-text {
    font-size: 13px;
    color: #334155;
    font-weight: 500;
}

/* ===== ریسپانسیو موبایل ===== */
@media (max-width: 768px) {
    .blue-tick-marketing-header {
        flex-direction: column-reverse;
        text-align: center;
        padding: 20px;
        gap: 12px;
    }
    
    .blue-tick-marketing-header h2 {
        font-size: 18px;
    }
    
    .marketing-lead {
        font-size: 13px;
    }

    .pulse-tick {
        width: 60px;
        height: 60px;
    }

    .blue-tick-warning-box {
        padding: 16px;
    }

    .warning-header h4 {
        font-size: 16px;
    }

    .wallet-status {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .wallet-amount {
        font-size: 18px;
        text-align: center;
    }

    .warning-actions {
        flex-direction: column;
    }

    .btn-charge-wallet,
    .btn-request-ticket {
        min-width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .blue-tick-active-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .blue-tick-marketing-header h2 {
        font-size: 16px;
    }
    
    .blue-tick-warning-box {
        padding: 12px;
    }

    .warning-header h4 {
        font-size: 14px;
    }

    .warning-icon {
        font-size: 22px;
    }

    .step-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .step-text {
        font-size: 13px;
    }
}
