/* ===== VINOMTV Main Styles ===== */
:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #111111;
    --accent-orange: #ff6b00;
    --accent-orange-hover: #ff8c00;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-dark-gray: #888888;
    --border-gray: #333333;
    --card-bg: #1a1a1a;
    --card-bg-hover: #222222;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }

p {
    margin-bottom: 15px;
    color: var(--text-gray);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-orange);
}

.btn-secondary:hover {
    background-color: var(--accent-orange);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* ===== Header ===== */
.site-header {
    background-color: var(--primary-dark);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-gray);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
}

.main-navigation a:hover {
    color: var(--accent-orange);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

/* ===== Mobile Menu ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 10000;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #ff6b00;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #0a0a0a;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 30px 20px;
    display: none;
}

.mobile-menu.active {
    left: 0;
}

.close-menu {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.close-menu button {
    background: none;
    border: none;
    font-size: 32px;
    color: #ffffff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.mobile-nav .menu-item-has-children {
    position: relative;
}

.mobile-nav .sub-menu {
    display: none;
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-nav .submenu-open > .sub-menu {
    display: block;
}

.mobile-nav .submenu-toggle {
    float: right;
}

.mobile-menu-footer {
    margin-top: 30px;
    text-align: center;
}

.mobile-trial-btn {
    width: 100%;
    text-align: center;
}

body.mobile-menu-open {
    overflow: hidden;
}

/* ===== Hero Section ===== */
.hero-section {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--accent-orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.price-box {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-currency {
    font-size: 24px;
    color: var(--text-gray);
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-orange);
}

.price-period {
    font-size: 18px;
    color: var(--text-gray);
}

.discount-code {
    background-color: rgba(255, 107, 0, 0.2);
    padding: 10px 20px;
    border-radius: 5px;
    margin: 15px 0;
    font-weight: 600;
}

.guarantee {
    color: #4CAF50;
    margin-top: 15px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ===== Device Carousel ===== */
.device-carousel {
    background-color: var(--secondary-dark);
    padding: 40px 0;
    overflow: hidden;
}

.carousel-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light);
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 50px;
}

.carousel-item {
    flex: 0 0 auto;
    text-align: center;
}

.carousel-item i {
    font-size: 50px;
    color: var(--accent-orange);
}

.carousel-item span {
    display: block;
    margin-top: 10px;
    color: var(--text-light);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ===== Features Section ===== */
.features-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.section-title p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: var(--card-bg-hover);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.feature-icon i {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--accent-orange);
}

.feature-card p {
    color: var(--text-gray);
}

/* ===== Pricing Packages ===== */
.packages-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.package-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-orange);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.package-header {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c00 100%);
    padding: 30px;
    text-align: center;
}

.package-header h3 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.package-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
}

.package-price small {
    font-size: 14px;
    font-weight: 400;
}

.package-body {
    padding: 30px;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    margin-bottom: 10px;
    color: var(--text-gray);
}

.package-features li:before {
    content: "✓";
    color: var(--accent-orange);
    font-weight: 700;
    margin-right: 10px;
}

.package-footer {
    text-align: center;
}

/* ===== How It Works ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
}

.step-item h3 {
    margin-bottom: 15px;
    color: var(--text-light);
}

.step-item p {
    color: var(--text-gray);
}

/* ===== Sports Section ===== */
.sports-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sports-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.sports-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* ===== Device & Channels ===== */
.device-channels-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.device-card, .channels-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
}

.device-card i, .channels-card i {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.device-card h3, .channels-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* ===== Family Friendly ===== */
.family-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.family-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.family-list {
    list-style: none;
    margin: 30px 0;
}

.family-list li {
    margin-bottom: 15px;
    color: var(--text-gray);
}

.family-list i {
    color: var(--accent-orange);
    margin-right: 10px;
}

.family-trust {
    font-weight: 600;
    color: var(--accent-orange);
}

.family-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* ===== Free Tools ===== */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tool-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.tool-card i {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.tool-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 18px;
}

.tool-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.tool-link {
    color: var(--accent-orange);
    text-decoration: none;
    border: 2px solid var(--accent-orange);
    padding: 8px 20px;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.tool-link:hover {
    background-color: var(--accent-orange);
    color: var(--text-light);
}

/* ===== Testimonials ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 600;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 0;
    background-color: var(--secondary-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-weight: 600;
}

.faq-question i {
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: var(--text-gray);
}

/* ===== Page Header ===== */
.page-header {
    padding: 150px 0 60px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="%23ff6b00" stroke-width="2"/><circle cx="50" cy="50" r="15" fill="none" stroke="%23ff6b00" stroke-width="2"/></svg>') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-gray);
    position: relative;
    z-index: 2;
}

/* ===== Single Post Page Styles ===== */
.single-post-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    text-align: center;
    margin-top: 0;
    transition: padding-top 0.3s ease;
}

.single-post-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.post-meta {
    color: var(--text-gray);
    font-size: 14px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.meta-separator {
    margin: 0 10px;
    color: #666;
}

.single-post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.post-main {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
}

.post-featured-image {
    margin-bottom: 30px;
}

.post-featured-image img {
    width: 100%;
    border-radius: 10px;
    height: auto;
}

.entry-content {
    color: var(--text-gray);
    line-height: 1.8;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 15px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.entry-content a {
    color: var(--accent-orange);
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}

.entry-content blockquote {
    background-color: rgba(255, 107, 0, 0.1);
    border-left: 4px solid var(--accent-orange);
    padding: 15px 25px;
    margin: 20px 0;
    font-style: italic;
}

.entry-content ul,
.entry-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.entry-content li {
    margin-bottom: 8px;
}

.post-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-gray);
}

.post-tags i {
    color: var(--accent-orange);
    margin-right: 8px;
}

.post-tags a {
    color: var(--accent-orange);
    text-decoration: none;
    margin-right: 5px;
}

.post-tags a:hover {
    text-decoration: underline;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-gray);
}

.post-navigation a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-navigation a:hover {
    transform: translateX(3px);
}

.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    color: var(--accent-orange);
    font-size: 20px;
    border-left: 3px solid var(--accent-orange);
    padding-left: 12px;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gray);
}

.sidebar-widget li:last-child {
    border-bottom: none;
}

.sidebar-widget a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-widget a:hover {
    color: var(--accent-orange);
}

.recent-posts-list li {
    display: flex;
    flex-direction: column;
}

.recent-posts-list .post-date {
    font-size: 12px;
    color: var(--text-dark-gray);
    margin-top: 5px;
}

.categories-list .count {
    color: var(--accent-orange);
    font-size: 12px;
    margin-left: 5px;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 12px;
    background-color: var(--secondary-dark);
    border: 1px solid var(--border-gray);
    border-radius: 5px;
    color: var(--text-light);
}

.search-form button {
    padding: 12px 20px;
    background-color: var(--accent-orange);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background-color: var(--accent-orange-hover);
}

.page-links {
    margin-top: 30px;
    padding: 15px;
    background-color: var(--secondary-dark);
    border-radius: 5px;
    text-align: center;
}

.page-links-title {
    margin-right: 10px;
    font-weight: bold;
}

.page-links a,
.page-links span {
    display: inline-block;
    padding: 5px 12px;
    margin: 0 3px;
    border-radius: 5px;
    text-decoration: none;
}

.page-links a {
    background-color: var(--card-bg);
    color: var(--text-light);
}

.page-links a:hover {
    background-color: var(--accent-orange);
}

.page-links span {
    background-color: var(--accent-orange);
    color: white;
}

/* ===== Pricing Page Styles ===== */
.pricing-grid {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--accent-orange);
    position: relative;
    overflow: visible;
}

.pricing-card .featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: white;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    color: white;
}

.pricing-card .price {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-orange);
    text-align: center;
    margin-bottom: 10px;
}

.pricing-card .price small {
    font-size: 14px;
    color: #999;
    font-weight: normal;
}

.pricing-card .period {
    text-align: center;
    color: #999;
    margin-bottom: 20px;
    font-size: 14px;
}

.pricing-card .connections {
    text-align: center;
    color: var(--accent-orange);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
    background: rgba(255, 107, 0, 0.1);
    padding: 8px;
    border-radius: 30px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
}

.pricing-card li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card li:before {
    content: "✓";
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 16px;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.guarantee-item {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 8px;
}

.guarantee-item p {
    margin: 0;
    color: white;
    font-size: 14px;
    line-height: 1.5;
}

.discount-badge {
    display: inline-block;
    margin: 20px 0;
    font-size: 18px;
    background: var(--accent-orange);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
}

.period-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.period-tab {
    padding: 12px 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-gray);
    color: var(--text-gray);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.period-tab:hover,
.period-tab.active {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
}

.period-section {
    display: none;
}

.period-section.active {
    display: block;
}

.period-title {
    font-size: 28px;
    margin: 30px 0 20px;
    color: white;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.period-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-orange);
}

/* ===== Channel List Page Styles ===== */
.channel-page {
    background-color: var(--bg-dark);
    width: 100%;
    overflow-x: hidden;
}

.channels-section {
    background-color: var(--bg-dark);
    padding: 60px 0;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.channel-list {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--border-gray);
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.4;
    word-break: break-word;
}

.channel-icon {
    color: var(--accent-orange);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.channel-icon:before {
    content: "✓";
    font-weight: bold;
}

.download-section {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c00 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.download-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.download-text {
    flex: 1;
}

.download-image {
    flex: 1;
    text-align: center;
}

.download-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.download-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.download-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-light);
    opacity: 0.9;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text-light);
    color: var(--accent-orange);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: #f5f5f5;
}

/* ===== Free Trial Page Styles ===== */
.trial-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.trial-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
    width: 480px;
    max-width: 90%;
}

.trial-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    z-index: 2;
}

.trial-card:hover {
    transform: translateY(-5px);
}

.trial-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.trial-card .featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-orange);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.trial-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.trial-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 30px;
}

.trial-price small {
    font-size: 16px;
    color: var(--text-gray);
    display: block;
    margin-top: 5px;
}

.trial-features {
    list-style: none;
    margin-bottom: 30px;
}

.trial-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trial-features li i {
    color: var(--accent-orange);
    font-size: 18px;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    text-align: center;
    margin-top: 30px;
}

.device-item {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.device-item:hover {
    transform: translateY(-5px);
}

.device-item i {
    font-size: 32px;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

/* ===== About Page Styles ===== */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h2 {
    font-size: 48px;
    color: var(--accent-orange);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--accent-orange);
}

.cta-section {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c00 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-section .btn {
    background-color: white;
    color: var(--accent-orange);
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* ===== Support Page Styles ===== */
.support-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.support-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.support-card i {
    font-size: 48px;
    margin-bottom: 20px;
}

.support-card .chat-icon {
    color: var(--accent-orange);
}

.support-card .whatsapp-icon {
    color: #25D366;
}

.support-card .email-icon {
    color: var(--accent-orange);
}

.support-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.support-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.support-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-btn.chat {
    background-color: var(--accent-orange);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.support-btn.whatsapp {
    background-color: #25D366;
    color: white;
}

.support-btn.email {
    background-color: var(--accent-orange);
    color: white;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* ===== Reseller Page Styles ===== */
.reseller-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.benefit-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background-color: var(--card-bg-hover);
}

.benefit-card .benefit-icon {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.credit-calculator {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 40px;
    margin-top: 60px;
}

.credit-table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
}

.credit-table th,
.credit-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-gray);
}

.credit-table th {
    background-color: var(--accent-orange);
    color: var(--text-light);
}

.credit-table tr:hover {
    background-color: var(--card-bg-hover);
}

/* ===== Guide Page Styles ===== */
.guide-accordion {
    background-color: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
}

.guide-accordion-header {
    padding: 20px;
    background-color: var(--card-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.guide-accordion-header:hover {
    background-color: var(--card-bg-hover);
}

.guide-accordion-header.active {
    border-bottom-color: var(--accent-orange);
}

.guide-accordion-header span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

.guide-accordion-header i {
    color: var(--accent-orange);
    transition: all 0.3s ease;
}

.guide-accordion-header.active i {
    transform: rotate(180deg);
}

.guide-accordion-content {
    padding: 20px;
    display: none;
    background-color: var(--secondary-dark);
    border-top: 1px solid var(--border-gray);
}

.guide-accordion-content.show {
    display: block;
}

.guide-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border: 2px solid var(--border-gray);
    background: transparent;
    color: var(--text-gray);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
}

.tab-content {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
}

.download-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.download-btn {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-gray);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
    border-color: var(--accent-orange);
}

.guide-tip {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255, 107, 0, 0.1);
    border-left: 3px solid var(--accent-orange);
    border-radius: 5px;
    color: var(--text-gray);
    font-size: 14px;
}

/* ===== Sitemap Page Styles ===== */
.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.sitemap-container h1 {
    font-size: 36px;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

.sitemap-container h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #fff;
}

.sitemap-container ul {
    columns: 3;
    list-style: none;
    padding: 0;
}

.sitemap-container li {
    margin-bottom: 10px;
}

.sitemap-container a {
    color: var(--accent-orange);
    text-decoration: none;
}

.sitemap-container a:hover {
    text-decoration: underline;
}

/* ===== Report Page Styles ===== */
.report-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.report-container h1 {
    font-size: 36px;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

.report-container h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #fff;
}

.report-contact,
.report-instructions,
.report-form {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.report-contact a {
    color: var(--accent-orange);
    text-decoration: none;
}

.report-contact a:hover {
    text-decoration: underline;
}

/* ===== Footer Styles ===== */
.site-footer {
    background-color: #0a0a0a;
    padding: 60px 0 20px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about p {
    color: #ccc;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-links h4 {
    color: #ff6b00;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b00;
}

.footer-links i {
    margin-right: 10px;
    color: #ff6b00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* ===== Live Chat ===== */
.live-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-button {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.chat-button i {
    font-size: 24px;
}

/* ===== Responsive Styles ===== */

/* Tablets (768px - 992px) */
@media (max-width: 992px) {
    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    
    .hero-wrapper,
    .sports-wrapper,
    .family-wrapper,
    .about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image,
    .sports-image,
    .family-image {
        order: -1;
        max-width: 80%;
        margin: 0 auto;
    }
    
    .features-grid,
    .packages-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-options {
        gap: 20px;
    }
    
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .download-content {
        flex-direction: column;
        text-align: center;
    }
    
    .download-text {
        order: 2;
    }
    
    .download-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .single-post-layout {
        gap: 30px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
}

/* Mobile (576px - 768px) */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-navigation ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid var(--border-gray);
    }
    
    .main-navigation.active ul {
        display: flex;
    }
    
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    
    .hero-title {
        font-size: 32px;
    }
    
    .price-box {
        padding: 20px;
    }
    
    .price-amount {
        font-size: 42px;
    }
    
    .features-grid,
    .packages-grid,
    .steps-grid,
    .testimonials-grid,
    .tools-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .device-channels-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-wrapper {
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 20px;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-header {
        padding: 120px 0 50px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .pricing-card {
        padding: 25px 15px !important;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .period-tabs {
        flex-wrap: wrap;
    }
    
    .period-tab {
        width: calc(50% - 5px);
    }
    
    .trial-options {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trial-card.featured {
        transform: none;
        order: -1;
    }
    
    .trial-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .trial-card {
        padding: 30px;
    }
    
    .trial-price {
        font-size: 36px;
    }
    
    .support-options {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .support-card {
        padding: 35px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .download-title {
        font-size: 28px;
    }
    
    .download-description {
        font-size: 16px;
    }
    
    .download-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .sitemap-container ul {
        columns: 2;
    }
    
    .single-post-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .single-post-header h1 {
        font-size: 32px;
    }
    
    .post-main {
        padding: 25px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

/* Small Mobile (under 576px) */
@media (max-width: 576px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .price-currency,
    .price-period {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .feature-card,
    .package-card,
    .testimonial-card,
    .tool-card {
        padding: 25px 20px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .live-chat {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-button span {
        display: none;
    }
    
    .chat-button {
        padding: 15px;
        border-radius: 50%;
    }
    
    .chat-button:after {
        content: "💬";
        font-size: 20px;
    }
    
    .hero-image,
    .sports-image,
    .family-image {
        max-width: 100%;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item h2 {
        font-size: 36px !important;
    }
    
    .support-card {
        padding: 25px;
    }
    
    .support-card i {
        font-size: 40px;
    }
    
    .support-card h3 {
        font-size: 22px;
    }
    
    .support-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .channels-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .channel-item {
        font-size: 13px;
    }
    
    .download-title {
        font-size: 24px;
    }
    
    .download-description {
        font-size: 14px;
    }
    
    .download-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .sitemap-container ul {
        columns: 1;
    }
    
    .report-container {
        padding: 30px 15px;
    }
    
    .report-container h1 {
        font-size: 28px;
    }
    
    .report-container h2 {
        font-size: 20px;
    }
    
    .report-contact,
    .report-instructions,
    .report-form {
        padding: 20px;
    }
    
    .single-post-header h1 {
        font-size: 26px;
    }
    
    .post-meta {
        font-size: 12px;
    }
    
    .meta-separator {
        margin: 0 5px;
    }
    
    .post-main {
        padding: 20px;
    }
    
    .entry-content {
        font-size: 14px;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-form button {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .post-sidebar,
    .post-navigation,
    .live-chat,
    .comments-section,
    .footer-grid,
    .live-chat {
        display: none;
    }
    
    .post-main {
        padding: 0;
        background: none;
    }
    
    .entry-content {
        color: black;
    }
    
    .entry-content a {
        color: black;
        text-decoration: underline;
    }
}