.hero-section-tv {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://i.imgur.com/placeholder_tv_streaming.jpg') no-repeat center center/cover; /* Placeholder image */
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.hero-content-tv {
    position: relative;
    z-index: 2;
}

.hero-title-tv {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-subtitle-tv {
    font-size: 1.5rem;
    font-weight: 400;
}

.content-section-tv {
    padding: 80px 0;
}

.content-grid-tv {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-card-tv {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.content-card-tv:hover {
    transform: translateY(-10px);
    border-color: #84cc16;
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.2);
}

.content-card-tv img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px; /* Slightly rounded corners for image */
    margin-bottom: 15px;
}

.content-card-tv h2 {
    font-family: 'Orbitron', sans-serif; /* Ensure Orbitron for titles */
    font-size: 1.8rem;
    color: #e0e0e0; /* Light text color */
    margin: 0 0 10px;
}

.content-card-tv p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary); /* Secondary text color */
    margin: 0 0 20px;
}

.btn-tv {
    display: inline-block;
    background: var(--gradient-primary);
    color: #0a0a0a;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-tv:hover {
    background: #a3e635;
    transform: scale(1.05);
}

.plans-section .section-header h2 {
    font-family: 'Orbitron', sans-serif; /* Ensure Orbitron for titles */
}
