<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ======================= */
/* ARTICLE MASTER STYLING */
/* ======================= */

.iptv-article {
    max-width: 800px;
    margin: 100px auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(108, 92, 231, 0.3);
    position: relative;
    overflow: hidden;
}

.iptv-article:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(108, 92, 231, 0.1) 0%,
        transparent 70%
    );
    z-index: -1;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Article Header */
.article-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.article-featured-image {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.5s ease;
}

.article-featured-image:hover {
    transform: perspective(1000px) rotateX(0);
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-featured-image:hover img {
    transform: scale(1.05);
}

.article-title {
    font-size: 3.5rem;
    margin: 30px 0;
    background: linear-gradient(90deg, #6c5ce7, #ff4757);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

/* Article Meta */
.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.meta-category {
    color: #0f0;
    font-weight: bold;
}

.meta-reading-time {
    color: #ff4757;
}

/* Article Content */
.article-content {
    font-size: 1.2rem;
    line-height: 1.9;
    position: relative;
}

.article-content p {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 20px;

}

.article-content p:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #6c5ce7, #ff4757);
}

.article-content h2 {
    font-size: 2.5rem;
    margin: 60px 0 30px;
    color: #6c5ce7;
    position: relative;
    padding-left: 20px;
}

.article-content h2:before {
    content: "//";
    position: absolute;
    left: -15px;
    color: #ff4757;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.article-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.6);
}

/* Drop Cap */
.article-content &gt; p:first-of-type:first-letter {
    float: left;
    font-size: 6rem;
    line-height: 0.8;
    margin: 5px 15px 0 0;
    color: #6c5ce7;
    font-weight: bold;
    text-shadow: 3px 3px 0 rgba(255, 71, 87, 0.3);
}

/* Premium Box Styling */
.premium-box {
    background: #242423
    border: 1px solid #ffd700;
    border-left: 4px solid #ffd700;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.premium-box h3 {
    color: #d4af37; /* Gold color */
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-box h3 i { /* Icon style (if using Font Awesome) */
    font-size: 1.2em;
}

/* Article Footer */
.article-footer {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(108, 92, 231, 0.3);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-tags a {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-tags a:hover {
    background: #6c5ce7;
    transform: translateY(-3px);
}

/* Floating Home Button */
.home-button {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: #6c5ce7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.home-button:hover {
    background: #ff4757;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.6);
}

/* ======================= */
/* RESPONSIVE DESIGN */
/* ======================= */
@media (max-width: 992px) {
    .iptv-article {
        margin: 80px auto;
        padding: 30px;
    }
    
    .article-title {
        font-size: 2.8rem;
    }
    
    .article-featured-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .iptv-article {
        margin: 60px 20px;
        padding: 20px;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-featured-image {
        height: 300px;
    }
    
    .home-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

#go-up-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #0073aa;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 99;
}

#go-up-button.visible {
  opacity: 1;
}

.article-tags {
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
}

.article-tags a {
    display: inline-block;
    margin-right: 10px;
    padding: 3px 10px;
    background: #f5f5f5;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
}

.article-tags a:hover {
    background: #e0e0e0;
}


</pre></body></html>