/* Note: Tailwind CDN is loaded in functions.php */
/* Note: Local fonts are loaded from /assets/fonts/fonts.css in functions.php */

/* ========== FONT FAMILIES ========== */

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html,
body {
    overflow-x: hidden;
    width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-black {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========== CUSTOM LOGO STYLING ========== */
.custom-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    display: block;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

/* Logo in navbar */
nav .custom-logo {
    height: 32px;
    max-width: 150px;
}

/* Logo in footer */
footer .custom-logo {
    height: 50px;
    max-width: 200px;
}

footer .custom-logo-link {
    display: block;
}

/* ========== NAVIGATION MENU ========== */
/* Desktop Navigation */
nav>div>div:nth-child(2) ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

nav>div>div:nth-child(2) ul li {
    margin: 0;
    padding: 0.5rem 0.75rem;
    display: inline-block;
    position: relative;
}

nav>div>div:nth-child(2) a {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 0.5rem 0.25rem;
    position: relative;
}

nav>div>div:nth-child(2) a:hover,
nav>div>div:nth-child(2) .submenu-open>a,
nav li.current-menu-item>a,
nav li.current-page-item>a,
nav li.current-menu-ancestor>a {
    color: #00ff88 !important;
}

/* Indicators for items with submenus */
nav ul li.mega-menu-parent>a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 0.65rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

nav ul li.mega-menu-parent:hover>a::after,
nav ul li.mega-menu-parent.submenu-open>a::after {
    opacity: 1;
    transform: translateY(2px);
}

/* Desktop Submenu Dropdown - Below the menu */
nav ul ul {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 0.75rem;
    flex-direction: column;
    gap: 0;
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Mega Menu Submenu - Grid Layout */
nav ul li.mega-menu-parent>ul.mega-menu-submenu {
    display: none !important;
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%) scale(0.98);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-top: 1rem;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: normal;
    width: max-content;
    max-width: 90vw;
    box-sizing: border-box;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 20px rgba(0, 255, 136, 0.03);
}

/* Mega Menu Grid - 2 columns (only when open) */
nav ul li.mega-menu-parent.submenu-open>ul.mega-menu-submenu {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Mega Menu Item */
nav ul li.mega-menu-parent>ul.mega-menu-submenu li {
    display: block !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    background: transparent;
    transition: all 0.3s ease;
}

nav ul li.mega-menu-parent>ul.mega-menu-submenu li a {
    display: grid !important;
    grid-template-columns: 48px 1fr;
    grid-template-areas:
        "icon title"
        "icon subtitle";
    column-gap: 1.25rem;
    row-gap: 0.25rem;
    padding: 1.25rem !important;
    border-radius: 1rem;
    border: 1px solid transparent !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

nav ul li.mega-menu-parent>ul.mega-menu-submenu li a:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 255, 136, 0.2) !important;
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 0 15px rgba(0, 255, 136, 0.05);
    transform: translateY(-2px);
}

nav ul li.mega-menu-parent>ul.mega-menu-submenu li a .mega-menu-icon-fa {
    grid-area: icon;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    font-size: 20px;
    transition: all 0.3s ease;
    align-self: start;
}

nav ul li.mega-menu-parent>ul.mega-menu-submenu li a:hover .mega-menu-icon-fa {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
    transform: scale(1.05);
}

nav ul li.mega-menu-parent>ul.mega-menu-submenu li a .mega-menu-title {
    grid-area: title;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    transition: all 0.3s ease;
    padding-top: 4px;
}

nav ul li.mega-menu-parent>ul.mega-menu-submenu li a:hover .mega-menu-title {
    color: #00ff88;
}

nav ul li.mega-menu-parent>ul.mega-menu-submenu li a .mega-menu-subtitle {
    grid-area: subtitle;
    color: #888888;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.01em;
    line-height: 1.4;
    transition: all 0.3s ease;
}

nav ul li.mega-menu-parent>ul.mega-menu-submenu li a:hover .mega-menu-subtitle {
    color: #cccccc;
}

/* Show submenu on hover - with JS class */
nav ul li.submenu-open>ul {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
}

/* Show mega menu on hover (desktop) */
nav ul li.mega-menu-parent.submenu-open>ul.mega-menu-submenu {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) scale(1) !important;
}

nav ul li.menu-item-has-children.submenu-open>ul {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) scale(1) !important;
}

/* Show mega menu on click (mobile) */
nav ul li.mega-menu-parent.submenu-active>ul.mega-menu-submenu,
nav ul li.menu-item-has-children.submenu-active>ul {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
}

/* Mobile Responsive - Mega Menu */
@media (max-width: 1023px) {
    nav ul li.mega-menu-parent>ul.mega-menu-submenu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        background: transparent !important;
        border: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        width: auto !important;
        max-width: none !important;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.5rem;
        grid-template-columns: none;
    }

    nav ul li.mega-menu-parent>ul.mega-menu-submenu li {
        display: block !important;
        padding: 0 !important;
        background: transparent !important;
    }

    nav ul li.mega-menu-parent>ul.mega-menu-submenu li a {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0 !important;
        border-left: 2px solid rgba(0, 255, 136, 0.3) !important;
        padding-left: 0.75rem !important;
    }

    nav ul li.mega-menu-parent>ul.mega-menu-submenu li a .mega-menu-icon-fa {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    nav ul li.mega-menu-parent>ul.mega-menu-submenu li a .mega-menu-subtitle {
        display: none;
    }

    nav ul li.mega-menu-parent>ul.mega-menu-submenu li a .mega-menu-title {
        font-size: 0.75rem;
    }
}

nav>div>div:nth-child(2) ul ul li {
    padding: 0;
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
}

nav>div>div:nth-child(2) ul ul li:last-child {
    margin-bottom: 0;
}

nav>div>div:nth-child(2) ul ul a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.7rem;
    border-left: 3px solid transparent;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2001;
}

nav>div>div:nth-child(2) ul ul a:hover {
    background: rgba(0, 255, 136, 0.15);
    border-left-color: #00ff88;
    padding-left: 1.25rem;
}

/* Ensure submenu is clickable */
nav>div>div:nth-child(2) ul ul.show-popup * {
    pointer-events: auto !important;
}


/* Mobile Submenu - Always visible */
@media (max-width: 1023px) {
    /* Hide all nested ul in mobile menu */
    [data-mobile-menu] ul ul,
    [data-mobile-menu] ul li ul {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: all 0.3s ease;
    }

    /* Show ul when parent has submenu-active class */
    [data-mobile-menu] li.submenu-active > ul {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        max-height: 1000px !important;
        flex-direction: column;
        gap: 0.5rem;
        transition: all 0.3s ease;
        margin-top: .5rem;
    }

    .mega-menu-dropdown {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        background: transparent !important;
        border: none !important;
        backdrop-filter: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        padding: 0 !important;
        margin-top: 0.5rem !important;
        width: auto !important;
        max-width: none !important;
        display: grid !important;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .mega-menu-item {
        padding: 0.5rem 0;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }

    .mega-menu-icon {
        width: 32px;
        height: 32px;
    }

    .mega-menu-title {
        font-size: 0.75rem;
    }

    .mega-menu-subtitle {
        display: none;
    }

    nav ul li {
        width: 100%;
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }
    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li > a {
        font-size: 1.125rem !important;
        font-weight: 900 !important;
        letter-spacing: -0.01em !important;
        color: #ffffff !important;
    }

    /* Hide all submenus by default */
    nav ul ul {
        display: none !important;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem !important;
        padding-left: 1rem !important;
        border-left: 1px solid rgba(0, 255, 136, 0.2) !important;
        background: transparent !important;
        position: static !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        width: 100% !important;
        max-width: none !important;
    }

    /* Shown when parent has 'submenu-active' class */
    nav ul li.submenu-active > ul {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    nav ul ul li {
        padding: 0.25rem 0 !important;
        border: none !important;
    }

    nav ul ul a {
        font-size: 0.875rem !important;
        font-weight: 600 !important;
        color: #a3a3a3 !important;
        display: flex !important;
        align-items: center !important;
    }

    nav ul ul li.current-menu-item a,
    nav ul ul a:hover {
        color: #00ff88 !important;
    }

    .mega-menu-icon-fa {
        display: none !important; /* Remove icons as requested */
    }

    /* Submenu Toggle Arrow */
    nav li.mega-menu-parent > a,
    nav li.menu-item-has-children > a,
    [data-mobile-menu] li.mega-menu-parent > a,
    [data-mobile-menu] li.menu-item-has-children > a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    [data-mobile-menu] li.mega-menu-parent > a,
    [data-mobile-menu] li.menu-item-has-children > a{
        justify-content: flex-start !important;
    }

    nav li.mega-menu-parent > a::after,
    nav li.menu-item-has-children > a::after,
    [data-mobile-menu] li.mega-menu-parent > a::after,
    [data-mobile-menu] li.menu-item-has-children > a::after {
        content: '+';
        font-size: 1.2rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.5);
        transition: color 0.3s ease, content 0.3s ease;
        margin-left: auto;
        padding-left: 1rem;
        flex-shrink: 0;
        line-height: 1;
    }

    [data-mobile-menu] li.mega-menu-parent > a::after,
    [data-mobile-menu] li.menu-item-has-children > a::after{
        margin-left: 0;
        margin-top: -2px;
    }

    nav li.submenu-active > a::after,
    [data-mobile-menu] li.submenu-active > a::after {
        content: '−';
        color: #00ff88;
    }

    /* Submenu animation */
    [data-mobile-menu] li.submenu-active > ul {
        animation: slideDown 0.3s ease-out forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
            max-height: 0;
        }
        to {
            opacity: 1;
            transform: translateY(0);
            max-height: 1000px;
        }
    }
}

/* ========== CUSTOM COMPONENT CLASSES ========== */

.glass-effect {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.glass-effect-light {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, #00ff88, #40ff9f, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-top: 10px;
}

.glow-effect {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.glow-effect-strong {
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.5);
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.btn-ravo-primary {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    padding: 1rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.btn-ravo-primary:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
    transform: scale(1.05);
}

.btn-ravo-outline {
    background: transparent;
    border: 2px solid #00ff88;
    color: #00ff88;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
}

.btn-ravo-outline:hover {
    background: #00ff88;
    color: #000000;
}

.card-ravo {
    background: #1a1a1a;
    border: 1px solid #3a3a3a;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.card-ravo:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
    transform: translateY(-4px);
}

.card-ravo-glass {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.card-ravo-glass:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.card-ravo-gradient {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.card-ravo-gradient:hover {
    border-color: rgba(0, 255, 136, 0.3);
}

/* ========== CONCAVE CURVE TRANSITION ========== */

.concave-top {
    position: relative;
}

.concave-top::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: #000000;
    border-radius: 120px 120px 0 0;
    z-index: 10;
}

.concave-bottom {
    position: relative;
}

.concave-bottom::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: #ffffff;
    border-radius: 120px 120px 0 0;
    z-index: 10;
}

@media (max-width: 768px) {
    .concave-top::after,
    .concave-bottom::after {
        height: 60px;
        border-radius: 60px 60px 0 0;
    }
}

/* ========== UTILITIES ========== */

.text-glow {
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.text-glow-strong {
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}

.bg-ravo-gradient {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
}

.bg-ravo-dark-gradient {
    background: linear-gradient(135deg, #1a4d3a, #0a0a0a);
}

.accent-badge {
    display: inline-block;
    background-color: #00ff88;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.hero-badge-alt {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #0a0a0a;
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    color: #00ff88;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.625rem;
    letter-spacing: 0.25em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-badge-alt::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* ========== ANIMATIONS ========== */


@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }

    50% {
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

/* Scroll Reveal Animations */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revealRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revealScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hide elements by default */
[data-reveal],
[data-fade-in] {
    opacity: 0;
    visibility: hidden;
}

/* Reveal animations */
[data-reveal].reveal-active.reveal-up,
[data-fade-in].reveal-active.reveal-up {
    animation: revealUp 0.8s ease forwards;
    visibility: visible;
}

[data-reveal].reveal-active.reveal-left {
    animation: revealLeft 0.8s ease forwards;
    visibility: visible;
}

[data-reveal].reveal-active.reveal-right {
    animation: revealRight 0.8s ease forwards;
    visibility: visible;
}

[data-reveal].reveal-active.reveal-scale {
    animation: revealScale 0.8s ease forwards;
    visibility: visible;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-scroll {
    animation: scroll 120s linear infinite;
    width: max-content;
}

.animate-float {
    animation: float 20s linear infinite;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .text-6xl {
        font-size: 2.25rem;
    }

    .text-7xl {
        font-size: 2.625rem;
    }

    .text-8xl {
        font-size: 3rem;
    }
}

/* ========== WORDPRESS SPECIFIC ========== */

.wp-block-image {
    margin: 2rem 0;
}

.wp-block-image img {
    border-radius: 2rem;
    max-width: 100%;
    height: auto;
}

/* Make WordPress editor dark */
.mce-tinymce {
    background-color: #1a1a1a;
    color: #ffffff;
}

.mce-panel {
    background-color: #2a2a2a;
    border-color: #3a3a3a;
}

.mce-btn {
    background-color: #3a3a3a;
    color: #ffffff;
}

.mce-btn:hover {
    background-color: #00ff88;
    color: #000000;
}