/* ===== Campaign Builder Animation ===== */
.camp-anim-wrap {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%) !important;
    border: 0.1rem solid rgba(2, 123, 255, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2.5rem !important;
    min-height: 36rem;
}

.camp-scene {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

/* ===== Step Progress ===== */
.camp-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 1rem;
}

.camp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.camp-step-num {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 0.15rem solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.camp-step.active .camp-step-num {
    background: #027BFF;
    border-color: #027BFF;
    color: #fff;
    box-shadow: 0 0 1.2rem rgba(2, 123, 255, 0.35);
}

.camp-step span {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
}

.camp-step.active span {
    color: rgba(255, 255, 255, 0.7);
}

.camp-step-line {
    width: 4rem;
    height: 0.15rem;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 0.6rem;
    margin-bottom: 1.6rem;
    position: relative;
    overflow: hidden;
}

.camp-step-line.filled {
    background: rgba(2, 123, 255, 0.3);
}

.camp-step-line.filled::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #027BFF;
    animation: lineFill 3s ease-in-out infinite;
}

@keyframes lineFill {
    0%, 100% { width: 100%; }
    50% { width: 60%; }
}

/* ===== Campaign Type Cards ===== */
.camp-types {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.camp-type {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border: 0.1rem solid rgba(255, 255, 255, 0.06);
    border-radius: 0.8rem;
    transition: all 0.3s;
    cursor: default;
}

.camp-type-1 {
    background: rgba(2, 123, 255, 0.08);
    border-color: rgba(2, 123, 255, 0.2);
    animation: campCardGlow 4s ease-in-out infinite;
}

@keyframes campCardGlow {
    0%, 100% { border-color: rgba(2, 123, 255, 0.2); }
    50% { border-color: rgba(2, 123, 255, 0.4); }
}

.camp-type-2 { animation: campSlideIn 0.5s ease-out 0.1s both; }
.camp-type-3 { animation: campSlideIn 0.5s ease-out 0.2s both; }
.camp-type-4 { animation: campSlideIn 0.5s ease-out 0.3s both; }

@keyframes campSlideIn {
    0% { opacity: 0; transform: translateX(-0.5rem); }
    100% { opacity: 1; transform: translateX(0); }
}

.camp-type-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.camp-type-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.camp-type-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.camp-type-desc {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
}

.camp-type-check {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: #027BFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.6rem;
    flex-shrink: 0;
    animation: checkBounce 2s ease-in-out infinite;
}

@keyframes checkBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ===== Send Button ===== */
.camp-send {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.2rem;
    margin-top: 0.2rem;
}

.camp-send-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #027BFF, #0056D2);
    color: #fff;
    padding: 0.6rem 1.4rem;
    border-radius: 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 0.3rem 1.2rem rgba(2, 123, 255, 0.3);
    animation: sendPulse 3s ease-in-out infinite;
}

.camp-send-btn i {
    font-size: 0.75rem;
}

@keyframes sendPulse {
    0%, 100% { box-shadow: 0 0.3rem 1.2rem rgba(2, 123, 255, 0.2); }
    50% { box-shadow: 0 0.3rem 2rem rgba(2, 123, 255, 0.45); }
}

.camp-send-count {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.camp-count-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #027BFF;
    font-variant-numeric: tabular-nums;
    animation: countUp 4s ease-in-out infinite;
}

@keyframes countUp {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.camp-count-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .camp-anim-wrap {
        padding: 2rem !important;
        min-height: 30rem;
    }
    .camp-step-line { width: 2.5rem; }
}
