/* Dynamic Banner CTA */
.dynamic-banner {
    background: linear-gradient(135deg, rgba(1, 6, 28, 0.95) 0%, rgba(0, 246, 254, 0.05) 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 246, 254, 0.1);
    border-bottom: 1px solid rgba(0, 246, 254, 0.1);
}

.dynamic-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 246, 254, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.dynamic-banner-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dynamic-banner h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    font-family: "Source Sans Pro", Arial, sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.join-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: #00f6fe;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #00f6fe;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(0, 246, 254, 0.2);
    position: relative;
    overflow: hidden;
    font-family: "Source Sans Pro", Arial, sans-serif;
}

.join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 246, 254, 0.2), transparent);
    transition: left 0.5s;
}

.join-btn:hover {
    background: #00f6fe;
    color: #01061c;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 246, 254, 0.4);
}

.join-btn:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .dynamic-banner {
        padding: 3.5rem 1.5rem;
    }

    .dynamic-banner h2 {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .join-btn {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .dynamic-banner h2 {
        font-size: 1.2rem;
    }

    .join-btn {
        width: 100%;
        max-width: 280px;
    }
}