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

:root {
    /* Dark Mode Streaming Theme */
    --primary-color: #E50914;
    --primary-dark: #B20710;
    --primary-light: #F40612;
    
    /* Dark Backgrounds */
    --bg-white: #0a0a0a;
    --bg-light: #141414;
    --bg-lighter: #1a1a1a;
    --bg-dark: #000000;
    --bg-dark-secondary: #1f1f1f;
    --bg-card: #1a1a1a;
    
    /* Light Text Colors */
    --text-dark: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    --text-light: #e5e5e5;
    
    /* Dark Borders & Shadows */
    --border-color: #2a2a2a;
    --border-light: #333333;
    --border-dark: #2a2a2a;
    --shadow-sm: rgba(0, 0, 0, 0.3);
    --shadow-md: rgba(0, 0, 0, 0.5);
    --shadow-lg: rgba(0, 0, 0, 0.7);
    --shadow-primary: rgba(229, 9, 20, 0.4);
    --shadow-streaming: rgba(229, 9, 20, 0.5);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    transition: background-color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Header Styles */
.main-header {
    background-image: url('../images/hero/family-movie-night-home-with-popcorn.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    border-bottom: none;
    animation: fadeIn 0.5s ease-out;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
    z-index: -1;
    transition: all 0.4s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    padding: 15px 0;
}

.main-header.scrolled::before {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Header styles for non-homepage pages */
.main-header.not-homepage-header {
    background-image: none;
    background-color: #0a0a0a;
    background-attachment: scroll;
}

.main-header.not-homepage-header::before {
    display: none;
}

.main-header.not-homepage-header.scrolled {
    background-color: #0a0a0a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    font-size: 28px;
    display: inline-block;
    color: #E50914;
    font-weight: bold;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    color: #E50914;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.logo a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.main-nav {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}
    padding: 8px 15px;
    border-radius: 8px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(249, 56, 39, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-close {
    display: none;
    border-bottom: none !important;
    padding: 0;
    margin-bottom: 10px;
}

.nav-menu.active .mobile-menu-close {
    display: block;
}

.close-menu-btn {
    background: var(--primary-color);
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-primary);
}

.close-menu-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: var(--bg-white);
    background-image: url('../images/hero/family-movie-night-home-with-popcorn.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(20, 20, 20, 0.70) 50%, rgba(10, 10, 10, 0.72) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-section::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #ffffff;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-description {
    font-size: 19px;
    color: #e5e5e5;
    line-height: 1.75;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 0 1px 15px rgba(0, 0, 0, 0.8), 0 2px 25px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.2px;
}

.hero-sub-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.9), 0 2px 15px rgba(255, 255, 255, 0.5);
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 160px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--shadow-md);
    border-color: var(--primary-color);
}

.trust-platform {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.trust-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.trust-rating .stars {
    color: #ffb703;
    font-size: 14px;
}

.trust-rating .rating-score {
    font-size: 22px;
    font-weight: 700;
    color: #E50914;
    line-height: 1;
}

.trust-reviews {
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #E50914 0%, #B20710 100%);
    color: var(--bg-white);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.35);
    border: 2px solid #E50914;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(229, 9, 20, 0.45);
    background: linear-gradient(135deg, #F40612 0%, #E50914 100%);
    border-color: #F40612;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--shadow-primary);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    animation: fadeInUp 0.6s ease-out;
}

.features-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.features-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-md);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }
.feature-card:nth-child(9) { animation-delay: 0.9s; }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #E50914;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(229, 9, 20, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(229, 9, 20, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(229, 9, 20, 0.12);
    border-color: #E50914;
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.25);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: #E50914;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: var(--text-secondary);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    animation: fadeInUp 0.6s ease-out;
}

.process-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.process-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-steps-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: 0 4px 15px var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}
    position: relative;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(229, 9, 20, 0.4);
}

.step-number {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #E50914 0%, #B20710 100%);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
    background: linear-gradient(135deg, #F40612 0%, #E50914 100%);
}

.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 0 12px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.process-step:hover h3 {
    color: #E50914;
}

.process-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.process-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 0 20px;
}

.process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(249, 56, 39, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.process-dot.active {
    width: 32px;
    height: 10px;
    border-radius: 5px;
    background: var(--primary-color);
    box-shadow: 0 2px 8px var(--shadow-primary);
}

.process-dot:hover {
    background: rgba(249, 56, 39, 0.4);
    transform: scale(1.2);
}

/* Channels Section */
.channels-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.channels-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    animation: fadeInUp 0.6s ease-out;
}

.channels-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.channels-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.channels-categories {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.channel-category {
    width: 100%;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.category-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.channel-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(249, 56, 39, 0.08);
    padding: 6px 15px;
    border-radius: 20px;
}

.channels-slider-wrapper,
.vod-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.channels-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    cursor: grab;
    user-select: none;
}

.channels-scroll:active {
    cursor: grabbing;
}

.channels-scroll::-webkit-scrollbar {
    display: none;
}

.channel-item {
    flex: 0 0 140px;
    min-width: 140px;
    text-align: center;
    padding: 25px 15px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    scroll-snap-align: start;
    cursor: pointer;
}

.channel-item:hover {
    transform: translateY(-5px);
    background: var(--bg-lighter);
    border-color: #E50914;
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
}

.channel-logo {
    font-size: 48px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    transition: transform 0.3s ease;
}

.channel-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 120px;
    max-height: 60px;
}

.channel-item:hover .channel-logo {
    transform: scale(1.15);
}

.channel-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* VOD Section */
.vod-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.vod-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    animation: fadeInUp 0.6s ease-out;
}

.vod-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.vod-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.vod-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    cursor: grab;
    user-select: none;
}

.vod-scroll:active {
    cursor: grabbing;
}

.vod-scroll::-webkit-scrollbar {
    display: none;
}

.vod-item {
    flex: 0 0 280px;
    min-width: 280px;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.vod-poster {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: var(--bg-card);
    box-shadow: 0 4px 15px var(--shadow-md);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vod-poster img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.vod-item:hover .vod-poster {
    box-shadow: 0 4px 15px var(--shadow-md);
    transform: scale(1.05);
}

.vod-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.3;
    text-align: center;
}

.vod-rating {
    font-size: 12px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 600;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 0 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(249, 56, 39, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    width: 32px;
    height: 10px;
    border-radius: 5px;
    background: var(--primary-color);
    box-shadow: 0 2px 8px var(--shadow-primary);
}

.slider-dot:hover {
    background: rgba(249, 56, 39, 0.4);
    transform: scale(1.2);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    animation: fadeInUp 0.6s ease-out;
}

.pricing-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pricing-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.pricing-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #E50914;
}

.pricing-card.featured {
    border: 3px solid #E50914;
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
    background: var(--bg-card);
}

.pricing-card.featured:hover {
    box-shadow: 0 14px 40px rgba(229, 9, 20, 0.35);
    transform: translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #E50914 0%, #B20710 100%);
    color: var(--bg-white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.pricing-plan {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 10px;
}

.pricing-plan h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.pricing-price .currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-price .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.pricing-price .period {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-savings {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.pricing-features {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: #E50914;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #E50914 0%, #B20710 100%);
    color: var(--bg-white);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-primary);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
    background: linear-gradient(135deg, #F40612 0%, #E50914 100%);
    border-color: #F40612;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.reviews-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    animation: fadeInUp 0.6s ease-out;
}

.reviews-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.reviews-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.reviews-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    cursor: grab;
    user-select: none;
}

.reviews-scroll:active {
    cursor: grabbing;
}

.reviews-scroll::-webkit-scrollbar {
    display: none;
}

.review-item {
    flex: 0 0 280px;
    min-width: 280px;
    scroll-snap-align: start;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

.review-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px var(--shadow-md);
    border-color: var(--primary-color);
}

.review-image {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 17px;
}

.review-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 17px;
}

/* Devices Section */
.devices-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.devices-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    animation: fadeInUp 0.6s ease-out;
}

.devices-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.devices-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.device-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.device-card:nth-child(1) { animation-delay: 0.1s; }
.device-card:nth-child(2) { animation-delay: 0.2s; }
.device-card:nth-child(3) { animation-delay: 0.3s; }
.device-card:nth-child(4) { animation-delay: 0.4s; }

.device-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px var(--shadow-md);
    border-color: var(--primary-color);
}

.device-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 56, 39, 0.08);
    border-radius: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 2px solid rgba(249, 56, 39, 0.1);
}

.device-card:hover .device-icon {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px var(--shadow-primary);
}

.device-icon svg {
    width: 45px;
    height: 45px;
    stroke-width: 2;
}

.device-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.device-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Apps Section */
.apps-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.apps-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    animation: fadeInUp 0.6s ease-out;
}

.apps-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.apps-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.app-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.app-card:nth-child(1) { animation-delay: 0.1s; }
.app-card:nth-child(2) { animation-delay: 0.2s; }
.app-card:nth-child(3) { animation-delay: 0.3s; }
.app-card:nth-child(4) { animation-delay: 0.4s; }

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px var(--shadow-md);
    border-color: var(--primary-color);
}

.app-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow-sm);
    background: var(--bg-light);
}

.app-card:hover .app-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px var(--shadow-md);
}

.app-icon svg,
.app-icon img {
    width: 50px;
    height: 50px;
}

.app-icon img {
    object-fit: contain;
    border-radius: 12px;
}

.app-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.app-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Family Section */
.family-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.family-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.family-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-md);
    transition: transform 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.family-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-lg);
}

.family-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.family-text {
    animation: fadeInUp 0.8s ease-out;
}

.family-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.3;
}

.family-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.family-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.family-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.family-feature svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.family-feature h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.family-feature p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* SEO Content Section */
.seo-content-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out;
}

.seo-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.seo-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.seo-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.family-cta {
    margin-top: 40px;
}

.family-cta .btn-primary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 15px var(--shadow-primary);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.family-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-primary);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Footer */
.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-dark);
    padding: 50px 0 20px;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 14px;
}

.footer-logo-section {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo-icon {
    font-size: 32px;
    display: inline-block;
    color: var(--primary-color);
    font-weight: bold;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-contact strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .process-steps {
        display: flex;
        grid-template-columns: none;
        gap: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 10px;
    }
    
    .process-steps::-webkit-scrollbar {
        display: none;
    }
    
    .process-step {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: start;
        padding: 35px 25px;
        margin-right: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }
    
    .devices-grid,
    .apps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .channels-slider-wrapper,
    .vod-slider-wrapper {
        margin: 0 -20px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        box-shadow: 0 4px 20px var(--shadow-md);
        width: 250px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 25px var(--shadow-md);
        border: 2px solid var(--primary-color);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        gap: 0;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-close {
        display: block;
    }
    
    .nav-link {
        display: block;
        padding: 15px;
        width: 100%;
        color: var(--text-secondary);
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-sub-description {
        font-size: 15px;
    }
    
    .features-header h2,
    .process-header h2,
    .channels-header h2,
    .vod-header h2,
    .pricing-header h2,
    .reviews-header h2,
    .devices-header h2,
    .apps-header h2 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .family-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .channels-slider-wrapper,
    .vod-slider-wrapper,
    .reviews-slider-wrapper {
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    .devices-grid,
    .apps-grid {
        display: flex;
        grid-template-columns: none;
        gap: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .devices-grid::-webkit-scrollbar,
    .apps-grid::-webkit-scrollbar {
        display: none;
    }
    
    .device-card,
    .app-card {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: start;
        padding: 30px 20px;
        margin-right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-sub-description {
        font-size: 14px;
    }
    
    .features-header h2,
    .process-header h2,
    .channels-header h2,
    .vod-header h2,
    .pricing-header h2,
    .reviews-header h2,
    .devices-header h2,
    .apps-header h2 {
        font-size: 24px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .family-text h2 {
        font-size: 24px;
    }
}

/* About Us Page Styles */
.about-hero-section {
    background: var(--bg-dark);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(229, 9, 20, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.about-hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.about-story-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-story-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-story-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-story-image {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--bg-card);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px var(--shadow-md);
}

.about-image-placeholder svg {
    width: 120px;
    height: 120px;
    color: var(--primary-color);
    opacity: 0.3;
}

.about-mission-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about-mission-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-mission-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.mission-statement {
    font-size: 22px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 60px;
    font-weight: 500;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mission-value-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-md);
    transition: all 0.3s ease;
}

.mission-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px var(--shadow-lg);
    border-color: var(--primary-color);
}

.mission-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.mission-value-icon svg {
    width: 40px;
    height: 40px;
}

.mission-value-card:hover .mission-value-icon {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1);
}

.mission-value-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.mission-value-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.about-why-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about-why-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-why-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.3;
}

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

.why-feature-item {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.why-feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px var(--shadow-lg);
    border-color: var(--primary-color);
}

.why-feature-item:hover::before {
    transform: scaleY(1);
}

.why-feature-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-feature-item:hover .why-feature-number {
    opacity: 0.4;
    transform: scale(1.1);
}

.why-feature-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-feature-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.about-stats-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: var(--bg-card);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-md);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px var(--shadow-lg);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #E50914 0%, #F40612 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-cta-section {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-cta-content p {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles for About Us */
@media (max-width: 968px) {
    .about-story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-description {
        font-size: 18px;
    }
    
    .about-story-text h2,
    .about-mission-content h2,
    .about-why-content h2,
    .about-cta-content h2 {
        font-size: 32px;
    }
    
    .why-features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .about-cta-buttons .btn {
        width: 100%;
    }
}

/* About Us Page Styles */
.about-hero-section {
    background: var(--bg-dark);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(229, 9, 20, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.about-hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.about-story-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-story-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-story-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-story-image {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--bg-card);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px var(--shadow-md);
}

.about-image-placeholder svg {
    width: 120px;
    height: 120px;
    color: var(--primary-color);
    opacity: 0.3;
}

.about-mission-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about-mission-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-mission-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.mission-statement {
    font-size: 22px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 60px;
    font-weight: 500;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mission-value-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-md);
    transition: all 0.3s ease;
}

.mission-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px var(--shadow-lg);
    border-color: var(--primary-color);
}

.mission-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.mission-value-icon svg {
    width: 40px;
    height: 40px;
}

.mission-value-card:hover .mission-value-icon {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1);
}

.mission-value-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.mission-value-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.about-why-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about-why-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-why-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.3;
}

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

.why-feature-item {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.why-feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px var(--shadow-lg);
    border-color: var(--primary-color);
}

.why-feature-item:hover::before {
    transform: scaleY(1);
}

.why-feature-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-feature-item:hover .why-feature-number {
    opacity: 0.4;
    transform: scale(1.1);
}

.why-feature-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-feature-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.about-stats-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: var(--bg-card);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-md);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px var(--shadow-lg);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #E50914 0%, #F40612 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-cta-section {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-cta-content p {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles for About Us */
@media (max-width: 968px) {
    .about-story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-description {
        font-size: 18px;
    }
    
    .about-story-text h2,
    .about-mission-content h2,
    .about-why-content h2,
    .about-cta-content h2 {
        font-size: 32px;
    }
    
    .why-features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .about-cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   Installation Guide Styles
   ============================================ */

.installation-hero-section {
    background: var(--bg-dark);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.installation-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(229, 9, 20, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.installation-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.installation-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.installation-hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.installation-section {
    padding: 80px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.installation-section:last-of-type {
    border-bottom: none;
}

.installation-device-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(229, 9, 20, 0.3);
}

.device-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 12px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.device-icon svg {
    width: 28px;
    height: 28px;
}

.device-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.installation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.installation-method-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.installation-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.installation-method-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.installation-method-card:hover::before {
    opacity: 1;
}

.method-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.method-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.method-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-badge.recommended {
    background: rgba(229, 9, 20, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(229, 9, 20, 0.3);
}

.method-badge.alternative {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.method-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.installation-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0;
}

.installation-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 45px;
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-white);
}

.installation-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: rgba(229, 9, 20, 0.2);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.installation-steps li:last-child {
    padding-bottom: 0;
}

.installation-steps li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.installation-steps li a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.installation-steps li a:hover {
    opacity: 0.8;
}

.method-note {
    margin-top: 25px;
    padding: 15px 20px;
    background: rgba(229, 9, 20, 0.1);
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.method-note strong {
    color: var(--text-white);
    font-weight: 600;
}

.installation-help-section {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
}

.help-content {
    max-width: 700px;
    margin: 0 auto;
}

.help-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.help-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.help-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles for Installation Guide */
@media (max-width: 968px) {
    .installation-methods {
        grid-template-columns: 1fr;
    }
    
    .device-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .installation-hero-title {
        font-size: 36px;
    }
    
    .installation-hero-description {
        font-size: 18px;
    }
    
    .installation-section {
        padding: 60px 0;
    }
    
    .installation-device-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .device-title {
        font-size: 28px;
    }
    
    .installation-method-card {
        padding: 25px;
    }
    
    .method-header h3 {
        font-size: 20px;
    }
    
    .installation-steps li {
        padding-left: 40px;
        font-size: 15px;
    }
    
    .installation-steps li::before {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    
    .help-content h2 {
        font-size: 32px;
    }
    
    .help-buttons {
        flex-direction: column;
    }
    
    .help-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   Device Selector Styles
   ============================================ */

.device-selector-section {
    padding: 80px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.device-selector-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.selector-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.selector-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.device-search-box {
    position: relative;
    max-width: 700px;
    margin: 0 auto 40px;
}

.device-search-input {
    width: 100%;
    padding: 18px 50px 18px 20px;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.device-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(20, 20, 20, 1);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1);
}

.device-search-input::placeholder {
    color: var(--text-secondary);
}

.search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    pointer-events: none;
}

.device-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.device-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: rgba(20, 20, 20, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.device-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.device-btn:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 9, 20, 0.3);
    background: rgba(20, 20, 20, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.device-btn:hover::before {
    opacity: 1;
}

.device-btn.active {
    border-color: var(--primary-color);
    background: rgba(229, 9, 20, 0.1);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.2);
}

.device-btn.active::before {
    opacity: 1;
}

.device-btn svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.device-btn:hover svg {
    transform: scale(1.1);
}

.show-all-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-all-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(229, 9, 20, 0.1);
}

/* ============================================
   First Time Tutorial Section
   ============================================ */

.first-time-tutorial-section {
    padding: 80px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tutorial-card {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.tutorial-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(229, 9, 20, 0.3);
}

.tutorial-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.tutorial-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.tutorial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.tutorial-steps h3,
.tutorial-video h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
}

.tutorial-steps-list {
    list-style: none;
    counter-reset: tutorial-counter;
    padding: 0;
    margin: 0;
}

.tutorial-steps-list li {
    counter-increment: tutorial-counter;
    position: relative;
    padding-left: 45px;
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-white);
}

.tutorial-steps-list li::before {
    content: counter(tutorial-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: rgba(229, 9, 20, 0.2);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.tutorial-steps-list li:last-child {
    padding-bottom: 0;
}

.tutorial-steps-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles for Device Selector and Tutorial */
@media (max-width: 968px) {
    .device-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tutorial-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .device-selector-section {
        padding: 60px 0;
    }
    
    .selector-title {
        font-size: 28px;
    }
    
    .selector-subtitle {
        font-size: 16px;
    }
    
    .device-buttons-grid {
        grid-template-columns: 1fr;
    }
    
    .device-btn {
        padding: 25px 15px;
    }
    
    .tutorial-card {
        padding: 25px;
    }
    
    .tutorial-header h2 {
        font-size: 24px;
    }
    
    .tutorial-steps h3,
    .tutorial-video h3 {
        font-size: 20px;
    }
}

/* ============================================
   Contact Us Page Styles
   ============================================ */

.contact-hero-section {
    background: var(--bg-dark);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(229, 9, 20, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-card,
.contact-info-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 5px;
}

.required {
    color: var(--primary-color);
    font-weight: 700;
}

.form-input,
.form-textarea,
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(10, 10, 10, 1);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.phone-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.phone-input {
    flex: 1;
}

.form-submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
    margin-top: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.submit-icon {
    width: 20px;
    height: 20px;
}

.contact-info-card {
    height: fit-content;
    position: sticky;
    top: 100px;
}

.info-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(229, 9, 20, 0.3);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 12px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.info-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-link {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Responsive Styles for Contact Page */
@media (max-width: 968px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 36px;
    }
    
    .contact-hero-description {
        font-size: 18px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 25px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .phone-input-wrapper {
        flex-direction: column;
    }
    
    .info-title {
        font-size: 24px;
    }
}

/* Form Message Styles */
.form-message {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
    transition: all 0.3s ease;
}

.form-message-success {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.form-message-error {
    background: rgba(229, 9, 20, 0.1);
    border: 2px solid rgba(229, 9, 20, 0.3);
    color: var(--primary-color);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Country Selector Styles */
.country-selector-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 200px;
}

.country-selector-btn {
    width: 100%;
    padding: 16px 20px;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.country-selector-btn:hover {
    border-color: rgba(229, 9, 20, 0.3);
    background: rgba(10, 10, 10, 1);
}

.country-selector-btn.active {
    border-color: var(--primary-color);
    background: rgba(10, 10, 10, 1);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1);
}

.selected-flag {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.selected-code {
    font-weight: 600;
    color: var(--text-white);
    flex: 1;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.country-selector-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.country-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    max-height: 400px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.country-dropdown.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
}

.country-search-wrapper {
    position: relative;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.country-search-wrapper .search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    pointer-events: none;
}

.country-search-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.country-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(10, 10, 10, 1);
}

.country-search-input::placeholder {
    color: var(--text-secondary);
}

.country-list {
    overflow-y: auto;
    max-height: 320px;
    padding: 5px 0;
}

.country-list::-webkit-scrollbar {
    width: 6px;
}

.country-list::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.5);
}

.country-list::-webkit-scrollbar-thumb {
    background: rgba(229, 9, 20, 0.3);
    border-radius: 3px;
}

.country-list::-webkit-scrollbar-thumb:hover {
    background: rgba(229, 9, 20, 0.5);
}

.country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.country-item:last-child {
    border-bottom: none;
}

.country-item:hover {
    background: rgba(229, 9, 20, 0.1);
}

.country-item:active {
    background: rgba(229, 9, 20, 0.2);
}

.country-flag {
    font-size: 20px;
    line-height: 1;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.country-name {
    flex: 1;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 500;
}

.country-calling-code {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.loading-countries,
.error-loading,
.no-results {
    padding: 30px 15px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.error-loading {
    color: var(--primary-color);
}

/* Responsive Styles for Country Selector */
@media (max-width: 768px) {
    .country-selector-wrapper {
        width: 100%;
    }
    
    .country-dropdown {
        max-height: 300px;
    }
    
    .country-list {
        max-height: 240px;
    }
}

/* Enhanced Contact Form Styles */
.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(229, 9, 20, 0.2);
}

.form-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.2) 0%, rgba(229, 9, 20, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 2px solid rgba(229, 9, 20, 0.3);
}

.form-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.form-row {
    margin-bottom: 0;
}

.label-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(10, 10, 10, 1);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1);
}

.form-input.error,
.form-textarea.error {
    border-color: var(--primary-color);
    background: rgba(229, 9, 20, 0.05);
}

.form-input.valid {
    border-color: #4ade80;
    background: rgba(34, 197, 94, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
}

.input-error {
    display: block;
    font-size: 13px;
    color: var(--primary-color);
    margin-top: 5px;
    min-height: 18px;
}

.input-hint {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.phone-input-container {
    position: relative;
    flex: 1;
}

.phone-validation-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    display: none;
}

.phone-validation-icon.valid,
.phone-validation-icon.error {
    display: block;
}

.phone-validation-icon.valid {
    color: #4ade80;
}

.phone-validation-icon.error {
    color: var(--primary-color);
}

.phone-validation-icon svg {
    width: 100%;
    height: 100%;
}

.phone-input {
    padding-right: 45px;
}

.info-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(229, 9, 20, 0.2);
}

.info-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(10, 10, 10, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(10, 10, 10, 0.6);
    border-color: rgba(229, 9, 20, 0.2);
    transform: translateY(-2px);
}

.info-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-icon.whatsapp-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.info-icon.email-icon {
    background: rgba(229, 9, 20, 0.15);
    color: var(--primary-color);
    border: 1px solid rgba(229, 9, 20, 0.3);
}

.info-icon.time-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.info-icon svg {
    width: 26px;
    height: 26px;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.info-text {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.info-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 5px;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: var(--primary-light);
    gap: 10px;
}

.info-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.info-link:hover svg {
    transform: translateX(3px);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .form-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .form-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .form-icon-wrapper svg {
        width: 28px;
        height: 28px;
    }
    
    .form-title {
        font-size: 26px;
    }
    
    .form-subtitle {
        font-size: 14px;
    }
    
    .contact-info-item {
        padding: 15px;
    }
    
    .info-icon {
        width: 48px;
        height: 48px;
    }
    
    .info-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* ============================================
   Legal Pages Styles (Privacy, Terms, Refund, etc.)
   ============================================ */

.legal-hero-section {
    background: var(--bg-dark);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(229, 9, 20, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.legal-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.legal-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.legal-hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    font-style: italic;
}

.legal-content-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.legal-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(229, 9, 20, 0.3);
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section ul li,
.legal-section ol li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.legal-section ul li strong,
.legal-section ol li strong {
    color: var(--text-white);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-section a:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary-light);
}

/* Refund Policy Specific Styles */
.refund-item {
    background: rgba(10, 10, 10, 0.4);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
}

.refund-item.no-refund {
    border-left-color: rgba(255, 255, 255, 0.3);
    background: rgba(229, 9, 20, 0.05);
}

.refund-item h3 {
    color: var(--text-white);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
}

.refund-item.no-refund h3 {
    color: var(--text-secondary);
}

.refund-item p {
    margin-bottom: 15px;
}

.refund-item ul {
    margin-top: 15px;
}

/* DMCA Policy Specific Styles */
.dmca-requirements {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
}

.dmca-requirements h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.dmca-requirements ol {
    counter-reset: dmca-counter;
    list-style: none;
    padding-left: 0;
}

.dmca-requirements ol li {
    counter-increment: dmca-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
}

.dmca-requirements ol li::before {
    content: counter(dmca-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: rgba(229, 9, 20, 0.2);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-box {
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.contact-box p {
    margin-bottom: 10px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Styles for Legal Pages */
@media (max-width: 968px) {
    .legal-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .legal-hero-title {
        font-size: 36px;
    }
    
    .legal-hero-description {
        font-size: 16px;
    }
    
    .legal-content-section {
        padding: 60px 0;
    }
    
    .legal-content {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .legal-section h2 {
        font-size: 24px;
    }
    
    .legal-section h3 {
        font-size: 18px;
    }
    
    .legal-section p,
    .legal-section ul li,
    .legal-section ol li {
        font-size: 15px;
    }
    
    .refund-item {
        padding: 20px;
    }
    
    .dmca-requirements {
        padding: 20px;
    }
}
