.mym-sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 24px);
    max-width: 560px;
    background: linear-gradient(135deg, #ff5e9a 0%, #ff2e6f 100%);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 8px 28px rgba(255, 46, 111, 0.45), 0 2px 6px rgba(0, 0, 0, 0.18);
    padding: 0;
    display: flex;
    align-items: stretch;
    animation: mym-sticky-in 320ms ease-out 280ms backwards;
}

@keyframes mym-sticky-in {
    from { opacity: 0; transform: translate(-50%, 24px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

.mym-sticky-link {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px 12px 22px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
}

.mym-sticky-link:hover,
.mym-sticky-link:focus {
    color: #fff;
    text-decoration: none;
    filter: brightness(1.05);
}

.mym-sticky-text {
    flex: 1 1 auto;
    text-align: left;
}

.mym-sticky-go {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.22);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 14px;
    white-space: nowrap;
}

.mym-sticky-close {
    flex: 0 0 auto;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 22px;
    line-height: 1;
    padding: 0 14px;
    cursor: pointer;
    align-self: stretch;
}

.mym-sticky-close:hover {
    color: #fff;
}

@media (max-width: 480px) {
    .mym-sticky-link {
        padding: 11px 12px 11px 16px;
        font-size: 14px;
    }
    .mym-sticky-go {
        padding: 5px 10px;
        font-size: 13px;
    }
}

/* === Cam sticky bar (cam_placement = expanded) === */
.cam-sticky-bar {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 9998;
    max-width: 280px;
    background: linear-gradient(135deg, #1f1f24 0%, #2a2a32 100%);
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    animation: cam-sticky-in 360ms ease-out 800ms backwards;
}

@keyframes cam-sticky-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cam-sticky-link {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.25;
}

.cam-sticky-link:hover,
.cam-sticky-link:focus {
    color: #fff;
    text-decoration: none;
    filter: brightness(1.1);
}

.cam-sticky-pulse {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    background: #ff0040;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 0, 64, 0.7);
    animation: cam-live-pulse 1.6s infinite;
}

@keyframes cam-live-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 0, 64, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(255, 0, 64, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 64, 0); }
}

.cam-sticky-label {
    flex: 0 0 auto;
    background: #ff0040;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 3px;
}

.cam-sticky-text {
    flex: 1 1 auto;
    color: #f0f0f0;
}

.cam-sticky-close {
    flex: 0 0 auto;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 18px;
    line-height: 1;
    padding: 0 10px;
    cursor: pointer;
}

.cam-sticky-close:hover {
    color: #fff;
}

@media (max-width: 480px) {
    .cam-sticky-bar {
        left: 14px;
        right: 14px;
        max-width: none;
    }
}

/* === Cam grid card (cam_placement = expanded) === */
.cam-grid-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: 100%;
    min-height: 220px;
    padding: 16px;
    background: linear-gradient(135deg, #ff0040 0%, #b00030 60%, #6b001c 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(176, 0, 48, 0.35);
    transition: transform 200ms ease, box-shadow 200ms ease;
    position: relative;
    overflow: hidden;
}

.cam-grid-card:hover,
.cam-grid-card:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(176, 0, 48, 0.5);
}

.cam-grid-pulse {
    width: 10px;
    height: 10px;
    background: #00ff7f;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 255, 127, 0.7);
    animation: cam-live-pulse-green 1.6s infinite;
}

@keyframes cam-live-pulse-green {
    0%   { box-shadow: 0 0 0 0 rgba(0, 255, 127, 0.7); }
    70%  { box-shadow: 0 0 0 12px rgba(0, 255, 127, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 127, 0); }
}

.cam-grid-live {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 3px 8px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 3px;
}

.cam-grid-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    padding: 0 6px;
}

.cam-grid-cta {
    margin-top: 4px;
    background: rgba(255, 255, 255, 0.18);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}
