#ccTV-float-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
}

/* Главная кнопка */
#cctv-main-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1e3a5f;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

#cctv-main-btn:hover {
    transform: scale(1.08);
}

/* Раскрывающиеся кнопки */
#cctv-float-btns {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

#cctv-float-btns.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Общие стили кнопок */
.cctv-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
    text-decoration: none;
}

.cctv-btn:hover {
    transform: scale(1.1);
}

/* Цвета кнопок */
.cctv-phone {
    background: #1a73e8;
}

.cctv-wa {
    background: #25d366;
}

.cctv-insta {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

#cctv-main-btn svg {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
}

#cctv-main-btn svg path {
    stroke: white !important;
}

#cctv-main-btn svg {
    width: 28px !important;
    height: 28px !important;
    overflow: visible !important;
}

