:root {
    --bg-main: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1f1f1f;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-dark: #333333;
    --netflix-red: #e50914;
    --netflix-red-hover: #f40612;
    --green: #25D366; 
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-soft: 0 5px 15px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px rgba(229, 9, 20, 0.4);
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, .logo-text strong {
    font-family: var(--font-heading);
    color: var(--text-primary);
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}
ul {
    list-style: none;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.text-red { color: var(--netflix-red); }
.text-green { color: var(--green); }
.center { text-align: center; }
.section-header {
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-header span {
    color: var(--netflix-red);
}
.section-header p {
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-size: 1.1rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    letter-spacing: 0.5px;
}
.btn-red {
    background-color: var(--netflix-red);
    color: #fff;
    box-shadow: 0 4px 10px rgba(229, 9, 20, 0.3);
}
.btn-red:hover {
    background-color: var(--netflix-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.btn-outline {
    background-color: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
}
.btn-outline:hover {
    border-color: #fff;
    background-color: rgba(255,255,255,0.1);
}
.btn-outline-red {
    background-color: transparent;
    border: 2px solid var(--netflix-red);
    color: #fff;
}
.btn-outline-red:hover {
    background-color: var(--netflix-red);
    box-shadow: var(--shadow-glow);
}
.btn-white {
    background-color: #fff;
    color: var(--text-dark);
}
.btn-white:hover {
    background-color: #e6e6e6;
    transform: translateY(-2px);
}
.btn-full {
    width: 100%;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    overflow-x: hidden;
}
.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.new-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-icon-layer {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fire-back {
    font-size: 2.5rem;
    color: #ff6b00;
    text-shadow: 0 0 15px rgba(255,107,0,0.6);
    background: -webkit-linear-gradient(top, #ffeb3b, #ff5722);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.remote-front {
    position: absolute;
    font-size: 1.5rem;
    color: #111;
    background: #444;
    border-radius: 4px;
    padding: 1px 3px;
    bottom: -5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.8);
}
.brand-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}
.brand-ip-text {
    font-family: var(--font-heading);
    color: #a02842;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.brand-az-text {
    font-family: var(--font-heading);
    color: #f17c24;
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--netflix-red);
    transition: var(--transition-smooth);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.contact-header {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    color: var(--text-secondary);
    align-items: flex-end;
}
.contact-header .phone-number {
    color: #fff;
    font-weight: 600;
}
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: url('https://w.forfun.com/fetch/51/51ff2c68c3ef946cc379237f8f6d7ab7.jpeg') no-repeat center center/cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0a0a0a 20%, rgba(10,10,10,0.8) 50%, rgba(10,10,10,0.3) 100%);
    z-index: 1;
}
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.hero-content {
    flex: 1;
    max-width: 600px;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.1);
    border-left: 3px solid var(--netflix-red);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-radius: 0 4px 4px 0;
    animation: fadeIn 1s ease forwards;
}
.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease forwards;
}
.hero h1 span {
    color: var(--netflix-red);
}
.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    animation: slideUp 1s ease forwards;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: slideUp 1.2s ease forwards;
}
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1000px;
    animation: float 6s ease-in-out infinite;
}
.tv-mockup {
    width: 100%;
    max-width: 500px;
    transform: rotateY(-15deg) rotateX(5deg);
    transform-style: preserve-3d;
}
.tv-screen {
    background: #000;
    border: 10px solid #222;
    border-radius: 10px;
    padding: 15px;
    height: 300px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 20px 50px rgba(0,0,0,0.6);
}
.netflix-logo {
    color: var(--netflix-red);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
}
.tv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.movie-box {
    background: var(--bg-tertiary);
    height: 80px;
    border-radius: 4px;
    animation: pulse 3s infinite alternate;
}
.movie-box:nth-child(2) { animation-delay: 0.5s; background: linear-gradient(45deg, #e50914, #000); }
.movie-box:nth-child(4) { animation-delay: 1s; background: linear-gradient(45deg, #111, #333); }
.movie-box:nth-child(5) { animation-delay: 1.5s; }
.tv-stand {
    width: 120px;
    height: 15px;
    background: #222;
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
    position: relative;
}
.tv-stand::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 15px;
    background: #111;
    border-radius: 10px;
}
.hero-contact-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(20,20,20,0.95);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
    z-index: 3;
}
.bar-container {
    display: flex;
    justify-content: flex-start;
}
.bar-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.bar-info i {
    font-size: 2.5rem;
}
.bar-info h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
}
.bar-info h2 span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}
.bar-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.features {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.feature-item {
    background: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}
.feature-item:hover {
    transform: translateY(-5px);
    background: #252525;
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: var(--shadow-soft);
}
.feature-item i {
    font-size: 1.5rem;
}
.devices-ribbon {
    background: #000;
    padding: 2rem 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.gap-4 { gap: 4rem; }
.device-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-fast);
}
.device-icon:hover {
    color: #fff;
    transform: scale(1.05);
}
.device-icon i {
    font-size: 1.5rem;
    color: var(--netflix-red);
}
.pricing {
    padding: 5rem 0;
    background: var(--bg-main);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    align-items: center;
}
.price-card {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid #333;
}
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border-color: #555;
    z-index: 2;
}
.price-card.special { border-left: 3px solid #fff; }
.price-card.popular { border-top: 4px solid var(--netflix-red); transform: scale(1.05); box-shadow: 0 0 20px rgba(0,0,0,0.5); z-index: 1;}
.price-card.popular:hover { transform: scale(1.05) translateY(-10px); }
.price-card.premium { border: 1px solid var(--netflix-red); background: linear-gradient(135deg, #1f0103, #141414); }
.popular-badge, .offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--netflix-red);
    color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}
.offer-badge { background: #ffaa00; color: #000; }
.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}
.card-header h3 {
    font-size: 1.2rem;
    color: var(--text-secondary);
}
.card-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 10px 0;
}
.card-body ul {
    margin-bottom: 2rem;
}
.card-body li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
}
.card-body li i {
    color: var(--netflix-red);
    font-size: 0.85rem;
    margin-top: 4px;
}
.trial-banner {
    background: linear-gradient(90deg, #111, var(--bg-tertiary));
    padding: 4rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.trial-text h2 { margin-bottom: 0.5rem; }
.trial-text p { color: var(--text-secondary); }
.trial-form {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
}
.trial-form input {
    flex: 1;
    padding: 12px 15px;
    background: transparent;
    border: 1px solid #555;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
}
.trial-form input:focus {
    outline: none;
    border-color: var(--text-secondary);
}
.blog {
    padding: 5rem 0;
    background: var(--bg-secondary);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: var(--bg-tertiary);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}
.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.blog-card:hover .blog-image img {
    transform: scale(1.1);
}
.blog-content {
    padding: 1.5rem;
}
.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.blog-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.read-more {
    color: var(--netflix-red);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.read-more:hover { color: #fff; }
footer {
    background: #000;
    padding: 4rem 0 2rem;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}
.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 300px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-links a {
    color: var(--text-secondary);
}
.footer-links a:hover {
    color: #fff;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}
.footer-social a:hover {
    background: var(--netflix-red);
    transform: translateY(-3px);
}
.fixed-wa {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--green);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-fast);
}
.fixed-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}
@keyframes pulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}
.firestick-section {
    background: #000;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #222;
}
.fs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}
.fs-info h2 {
    font-size: 4.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 800;
}
.fs-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--netflix-red);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.blog-filter-input,
.blog-filter-select {
    width: 100%;
    padding: 12px 15px 12px 40px;
    background: var(--bg-secondary);
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
}
.blog-filter-select {
    cursor: pointer;
    background-image: none;
}
.blog-filter-select option {
    background: var(--bg-secondary);
    color: #fff;
    padding: 10px;
}
.blog-filter-input:focus,
.blog-filter-select:focus,
.blog-filter-select:hover {
    border-color: var(--netflix-red);
    box-shadow: 0 0 8px rgba(229, 9, 20, 0.4);
}
.blog-category-wrapper .fa-folder {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--netflix-red);
    z-index: 2;
    pointer-events: none;
}
.blog-category-wrapper .fa-chevron-down {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--netflix-red);
    pointer-events: none;
    z-index: 2;
}
.fs-line {
    width: 60px;
    height: 2px;
    background: var(--netflix-red);
}
.fs-btn {
    background: var(--netflix-red);
    color: #fff;
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}
.fs-btn:hover {
    background: var(--netflix-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.6);
}
.fs-dot {
    width: 10px;
    height: 10px;
    background: #aaffaa;
    border-radius: 50%;
    animation: flash 2s infinite;
}
.fs-btn .fs-dot:last-child {
    background: #55ff55;
    animation-delay: 1s;
}
@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.fs-image-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.fs-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: inset 0 0 80px rgba(229, 9, 20, 0.1);
    z-index: -1;
}
.fs-img {
    max-width: 120%;
    height: auto;
    max-height: 550px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8));
    animation: float 6s ease-in-out infinite;
    transform: rotate(-10deg) scale(1.1);
}
.fs-stats {
    max-width: 320px;
}
.fs-desc {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}
.fs-stat-item {
    margin-bottom: 1.5rem;
}
.fs-stat-item h3 {
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
    line-height: 1;
}
.fs-orange-text {
    color: var(--netflix-red);
    font-weight: 600;
    font-size: 1.1rem;
}
.fs-stars {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--netflix-red);
    display: flex;
    gap: 5px;
}
.pre-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}
.device-icon.pre-animate {
    transform: translateY(20px) scale(0.9);
}
.device-icon.animate-on-scroll {
    transform: translateY(0) scale(1);
}
.feature-item.pre-animate {
    transform: translateY(40px);
}
.feature-item.animate-on-scroll {
    transform: translateY(0);
}
.blog-filter-bar {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    background: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid #333;
}
.blog-filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.blog-search-wrapper,
.blog-category-wrapper {
    flex: 1;
    position: relative;
}
.blog-search-wrapper { min-width: 250px; }
.blog-category-wrapper { min-width: 200px; max-width: 300px; }
.blog-filter-icon,
.blog-category-wrapper .fa-folder {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    z-index: 2;
    transition: color 0.3s;
}
.blog-category-wrapper .fa-chevron-down {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    z-index: 2;
    transition: color 0.3s;
}
.blog-filter-input,
.blog-filter-select {
    width: 100%;
    padding: 12px 15px 12px 40px;
    background: var(--bg-secondary);
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
}
.blog-filter-select {
    cursor: pointer;
}
.blog-filter-select option {
    background: var(--bg-secondary);
    color: #fff;
    padding: 10px;
}
.blog-filter-input:focus,
.blog-filter-select:focus,
.blog-filter-select:hover {
    border-color: var(--netflix-red);
    box-shadow: 0 0 8px rgba(229, 9, 20, 0.4);
}
.blog-category-wrapper:hover .fa-folder,
.blog-category-wrapper:hover .fa-chevron-down,
.blog-filter-select:focus ~ .fa-folder,
.blog-filter-select:focus ~ .fa-chevron-down {
    color: var(--netflix-red);
}
.sports-section {
    background: #000;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #222;
}
.sports-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}
.sports-image-wrap {
    flex: 1;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.sports-arc {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}
.sports-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
}
.sports-badge {
    position: relative;
    z-index: 2;
    background: #444;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    border: 1px solid #555;
}
.sports-info {
    flex: 1;
}
.sports-info h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 1rem;
}
.sports-channels-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.sports-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}
.sports-desc span {
    color: var(--netflix-red);
    font-weight: 600;
}
.sports-price-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.sports-price {
    font-size: 3rem;
    font-weight: 800;
}
.sports-buy-btn {
    padding: 12px 35px;
    font-size: 1.2rem;
    border-radius: 30px;
}
.btn-dot-green {
    background: #25d366;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
}
.sports-trial-btn {
    background: #e67e22; 
    color: #fff;
    padding: 12px 25px 12px 30px;
    font-size: 1.4rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}
.sports-trial-btn:hover {
    background: #d35400;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}
.whatsapp-icon-bg {
    background: #25d366;
    color: #fff;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
@media (max-width: 900px) {
    .sports-container {
        flex-direction: column-reverse; 
        flex-direction: column;
        text-align: center;
    }
    .sports-desc {
        max-width: 100%;
        margin: 0 auto 2.5rem;
    }
    .sports-price-row {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    .sports-info h2 { font-size: 2.8rem; }
    .sports-channels-title { font-size: 1.8rem; }
}
@media (max-width: 768px) {
    .sports-info h2 { font-size: 2.2rem; }
    .sports-arc { width: 400px; height: 400px; left: -50px; }
}
@media (max-width: 1024px) {
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular:hover { transform: translateY(-10px); }
    .gap-4 { gap: 2rem; }
}
@media (max-width: 900px) {
    .fs-container { flex-direction: column; text-align: center; }
    .fs-info h2 { font-size: 3.5rem; }
    .fs-subtitle { justify-content: center; }
    .fs-desc { margin: 0 auto 2rem; }
    .fs-stats { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
    .fs-glow { width: 300px; height: 300px; }
    .hero { min-height: auto; padding: 120px 0 80px; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 3rem; }
    .hero-buttons { justify-content: center; }
    .hero-visual { display: none; }
    .hero-contact-bar { position: relative; margin-top: 3rem; background: transparent; }
    .bar-info { justify-content: center; }
}
@media (max-width: 768px) {
    .container { width: 95%; max-width: 100%; }
    .nav-container { width: 100%; max-width: 100%; position: relative; }
    .navbar { overflow-x: visible; }
    .nav-links { display: none; }
    .nav-links.active { 
        display: flex !important; 
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 1.5rem;
        gap: 1.5rem;
        align-items: center;
        border-bottom: 1px solid #333;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        z-index: 999;
    }
    .nav-links.active a {
        font-size: 1rem;
        padding: 0.6rem 0;
        width: 100%;
        text-align: center;
    }
    .contact-header, .nav-actions .btn-red { display: none; }
    .nav-actions { gap: 0; flex-shrink: 0; }
    .mobile-menu-btn { display: block; padding-left: 10px; }
    .new-brand-logo { transform: scale(0.75); transform-origin: left center; }
    .hero h1 { font-size: 2.2rem; }
    .fs-info h2 { font-size: 2.5rem; }
    .fs-img { max-width: 80%; max-height: 350px; }
    .trial-form { flex-direction: column; }
    .hero-buttons .btn { padding: 10px 20px; font-size: 0.9rem; }
    .section-header h2 { font-size: 1.8rem; }
    .footer-container { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
    .container { width: 95%; }
    .new-brand-logo { transform: scale(0.65); }
    .hero h1 { font-size: 1.8rem; }
    .fs-info h2 { font-size: 2.2rem; }
    .fs-img { max-width: 70%; max-height: 280px; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 1rem; }
    .hero-buttons .btn { width: 100%; padding: 10px 18px; font-size: 0.85rem; }
}

/* Legal Pages Styling */
.legal-page {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}
.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(229, 9, 20, 0.3);
}
.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--netflix-red) 0%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.legal-date {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-style: italic;
}
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
}
.legal-section {
    margin-bottom: 3rem;
}
.legal-section:last-child {
    margin-bottom: 0;
}
.legal-section h2 {
    color: var(--netflix-red);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(229, 9, 20, 0.2);
}
.legal-section p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}
.legal-section ul li {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}
.legal-section ul li::before {
    content: '▶';
    color: var(--netflix-red);
    position: absolute;
    left: 0;
    font-size: 0.7rem;
}
.legal-section ul li strong {
    color: #fff;
    font-weight: 600;
}
.legal-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2.2rem;
    }
    .legal-content {
        padding: 2rem;
    }
    .legal-section h2 {
        font-size: 1.5rem;
    }
    .legal-section p,
    .legal-section ul li {
        font-size: 0.95rem;
    }
}
@media (max-width: 480px) {
    .legal-page {
        padding: 100px 0 60px;
    }
    .legal-header h1 {
        font-size: 1.8rem;
    }
    .legal-content {
        padding: 1.5rem;
    }
    .legal-section h2 {
        font-size: 1.3rem;
    }
    .legal-section p,
    .legal-section ul li {
        font-size: 0.9rem;
    }
    .legal-section ul li {
        padding-left: 1.5rem;
    }
}