/* YouTube Embed Button - Frontend */
.yeb-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 20px 0;
}

.yeb-btn-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    cursor: pointer;
}

/* ALWAYS ANIMATED — not just on hover */
.yeb-btn-wrap .yeb-btn {
    animation: yeb-pulse-glow 2s ease-in-out infinite;
}

@keyframes yeb-pulse-glow {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.02); filter: brightness(1.05); }
}

.yeb-btn-wrap .yeb-cta::before {
    animation: yeb-bounce 1.2s ease-in-out infinite;
}

@keyframes yeb-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Shimmer effect always running */
.yeb-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: yeb-shimmer 3s infinite;
}

@keyframes yeb-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.yeb-btn {
    display: flex;
    align-items: center;
    padding: 16px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.yeb-btn-wrap:hover .yeb-btn {
    transform: translateY(-3px) scale(1.03);
}

.yeb-rnd { border-radius: 50px; }

.yeb-shd {
    transition: box-shadow 0.3s ease;
}

.yeb-btn-wrap:hover .yeb-shd {
    box-shadow: 0 0 0 10px var(--glow, rgba(255,0,0,0.1)) !important;
}

.yeb-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.yeb-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    animation: yeb-icon-bob 2s ease-in-out infinite;
}

@keyframes yeb-icon-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.yeb-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.yeb-txt {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.yeb-t1 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    line-height: 1.2;
}

.yeb-t2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.yeb-cta {
    text-align: center;
    margin-top: 14px;
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
}

.yeb-cta::before {
    content: "↓";
    font-size: 16px;
    color: #888;
}

/* Sizes */
.yeb-small .yeb-btn { padding: 10px 20px; }
.yeb-small .yeb-icon { width: 32px; height: 32px; }
.yeb-small .yeb-t1 { font-size: 10px; letter-spacing: 1.5px; }
.yeb-small .yeb-t2 { font-size: 14px; }
.yeb-small .yeb-cta { font-size: 12px; margin-top: 8px; }

.yeb-large .yeb-btn { padding: 22px 40px; }
.yeb-large .yeb-icon { width: 60px; height: 60px; }
.yeb-large .yeb-t1 { font-size: 14px; }
.yeb-large .yeb-t2 { font-size: 26px; }
.yeb-large .yeb-cta { font-size: 16px; margin-top: 16px; }

/* Responsive */
@media (max-width: 480px) {
    .yeb-btn { padding: 12px 22px; }
    .yeb-icon { width: 36px; height: 36px; }
    .yeb-t2 { font-size: 16px; }
    .yeb-t1 { font-size: 11px; }
}
