/* M One Capital Rebrand Banner Styles */

.mocrb-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    animation: mocrb-fade-in 0.5s ease-out;
}

.mocrb-banner-content {
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
    position: relative;
    width: 100%;
}

.mocrb-logo-container {
    margin-bottom: 40px;
}

.mocrb-logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.mocrb-old-logo,
.mocrb-new-logo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-in-out;
}

.mocrb-old-logo.active {
    opacity: 1;
    transform: scale(1);
}

.mocrb-new-logo.active {
    opacity: 1;
    transform: scale(1);
}

/* .mocrb-old-logo h2,
.mocrb-new-logo h2 {
    color: #333333;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
} */

.mocrb-logo-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 300px;
}

.mocrb-logo-svg svg {
    width: 100%;
    height: auto;
    max-width: 300px;
}


.mocrb-message {
    margin-bottom: 40px;
}


.mocrb-message p {
    color: #666666;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.mocrb-actions {
    margin-bottom: 30px;
}



/* Animations */
@keyframes mocrb-fade-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes mocrb-logo-transition {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mocrb-banner-content {
        padding: 20px 15px;
    }
    
    .mocrb-logo-wrapper {
        min-height: 150px;
    }
    
    .mocrb-old-logo h2,
    .mocrb-new-logo h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .mocrb-logo-svg {
        max-width: 250px;
    }
    
    .mocrb-logo-svg svg {
        max-width: 250px;
    }
    
    .mocrb-message h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .mocrb-message p {
        font-size: 16px;
    }
    
    .mocrb-continue-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mocrb-banner-content {
        padding: 15px 10px;
    }
    
    .mocrb-logo-wrapper {
        min-height: 120px;
    }
    
    .mocrb-old-logo h2,
    .mocrb-new-logo h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .mocrb-logo-svg {
        max-width: 200px;
    }
    
    .mocrb-logo-svg svg {
        max-width: 200px;
    }
    
    .mocrb-message h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .mocrb-message p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .mocrb-continue-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .mocrb-old-logo h2,
    .mocrb-new-logo h2 {
        font-size: 18px;
    }
    
    .mocrb-logo-svg {
        max-width: 180px;
    }
    
    .mocrb-logo-svg svg {
        max-width: 180px;
    }
    
    .mocrb-message h1 {
        font-size: 20px;
    }
    
    .mocrb-message p {
        font-size: 13px;
    }
}

/* Hide banner when dismissed */
.mocrb-banner.mocrb-dismissed {
    display: none;
} 