/* Circle Menu Styles */
.circle-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.circle-menu-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    color: #0F0F23;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.circle-menu-items {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.circle-menu.active .circle-menu-items {
    display: flex;
}

.circle-menu-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.3s ease forwards;
}

.circle-menu-item:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(0) scale(1.1);
    color: var(--color-primary);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.circle-menu-item:nth-child(1) {
    animation-delay: 0.1s;
}

.circle-menu-item:nth-child(2) {
    animation-delay: 0.2s;
}

.circle-menu-item:nth-child(3) {
    animation-delay: 0.3s;
}

.circle-menu-item:nth-child(4) {
    animation-delay: 0.4s;
}

.circle-menu-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .circle-menu {
        bottom: 15px;
        right: 15px;
    }
    
    .circle-menu-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .circle-menu-item {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}