body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

.hero-gradient {
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.9) 0%,
        rgba(2, 6, 23, 0.95) 100%
    );
}
.plan-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 25px -5px rgba(255, 0, 0, 0.2),
        0 10px 10px -5px rgba(255, 0, 0, 0.1);
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.feature-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}
.feature-icon i {
    font-size: 40px;
}
.streaming-logo {
    filter: grayscale(100%) brightness(150%);
    transition: all 0.3s ease;
}
.streaming-logo:hover {
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.1);
}
.testimonial-card {
    background: linear-gradient(
        145deg,
        rgba(15, 23, 42, 0.8) 0%,
        rgba(2, 6, 23, 0.9) 100%
    );
    border-left: 4px solid #ff0000;
}
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-question {
    transition: all 0.3s ease;
}
.faq-question:hover {
    color: #ffd700;
}
.nav-link {
    position: relative;
}
.nav-link i {
    margin-right: 15px;
    color: #f2704a;
    font-size: 25px;
}
.nav-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff0000;
    transition: width 0.3s ease;
}
.nav-link:hover:after {
    width: 100%;
}

@keyframes waPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.wa-pulse {
    animation: waPulse 2s infinite;
}
