.floating-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
    z-index: 1000;
}

@media (min-width: 768px) {
    .floating-icon {
        width: 100px;
        height: 100px;
        bottom: 30px;
        left: 30px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.icon-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #2ac2c9, #32994b);
		 /*linear-gradient(145deg, #667eea, #764ba2);*/
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.floating-icon:hover .icon-container {
    transform: scale(1.1);
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.calendar-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .calendar-icon {
        width: 45px;
        height: 45px;
        border-radius: 10px;
        margin-bottom: 8px;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.calendar-top {
    width: 30px;
    height: 8px;
    background: #4acd9d; /* #667eea;*/
    border-radius: 4px 4px 0 0;
    position: relative;
    margin-bottom: 2px;
}

.calendar-top::before,
.calendar-top::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 6px;
    background: #667eea;
    border-radius: 2px;
    top: -4px;
}

.calendar-top::before {
    left: 8px;
}

.calendar-top::after {
    right: 8px;
}

.calendar-date {
    color: #667eea;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

@media (min-width: 768px) {
    .calendar-top {
        width: 38px;
        height: 10px;
    }
    
    .calendar-date {
        font-size: 18px;
    }
}

.text-label {
    font-size: 8px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .text-label {
        font-size: 10px;
        letter-spacing: 0.8px;
    }
}

.glow-ring {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 2px solid rgba(102, 126, 234, 0.4);
    border-radius: 22px;
    animation: rotate 4s linear infinite;
    pointer-events: none;
}

@media (min-width: 768px) {
    .glow-ring {
        width: 110px;
        height: 110px;
        border-radius: 25px;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0.5;
    }
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: sparkle 1.5s ease-in-out infinite;
    box-shadow: 0 0 4px #ffd700;
}

@media (min-width: 768px) {
    .sparkle {
        width: 6px;
        height: 6px;
    }
}

.sparkle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 80%;
    left: 80%;
    animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.sparkle:nth-child(4) {
    bottom: 20%;
    left: 15%;
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}

.click-hint {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: #022505;
    font-size: 9px;
    font-weight: 600;
    opacity: 0.8;
    animation: fade 2s ease-in-out infinite;
    white-space: nowrap;
    text-shadow: 0 1px 1px rgb(50 47 47);
}

@media (min-width: 768px) {
    .click-hint {
        font-size: 11px;
        bottom: -30px;
    }
}

@keyframes fade {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}