/* Magnolia Light - Widgets CSS */

/* Service Box Widget */
.iptv-service-box {
    background: rgba(255, 255, 255, 0.6);
    /* Semi-transparent */
    backdrop-filter: blur(5px);
    /* Blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    /* Subtle border */
    border-radius: 20px;
    padding: 2rem 0 0.5rem 0;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.iptv-service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    /* Softer shadow */
}

.iptv-service-box-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 0.4;
    color: var(--text-main);
}

.iptv-service-box-content h6 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--text-main);
}

.iptv-service-box-content p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Features Widget */
.iptv-features ul {
    list-style: none;
    padding: 0;
}

.iptv-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-main);
}

.iptv-features li:last-child {
    border-bottom: none;
}

.iptv-features li:before {
    content: "\f00c";
    /* FontAwesome check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

/* Paralax/Why Choose Widget */
.iptv-paralax {
    padding: 0px;
}

.iptv-paralax-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    text-align: center;
}

.iptv-paralax h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: .5;
}

.iptv-paralax p {
    line-height: 1.2rem;
}

.iptv-paralax small {
    font-size: .8rem;
    color: var(--text-main);

}