/* === MODULE CTA SECTION === */
.module-cta-section {
    position: relative;
    padding: 100px 20px;
    background: #0f172a; /* Base dark color */
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Background Glow Effect */
.cta-glow-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Buttons Container */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* Base Button Styles (if not already defined) */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

/* Primary Button (Registration) */
.btn-primary {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* Outline Button (Demo) */
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

/* Play Icon specific styling */
.play-icon {
    font-size: 0.8rem;
    width: 24px; height: 24px;
    background: #fff; color: #000;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding-left: 2px; /* Visual center fix for triangle */
}

.btn-outline:hover .play-icon {
    background: #3b82f6; color: #fff;
}

/* Small Note below buttons */
.cta-note {
    font-size: 0.9rem !important;
    color: #64748b !important;
    margin-top: 15px;
    margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 600px) {
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn { width: 100%; }
    .cta-content h2 { font-size: 2rem; }
}