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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #300;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #dc2626;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #dc2626;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


.btn-cta {
    background: #dc2626;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    cursor: pointer;
}

.btn-cta:hover {
    background: #b91c1c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-badge {
    background: #dc2626;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    align-self: flex-start;
    order: -1;
}

.hero::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 80vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 500;
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: left;
}

.highlight {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
    text-align: left;
    max-width: 100%;
}

.pricing-text {
    margin: 1.5rem 0;
    text-align: left;
    align-self: flex-start;
}

.price-display {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.price-display .currency {
    font-size: 1.5rem;
    color: #dc2626;
    font-weight: 600;
}

.price-display .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #dc2626;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.price-display .period {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 500;
}

.discount-text {
    color: #dc2626;
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0 1rem 0;
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.3);
}

.action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0.5rem 0;
}

.claim-deal-btn {
    background: #2a2a2a;
    border: 2px solid #dc2626;
    border-radius: 8px;
    padding: 0.5rem;
    width: 200px;
    height: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.claim-deal-btn .btn {
    background: transparent;
    border: none;
    color: #dc2626;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.claim-deal-btn .btn:hover {
    background: #dc2626;
    color: white;
    transform: none;
    box-shadow: none;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
    align-items: flex-start;
    width: 100%;
}

.countdown-timer {
    background: #2a2a2a;
    border: 2px solid #dc2626;
    border-radius: 8px;
    padding: 0.5rem;
    margin: 0;
    text-align: center;
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
    margin: 0;
    width: 100%;
    height: 100%;
}

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

.timer-number {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: transparent;
    border: none;
    border-radius: 4px;
    padding: 0.2rem 0.3rem;
    min-width: 30px;
    text-align: center;
}

.timer-separator {
    font-size: 1rem;
    font-weight: 700;
    color: #dc2626;
    margin: 0 0.1rem;
}

.timer-item .timer-label {
    font-size: 0.8rem;
    color: #cccccc;
    margin-top: 0.5rem;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 600;
    margin-top: 0.5rem;
}

.guarantee i {
    font-size: 1.2rem;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
    background: linear-gradient(45deg, #ef4444, #dc2626);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.btn-outline {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
    font-weight: 600;
}

.btn-outline:hover {
    background: #dc2626;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem 0;
}

.hero-cta-button {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, 
        rgba(220, 38, 38, 0.1) 0%,
        rgba(239, 68, 68, 0.1) 25%,
        rgba(248, 113, 113, 0.1) 50%,
        rgba(252, 165, 165, 0.1) 75%,
        transparent 100%);
    border-radius: 50%;
    z-index: 1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.dragon-illustration {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #dc2626 0%, #ef4444 30%, #f87171 60%, #fca5a5 100%);
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.5), 0 0 60px rgba(220, 38, 38, 0.3);
    animation: pulse 2s ease-in-out infinite;
    border: 2px solid #dc2626;
    z-index: 2;
}

.dragon-head {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    border: 2px solid #ffffff;
}

.dragon-head::before {
    content: '🐉';
    font-size: 3.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    z-index: 4;
}

.dragon-head::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, #dc2626, #ef4444, #f87171, #dc2626);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}



.country-flags {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 1;
    pointer-events: none;
}

.flag {
    position: absolute;
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    border: 2px solid #dc2626;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.4);
    animation: float 3s ease-in-out infinite;
    pointer-events: auto;
    transform: translate(-50%, -50%);
}

.flag:hover {
    transform: translate(-50%, -50%) scale(1.2);
    border-color: #dc2626;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.tv-mockup {
    width: 300px;
    height: 200px;
    background: #000000;
    border: 3px solid #dc2626;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(220, 38, 38, 0.3);
    position: relative;
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000000, #1a1a1a);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #333;
}

.channel-logo {
    width: 60px;
    height: 60px;
    background: #dc2626;
    border-radius: 50%;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.channel-info h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.channel-info p {
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.pricing .section-header h2 {
    color: #333;
}

.pricing .section-header p {
    color: #666;
}

/* Country Section */
.country-section {
    padding: 2rem 0;
    background: #000000;
    border-top: 2px solid #dc2626;
}

.flags-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.flag-item {
    background: #1a1a1a;
    color: #dc2626;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.flag-item:hover {
    border-color: #dc2626;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

/* Device Section */
.device-section {
    padding: 4rem 0;
    background: #f5f5f5;
    color: #333;
}

.device-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.device-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.device-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.device-logo {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.device-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: #dc2626;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #000000;
    border-top: 2px solid #333;
}

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

.feature-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(220, 38, 38, 0.2);
    border-color: #dc2626;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #dc2626;
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.3);
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: #f5f5f5;
    border-top: 2px solid #ddd;
}

/* Device Selector */
.device-selector {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.device-selector h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.device-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.device-btn {
    padding: 0.8rem 2rem;
    border: 2px solid #ddd;
    background: white;
    color: #666;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.device-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
    transform: translateY(-2px);
}

.device-btn.active {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #ddd;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 0 20px rgba(220, 38, 38, 0.2);
    border-color: #dc2626;
}

.pricing-card.featured {
    border-color: #dc2626;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #dc2626;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #dc2626;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
}

.pricing-features i {
    color: #dc2626;
    font-size: 1.1rem;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    border: 2px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-note p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Trending Section */
.trending-section {
    padding: 6rem 0;
    background: #0a0a0a;
    border-top: 2px solid #1a1a1a;
    width: 100%;
    overflow: hidden;
}

.trending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.trending-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
    margin: 0;
}

.trending-filters {
    display: flex;
    gap: 1rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid #333;
    color: #cccccc;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
}

.trending-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
    max-width: 100%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #dc2626;
    color: #dc2626;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.trending-carousel {
    display: flex;
    gap: 1rem;
    padding: 2rem 0;
    overflow: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 200%;
    min-width: 200%;
    animation: continuousHorizontalScroll 30s linear infinite;
}

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

.trending-carousel::-webkit-scrollbar {
    display: none;
}

.trending-item {
    flex: 0 0 calc(8.333% - 0.83rem);
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #333;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-width: 200px;
    height: 350px;
}

.trending-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #dc2626;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(220, 38, 38, 0.3);
}

.trending-poster {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trending-item:hover .trending-poster {
    transform: scale(1.05);
}

.trending-info {
    padding: 1.5rem;
    position: relative;
}

.trending-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.trending-date {
    font-size: 0.9rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.trending-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #cccccc;
}

.trending-rating .star {
    color: #ffd700;
    font-size: 1rem;
}

.trending-item {
    cursor: pointer;
}

.trending-item:hover {
    cursor: pointer;
}

/* Responsive Design for Trending */
@media (max-width: 1200px) {
    .trending-item {
        flex: 0 0 calc(20% - 0.8rem);
        min-width: 180px;
    }
}

@media (max-width: 992px) {
    .trending-item {
        flex: 0 0 calc(25% - 0.75rem);
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .trending-header {
        flex-direction: column;
        text-align: center;
    }
    
    .trending-filters {
        justify-content: center;
    }
    
    .trending-item {
        flex: 0 0 calc(33.333% - 0.67rem);
        min-width: 140px;
    }
    
    .trending-poster {
        height: 200px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .trending-item {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: 120px;
    }
    
    .trending-poster {
        height: 150px;
    }
}

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

.channel-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.channel-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.channel-logo {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #dc2626;
    border: 2px solid #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.channel-logo:hover {
    transform: translateY(-2px);
    border-color: #dc2626;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(220, 38, 38, 0.3);
}

.loading-spinner {
    color: #dc2626;
    font-weight: 600;
    text-align: center;
    padding: 2rem;
    animation: pulse 2s infinite;
}

.tmdb-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 10px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    min-height: 120px;
}

.tmdb-content:hover {
    transform: translateY(-2px);
    border-color: #dc2626;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(220, 38, 38, 0.3);
}

.tmdb-poster {
    width: 60px;
    height: 90px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.tmdb-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 0.3rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tmdb-rating {
    font-size: 0.7rem;
    color: #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.tmdb-rating .star {
    color: #ffd700;
}

/* Devices Section */
.devices {
    padding: 6rem 0;
    background: #1a1a1a;
    border-top: 2px solid #333;
}

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

.device-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 15px;
    background: #0a0a0a;
    border: 2px solid #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.device-card:hover {
    background: #1a1a1a;
    transform: translateY(-5px);
    border-color: #dc2626;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(220, 38, 38, 0.2);
}

.device-card i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.device-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.device-card p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Support Section */
.support {
    padding: 6rem 0;
    background: #0a0a0a;
    border-top: 2px solid #1a1a1a;
}

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

.support-method {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.support-method:hover {
    transform: translateY(-5px);
    border-color: #dc2626;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(220, 38, 38, 0.2);
}

.support-method i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.support-method h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.support-method p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 3px solid #dc2626;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: #dc2626;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #dc2626;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #dc2626;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        border-top: 2px solid #ff6b35;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 20px;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-badge {
        align-self: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .hero-tagline {
        text-align: center;
    }
    
    .hero-buttons {
        align-items: center;
    }
    
    .timer-display {
        justify-content: center;
    }
    
    .pricing-highlight {
        margin: 1.5rem auto;
        align-self: center;
    }
    
    .guarantee {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .channels-grid {
        grid-template-columns: 1fr;
    }

    .channel-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .devices-grid {
        grid-template-columns: 1fr;
    }

    .channel-logos {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-card,
.device-card,
.support-method {
    animation: fadeInUp 0.6s ease-out;
}

/* SEO Content Section */
.seo-content-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.seo-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.seo-content-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.seo-content-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.seo-content-item h2 {
    color: #ff6b35;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.seo-content-item p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.seo-content-item ul {
    list-style: none;
    padding: 0;
}

.seo-content-item li {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-left: 0;
    line-height: 1.5;
}

.seo-content-item li:before {
    content: '';
    margin-right: 10px;
}

/* Responsive Design for SEO Content */
@media (max-width: 768px) {
    .seo-content-section {
        padding: 60px 0;
    }
    
    .seo-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .seo-content-item {
        padding: 25px;
    }
    
    .seo-content-item h2 {
        font-size: 1.3rem;
    }
    
    .seo-content-item p {
        font-size: 0.95rem;
    }
    
    .seo-content-item li {
        font-size: 0.9rem;
    }
}

/* Old Price Styling */
.old-price {
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
    margin-right: 10px;
    display: block;
    margin-bottom: 5px;
}
