/* Trading Flow Section */
#trading-flow {
    position: relative;
    padding: 80px 0 100px 0;
    margin-bottom: 150px;
    overflow: hidden;
}

/* Dark gradient background to make it stand out */
.bg-gradient-dark {
    background: linear-gradient(135deg, #0f0a12 0%, #1a1a1a 100%);
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.trading-flow-card {
    background: linear-gradient(145deg, rgba(22, 22, 22, 0.9) 0%, rgba(16, 10, 18, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
    position: relative;
    backdrop-filter: blur(15px);
    text-align: center;
}

/* Urgency Badges Container */
.urgency-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Deadline Badge */
.badge-deadline {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    color: var(--accent-color);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Limited Badge */
.badge-limited {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.2) 0%, rgba(255, 59, 48, 0.1) 100%);
    color: #ff8080;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid rgba(255, 59, 48, 0.4);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.subtitle-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Description Area */
.flow-description {
    max-width: 800px;
    margin: 2rem auto 3rem;
    padding: 0 1rem;
}

.description-main {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.description-secondary {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    font-style: italic;
}

/* Features Grid */
.trading-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #e0e0e0;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.check-icon {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 1.4rem;
    font-weight: bold;
}

/* CTA Container */
.cta-container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-lg {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.glow-effect {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.glow-effect:hover::before {
    width: 300px;
    height: 300px;
}

.glow-effect:hover {
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .trading-flow-card {
        padding: 2.5rem 1.5rem;
    }

    .urgency-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .description-main {
        font-size: 1.1rem;
    }

    .trading-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .btn-lg {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}