.glass-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #344c34, #b5a68e);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

.animate-scroll {
    display: flex;
    width: max-content;
    animation: scroll 10s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

.month-menu-float {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999999 !important;
    background: #2E8B57;
    color: #fff;
    width: 220px;
    padding: 22px 18px;
    border-radius: 16px 0 0 16px;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.month-menu-float h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.month-menu-float p {
    font-size: 13px;
    opacity: .9;
}

.month-menu-float a {
    margin-top: 6px;
    background: #fff;
    color: #2E8B57;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

@keyframes pulse-fab {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 139, 87, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(46, 139, 87, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 139, 87, 0);
    }
}

.month-menu-mobile {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2E8B57;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.4);
    z-index: 999999 !important;
    animation: pulse-fab 2s infinite;
    transition: transform 0.2s ease, background 0.2s ease;
}

.month-menu-mobile:active {
    transform: scale(0.95);
    background: #236b43;
}

@media (max-width:768px) {
    .month-menu-float {
        display: none;
    }
}

@media (min-width:769px) {
    .month-menu-mobile {
        display: none;
    }
}