/* Hero Widget Pro Styles */
.mc-hero-pro-wrapper {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 120px 40px;
    border-radius: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.mc-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.mc-hero-subtitle {
    font-size: 1.25rem;
    color: #93c5fd;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.mc-globe-container {
    perspective: 1000px;
    margin-bottom: 60px;
}

.mc-globe {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: radial-gradient(circle at 30% 30%, #3b82f6, #1d4ed8);
    border-radius: 50%;
    box-shadow: 
        inset -20px -20px 50px rgba(0,0,0,0.5),
        0 0 80px rgba(59, 130, 246, 0.4);
    animation: mc-rotate 10s infinite linear;
}

@keyframes mc-rotate {
    from { transform: rotateY(0); }
    to { transform: rotateY(360deg); }
}

.mc-features-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 100px;
    width: fit-content;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mc-features-bar .sep {
    color: #3b82f6;
    font-weight: bold;
}
