:root {
    --primary-blue: #3498db;
    --secondary-blue: #2980b9;
    --bg-dark: #000000;
    --bg-light: #ffffff;
    --bg-gray: #f4f7f9;
    --text-dark: #2c3e50;
    --text-gray: #7f8c8d;
    --success-green: #2ecc71;
    --telegram-blue: #0088cc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container.full-width {
    max-width: 100%;
    padding: 0 10px;
}

section {
    padding: 60px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--text-dark);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-blue {
    background-color: var(--primary-blue);
    color: #fff;
}

.btn-main {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 15px 40px;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-green {
    background-color: var(--success-green);
    color: #fff;
}

.btn-tg {
    background-color: var(--telegram-blue);
    color: #fff;
}

.btn-full {
    width: 100%;
    border-radius: 5px;
    font-size: 1.2rem;
    margin-top: 20px;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Header */
header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.logo .accent {
    color: #e74c3c; /* Red color */
}

.header-btns {
    display: flex;
    gap: 15px;
}

/* Hero */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    color: var(--primary-blue);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Networks */
.networks-section {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.networks-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.networks-swiper img {
    max-height: 50px;
    opacity: 0.7;
    object-fit: contain;
}

/* Sports Gallery */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    align-items: center;
}

.sports-grid div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.sports-grid img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}

/* Sports CTA Section */
.sports-cta {
    background: #fff;
    text-align: center;
    padding: 80px 0 40px;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

/* Sports Banners */
.sports-banners-section {
    background: #000;
    padding: 60px 0;
}

.sports-banners-swiper .swiper-slide {
    aspect-ratio: 2/3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.sports-banners-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Process Section */
.process-section {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.process-step {
    padding: 20px;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    position: relative;
    color: var(--primary-blue);
}

.process-icon i {
    width: 32px;
    height: 32px;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-blue);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #fff;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Why Choose Us */
.why-choose-us {
    background: var(--bg-gray);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h6 {
    color: var(--primary-blue);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    margin-bottom: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    color: var(--primary-blue);
    width: 48px;
    height: 48px;
    margin-bottom: 25px;
}

.benefit-card h4 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item i {
    color: var(--primary-blue);
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.feature-item h3 { margin-bottom: 15px; }

/* Films */
.films-section {
    background: #000;
}

.films-swiper .swiper-slide {
    aspect-ratio: 2/3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.films-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats */
.stats {
    background: #fff;
    border-top: 1px solid #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item i {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Cable Replacement */
.cable-replacement {
    background: #fff;
    padding: 100px 0;
}

.subtitle-text {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
}

.replacement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.replacement-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: var(--bg-gray);
    transition: transform 0.3s ease;
}

.replacement-item:hover {
    transform: translateY(-5px);
}

.replacement-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    color: var(--primary-blue);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.replacement-item h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.replacement-item p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .replacement-grid {
        grid-template-columns: 1fr;
    }
}

/* Devices */
.devices-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.devices-header h2 {
    margin-bottom: 20px;
}

.devices-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.device-grid div {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    transition: transform 0.3s ease;
}

.device-grid div:hover {
    transform: scale(1.05);
}

.device-grid img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .device-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .device-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .device-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .device-grid div {
        height: 80px;
        padding: 15px;
    }
}

/* Pricing */
.pricing {
    background-color: var(--bg-gray);
    padding: 100px 0;
}

.pricing-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.pricing-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.promo-badge {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.pricing-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.device-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.tab {
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    background: #ddd;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 600;
}

.tab.active {
    background: var(--primary-blue);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.pricing-card {
    background: #fff;
    color: #333;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.highlight {
    border: 3px solid var(--primary-blue);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.highlight:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-card.highlight::before {
    content: 'BEST-SELLER';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h4 { color: var(--text-gray); margin-bottom: 5px; font-size: 1.1rem; }

.pack-name {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.save-tag {
    background: #e74c3c;
    color: #fff;
    display: inline-block;
    padding: 2px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.activation {
    margin-top: 15px;
    font-weight: 700;
    color: #e74c3c;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.pricing-card ul li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
}

.pricing-card ul li i { 
    color: var(--primary-blue); 
    width: 18px; 
    height: 18px;
}
.price-container {
    margin: 15px 0;
}

.old-price { 
    text-decoration: line-through; 
    color: #999; 
    font-size: 1.2rem;
    display: block;
    margin-bottom: -5px;
}

.price { font-size: 2.5rem; color: var(--primary-blue); margin: 0; }

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card ul li i { color: var(--primary-blue); width: 16px; }

/* Setup Banner */
.setup-banner {
    background: #5dade2;
    padding: 20px 0;
}

.setup-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.setup-content h2 { margin: 0; color: #fff; font-size: 1.5rem; }

/* Reviews */
.reviews {
    background: var(--bg-gray);
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.review-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-blue);
    margin: 0 auto 15px;
    overflow: hidden;
}

.review-img img { width: 100%; height: 100%; object-fit: cover; }

.stars { color: #f1c40f; margin-bottom: 10px; }

.review-card p { font-style: italic; font-size: 0.9rem; color: var(--text-gray); }

/* Chat Reviews */
.chat-swiper .swiper-slide {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.chat-swiper img { width: 100%; display: block; }

/* SEO Content Section */
.seo-content-section {
    background: #fff;
    padding: 80px 0;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-gray);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.content-box h2 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 2.2rem;
    color: var(--text-dark);
}

.content-box p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .content-box {
        padding: 30px;
    }
    .content-box h2 {
        font-size: 1.8rem;
    }
}

/* FAQ */
.faq {
    background: var(--bg-gray);
}

.faq-accordion {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

@media (max-width: 992px) {
    .faq-accordion {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: #fff;
    margin-bottom: 0; /* Gap handled by grid */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s ease;
}

.faq-question span {
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fdfdfd;
}

.faq-answer p {
    padding: 20px 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Active State for FAQ */
.faq-item.active .faq-question {
    background: #f8fbff;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Footer */
footer {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.footer-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-btns .btn { display: flex; align-items: center; gap: 10px; }

/* Informational Pages Styles */
.info-page {
    padding: 100px 0;
    background: #fff;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.info-content h2 {
    text-align: left;
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.info-content p {
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

.info-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-gray);
}

.info-content li {
    margin-bottom: 10px;
}

.footer-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .header-btns { display: none; }
    .hero-content h1 { font-size: 2.5rem; }
    .sports-grid { grid-template-columns: repeat(3, 1fr); }
    .setup-content { flex-direction: column; gap: 20px; text-align: center; }
}
