:root {
    /* Modern Palette - IBO Player Inspired (Red & Black) */
    --primary-color: #E50914; /* Netflix Red / IBO Red */
    --secondary-color: #B71C1C; /* Darker Red */
    --accent-color: #FF1744; /* Bright Red Accent */
    
    --bg-dark: #000000; /* Pure Black */
    --bg-card: #141414; /* Dark Gray Card */
    --bg-card-hover: #1f1f1f;
    --bg-input: #333333;
    
    --text-light: #FFFFFF;
    --text-gray: #CCCCCC;
    --text-muted: #888888;
    
    --danger: #D32F2F;
    --success: #388E3C;
    --warning: #FFA000;
    
    --font-main: 'Cairo', 'Segoe UI', sans-serif;
    
    --border-radius: 8px; /* Sharper corners for a bolder look */
    --container-width: 1200px;
    --container-padding: 2rem;
    --header-height: 70px;
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 15px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px rgba(229, 9, 20, 0.4); /* Red Glow */
    
    --transition: all 0.3s ease;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    direction: ltr;
    position: relative;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header */
header {
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(12px);
    height: var(--header-height);
    position: fixed;
    width: 100%;
    max-width: 100vw; /* Prevent overflow */
    top: 0;
    left: 0; /* Anchor left */
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    box-sizing: border-box; /* Include padding in width */
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -1px;
    direction: ltr; /* Force LTR for English Brand Name */
}

.logo i {
    font-size: 2rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px rgba(229, 9, 20, 0.5));
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 1rem;
}

nav a:hover, nav a.active {
    color: var(--text-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-text {
    color: var(--text-light);
    font-weight: 600;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #00c853;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
}

.btn-primary.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
    background: radial-gradient(circle at top right, rgba(229, 9, 20, 0.2), transparent 40%),
                radial-gradient(circle at bottom left, rgba(183, 28, 28, 0.1), transparent 40%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    align-items: center;
}

.badge-discount {
    background: rgba(255, 23, 68, 0.1);
    color: var(--danger);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 23, 68, 0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 100%;
    height: 10px;
    background: rgba(229, 9, 20, 0.3);
    z-index: -1;
    border-radius: 5px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.trust-pilot-mini {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.trust-pilot-mini .stars {
    color: #00b67a; /* Trustpilot Green */
    margin-bottom: 3px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Trust Strip */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 3rem auto;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.trust-item h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.trust-item p { font-size: 0.85rem; color: var(--text-gray); }

/* Stats Section */
.stats-section {
    padding: 3rem 0;
    margin: -2rem auto 4rem;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: var(--shadow-md);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Comparison Table */
.comparison-section {
    padding: 4rem 0;
    background: #0f0f0f;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-table th {
    background: rgba(0,0,0,0.2);
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table td {
    color: var(--text-gray);
}

.comparison-table .highlight-col {
    background: rgba(0, 230, 118, 0.03);
    color: var(--text-light);
    font-weight: 700;
}

.comparison-table th.highlight-col {
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary-color);
    border-top: 3px solid var(--primary-color);
}

.positive { color: var(--success) !important; }
.negative { color: var(--danger) !important; }

/* App Download Section */
.app-download-section {
    padding: 5rem 0;
    background: linear-gradient(to left, #0f0f0f, var(--bg-card));
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.app-download-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.app-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.app-content p {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 500px;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-app {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--bg-input);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    color: var(--text-light);
    transition: var(--transition);
}

.btn-app:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    background: rgba(0, 230, 118, 0.05);
}

.btn-app i {
    font-size: 2rem;
}

.btn-app div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-app span { font-size: 0.7rem; color: var(--text-gray); }
.btn-app strong { font-size: 1rem; }

.app-image img {
    max-width: 100%;
    width: 300px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: rotate(-5deg);
    transition: var(--transition);
}

.app-image img:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Guarantee Badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(101, 31, 255, 0.1);
    border: 1px solid rgba(101, 31, 255, 0.2);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-badge i {
    font-size: 3rem;
    color: var(--secondary-color);
}

.guarantee-badge strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.guarantee-badge p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Content Categories Section */
.content-categories-section {
    padding: 2rem 0;
    max-width: var(--container-width);
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 0 var(--container-padding);
}

.category-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--text-light);
}

.category-overlay i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-overlay i {
    transform: translateY(0);
    opacity: 1;
}

.category-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.category-overlay p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Channels Slider (Marquee) */
.channels-marquee {
    background: var(--bg-dark);
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.channels-marquee::before,
.channels-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.channels-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.channels-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.channel-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-gray);
    padding: 0 3rem;
    white-space: nowrap;
}

.channel-logo i {
    font-size: 1.5rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Move half way because content is duplicated */
}

/* Tech Features Section */
.tech-features-section {
    padding: 4rem 0;
    background: var(--bg-card);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 var(--container-padding);
}

.tech-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.tech-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.tech-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tech-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Global Network Map */
.global-network-section {
    padding: 5rem 0;
    background: var(--bg-dark);
    text-align: center;
    overflow: hidden;
}

.network-content {
    max-width: 900px;
    margin: 0 auto;
}

.network-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.network-content p {
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.map-visual {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.6;
}

.world-map-svg {
    width: 100%;
    filter: invert(1) opacity(0.5); /* Make it look like a wireframe/dark mode map */
}

.map-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: pulse-point 2s infinite;
}

@keyframes pulse-point {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
    70% { transform: scale(1.5); opacity: 0; box-shadow: 0 0 0 10px rgba(0, 230, 118, 0); }
    100% { transform: scale(1); opacity: 0; box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

/* Approximate positions for map points on standard Mercator projection */
.p-usa { top: 35%; left: 20%; }
.p-uk { top: 28%; left: 48%; }
.p-ger { top: 30%; left: 51%; }
.p-uae { top: 45%; left: 58%; }
.p-ksa { top: 48%; left: 56%; }
.p-egy { top: 46%; left: 54%; }
.p-fra { top: 32%; left: 49%; }

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(45deg, #1a1a1a, #0a0a0a);
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.newsletter-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, var(--text-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter-text p {
    color: var(--text-gray);
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form .btn-primary {
    white-space: nowrap;
}

/* Payment Methods Strip */
.payment-methods-strip {
    background: #0a0a0a;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.payment-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-container p {
    color: var(--text-gray);
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 2.5rem;
    color: var(--text-muted);
}

.payment-icons i {
    transition: var(--transition);
}

.payment-icons i:hover {
    color: var(--text-light);
    transform: scale(1.1);
}

.payment-icons .fa-cc-visa { color: #1a1f71; }
.payment-icons .fa-cc-mastercard { color: #eb001b; }
.payment-icons .fa-cc-paypal { color: #003087; }
.payment-icons .fa-bitcoin { color: #f7931a; }
.payment-icons .fa-wallet { color: var(--primary-color); }

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Updates */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 1024px) {
    header { 
        height: 60px;
        padding: 0 1.5rem; 
        justify-content: space-between;
        width: 100%;
        max-width: 100vw;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo i {
        font-size: 1.6rem;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.4rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px; /* Limit width */
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        padding: 6rem 2rem;
        transition: 0.3s ease-in-out;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        width: 100%;
    }

    .nav-menu a {
        font-size: 1.2rem;
        display: block;
        width: 100%;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .header-actions {
        display: none; 
    }
    
    .hero {
        padding-top: calc(60px + 2rem);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 1rem;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    
    /* Remove footer styles from here to avoid conflict */
    
    .products-grid { grid-template-columns: 1fr; }
    
    .app-download-container { flex-direction: column; text-align: center; }
    .app-buttons { justify-content: center; }
    
    .app-image img { transform: rotate(0); }
}

@media (max-width: 768px) {
    /* Additional tweaks for smaller phones if needed */
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-title p { color: var(--text-gray); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 columns on large screens */
    gap: 1.5rem;
    padding: 0 var(--container-padding);
}

/* Responsive Grid for smaller screens */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Card - GamsGo Style */
.pricing-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    background: rgba(0, 230, 118, 0.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.price span { font-size: 1rem; font-weight: 400; color: var(--text-gray); }

.features-list { margin-bottom: 2rem; flex-grow: 1; }
.features-list li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}
.features-list li i { color: var(--primary-color); }

.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 0.8rem;
}

/* Compatible Devices Section */
.devices-section {
    padding: 4rem 0;
    background: var(--bg-card);
    max-width: var(--container-width);
    margin: 4rem auto;
    border-radius: var(--border-radius);
    text-align: center;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    padding: 2rem var(--container-padding) 0;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
    transition: var(--transition);
}

.device-item:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.device-item i {
    font-size: 3rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 var(--container-padding);
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255,255,255,0.02);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    transition: var(--transition);
    color: var(--text-gray);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    margin: 4rem auto;
    max-width: var(--container-width);
    background: linear-gradient(135deg, var(--secondary-color), #000);
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Steps Section */
.steps-section {
    padding: 5rem 0;
    background: #0f0f0f;
    margin-top: 4rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.step-card { position: relative; }

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-input);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--primary-color);
}

/* Reviews */
.reviews-section {
    padding: 5rem 0;
    max-width: var(--container-width);
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 var(--container-padding);
}

.review-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.stars { color: #FFC107; font-size: 0.8rem; margin-top: 4px; }

/* Footer */
footer {
    background: #050505;
    padding: 5rem 0 6rem; /* Increased bottom padding to avoid overlap with FAB */
    border-top: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    position: relative;
    height: auto; /* Ensure full height */
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.footer-col h4 { margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: var(--text-gray); }
.footer-col ul li a:hover { color: var(--primary-color); padding-right: 5px; }

.social-links { display: flex; gap: 1rem; }
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-links a:hover { background: var(--primary-color); color: #000; }

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== DEDICATED FOOTER RESPONSIVENESS ===== */
@media screen and (max-width: 1024px) {
    footer {
        padding: 4rem 0 6rem !important;
        height: auto !important;
    }

    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 3rem !important;
        padding: 0 2rem !important;
        grid-template-columns: none !important;
    }

    .footer-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Logo Section specific styling */
    .footer-col:first-child {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 2rem;
        margin-bottom: 1rem;
    }

    .footer-col h4 {
        margin-bottom: 1.2rem;
        color: var(--text-light);
        font-size: 1.3rem;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 0.5rem;
        display: inline-block;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
        padding: 0;
    }

    .footer-col ul li {
        margin: 0;
        width: 100%;
    }

    .footer-col ul li a {
        display: block;
        padding: 0.5rem;
        font-size: 1.1rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
        gap: 1.5rem;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Blog Grid Styles */
.blog-grid-section {
    padding: 4rem 0;
    max-width: var(--container-width);
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 var(--container-padding);
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: var(--shadow-md);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: var(--text-light);
}

.blog-excerpt {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 8px;
}

/* Single Post Styles */
.post-header {
    text-align: center;
    padding: 6rem 0 4rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), var(--bg-dark)), url('https://images.unsplash.com/photo-1593305841991-05c29736560e?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    position: relative;
}

.post-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.post-meta-header {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.post-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem var(--container-padding);
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin-top: -3rem;
    position: relative;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.05);
}

.post-content h2, .post-content h3 {
    color: var(--text-light);
    margin: 2rem 0 1rem;
}

.post-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-gray);
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content img {
    max-width: 100%;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}
