/* ==========================================================================
   Hero Header: Promo Video Trigger Styles (Exact React Match)
   Location: css/hero-header-promo-video-banner.css
   ========================================================================== */

.tc-hero-video-trigger {
    display: inline-flex !important;
    align-items: center !important;
    gap: 15px !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important; /* Not rounded as requested */
    padding: 10px 24px 10px 14px !important;
    cursor: pointer !important;
    transition: all .3s cubic-bezier(.16, 1, .3, 1) !important;
    margin-bottom: 40px !important;
    -webkit-backdrop-filter: blur(10px) !important;
    text-align: left !important;
    outline: none !important;
}

.tc-hero-video-trigger:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5) !important;
}

.tc-hero-video-trigger:active {
    transform: translateY(0) !important;
}

/* Pulsing -15deg Play Icon */
.tc-hero-play-pulse {
    width: 36px !important;
    height: 36px !important;
    background-color: #ffffff !important;
    color: var(--primary-color, #6f69ff) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transform: rotate(-15deg) !important;
    animation: pulsePlayIcon 2.5s infinite cubic-bezier(0.4, 0, 0.6, 1) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3) !important;
    transition: transform 0.3s ease, background-color 0.2s ease, color 0.2s ease !important;
}

.tc-hero-play-pulse svg {
    width: 16px !important;
    height: 16px !important;
    margin-left: 2px !important;
    fill: currentColor !important;
}

.tc-hero-video-trigger:hover .tc-hero-play-pulse {
    background-color: var(--primary-color, #6f69ff) !important;
    color: #ffffff !important;
}

@keyframes pulsePlayIcon {
    0%, 100% { transform: rotate(-15deg) scale(1); box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); }
    50% { transform: rotate(-15deg) scale(1.15); box-shadow: 0 0 25px rgba(111, 105, 255, 0.6); }
}

.tc-hero-video-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.95rem !important;
    color: #cbd5e1 !important;
    margin: 0 !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
}

.tc-hero-highlight {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
}

.tc-hero-highlight svg {
    width: 14px !important;
    height: 14px !important;
    stroke: var(--primary-color, #6f69ff) !important;
    stroke-width: 3.5 !important;
}

@media (max-width: 768px) {
    .tc-hero-video-trigger {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 12px 20px !important;
        gap: 10px !important;
    }
    .tc-hero-play-pulse {
        width: 32px !important;
        height: 32px !important;
    }
}