/* Mr. Miami Vibe - Emphasizing Rasta Colors */

/* Body - Keep it simple and dark to make colors pop */
body {
    background-color: #000000; /* Solid black background to make everything stand out */
    color: #FFFFFF; /* White text for high contrast */
    font-family: 'Roboto', sans-serif; /* A modern, bold font */
    overflow-x: hidden; /* To prevent horizontal scroll from animations */
}

/* Removing background layers */
.fg__admin .item-preview, 
ul.items {
    background: none; /* No background, just floating elements */
    border-radius: 15px;
    box-shadow: none; /* No shadow, purely floating */
}

/* Floating "Mr. Miami" text - Highlighting Rasta Colors */
@keyframes floatText {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); color: #CE1126; } /* Bright Red during float */
    100% { transform: translateY(0); }
}

#mr-miami-float {
    position: fixed;
    bottom: 15%;
    right: 10%;
    font-size: 4em;
    color: #FED100; /* Bright Yellow */
    animation: floatText 3s infinite ease-in-out;
    z-index: 1000;
    text-shadow: 0 0 15px rgba(255, 255, 153, 1); /* Neon Yellow Glow */
}

/* Buttons with dynamic color shifting using Rasta colors */
@keyframes colorShift {
    0% { background-color: #009639; } /* Jamaican Green */
    50% { background-color: #CE1126; } /* Bright Red */
    100% { background-color: #FED100; } /* Bright Yellow */
}

.fg__admin .item-preview button.item, 
ul.items button.item {
    background-color: #009639; /* Start with Green */
    color: #FFFFFF; /* White text */
    border-radius: 50px;
    padding: 15px 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: colorShift 5s infinite ease-in-out; /* Color shift between Green, Red, and Yellow */
    box-shadow: 0 8px 20px rgba(255, 255, 153, 0.8); /* Glowing effect */
}

.fg__admin .item-preview button.item:hover, 
ul.items button.item:hover {
    transform: scale(1.2) translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 153, 1); /* Flashing yellow on hover */
    animation: none; /* No color shift on hover for emphasis */
    background-color: #CE1126; /* Red on hover */
}

/* Palm tree icons with stronger accents in Rasta colors */
@keyframes swayPalm {
    0% { transform: rotate(0deg); color: #009639; } /* Jamaican Green */
    50% { transform: rotate(2deg); color: #CE1126; } /* Bright Red */
    100% { transform: rotate(0deg); color: #FED100; } /* Bright Yellow */
}

.fg__admin .item-preview button.item .top .group-wrapper .group::before, 
ul.items button.item .top .group-wrapper .group::before {
    content: '🌴'; /* Palm tree emoji */
    font-size: 2em;
    display: block;
    text-align: center;
    animation: swayPalm 4s infinite ease-in-out;
}

/* Neon glow effect with Rasta colors */
.fg__admin .item-preview button.item .top .group-wrapper .group:before, 
ul.items button.item .top .group-wrapper .group:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 153, 1); /* Yellow neon glow */
    z-index: -1;
}

/* Enhanced palm tree sway with flash effect using Rasta colors */
@keyframes tropicalFlash {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 255, 153, 0.8); } /* Yellow flash */
    50% { box-shadow: 0 0 25px rgba(255, 255, 153, 1); } /* Intense yellow flash */
}

.fg__admin .item-preview button.item .top .group-wrapper .group, ul.items button.item .top .group-wrapper .group {
opacity: 0;
}


.fg__admin .item-preview button.item .top .group-wrapper .group {
    animation: tropicalFlash 5s infinite ease-in-out;
}