/* Design Tokens & Reset */
:root {
    --bg-dark: #040815;
    --bg-card: #09122c;
    --bg-header: rgba(4, 8, 21, 0.85);
    --primary: #10b981;
    --primary-glow: rgba(16, 185, 129, 0.4);
    --gold: #ffbb00;
    --gold-glow: rgba(255, 187, 0, 0.3);
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-dark: #1f2937;
    --blue-neon: #00bbff;
    --blue-neon-glow: rgba(0, 187, 255, 0.35);
    
    --font-primary: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
    --neon-shadow: 0 0 25px var(--blue-neon-glow);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-primary);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

/* Background Overlay Grid */
.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    z-index: -1;
    overflow: hidden;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    opacity: 0.12;
    transform: rotate(-5deg) scale(1.1) translateY(-50px);
    width: 120%;
    margin-left: -10%;
    pointer-events: none;
    filter: blur(2px);
}

.collage-item {
    height: 250px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.collage-grid .collage-item:nth-child(5n+1) { background-image: url('assets/poster_warrior.png'); }
.collage-grid .collage-item:nth-child(5n+2) { background-image: url('assets/poster_blood_ties.png'); }
.collage-grid .collage-item:nth-child(5n+3) { background-image: url('assets/poster_football.png'); }
.collage-grid .collage-item:nth-child(5n+4) { background-image: url('assets/poster_kids.png'); }
.collage-grid .collage-item:nth-child(5n+5) { background-image: url('assets/poster_warrior.png'); }

.radial-glow {
    position: absolute;
    top: 25%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 187, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(4, 8, 21, 0) 0%, rgba(4, 8, 21, 1) 100%);
    pointer-events: none;
}

/* Typography Helper classes */
.gold-text {
    color: var(--gold);
}

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.5px;
}

.btn-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    margin-right: 10px;
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Selector Dropdown */
.lang-selector {
    position: relative;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    padding: 8px 16px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.icon-globe, .icon-chevron {
    width: 16px;
    height: 16px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 6px;
    list-style: none;
    min-width: 120px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1100;
}

.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 8px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
}

.lang-option.active {
    color: var(--gold);
    background: rgba(255, 187, 0, 0.1);
    font-weight: 600;
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav Drawer */
.nav-drawer {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(4, 8, 21, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.nav-drawer.open {
    transform: translateY(0);
    opacity: 1;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap; /* Prevent menu items from splitting into two lines */
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

.nav-links a.download-nav-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

/* Sections General */
.main-content {
    margin-top: 70px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 16px;
}

.section-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* Hero Section */
.hero-section {
    padding: 30px 16px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-info {
    text-align: center;
    z-index: 10;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.free-badge-text {
    background: linear-gradient(to right, #10b981 0%, #a7f3d0 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
    display: inline-block;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.3));
    font-weight: 900;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-white);
}

.hero-description {
    font-size: 0.85rem;
    color: var(--gold);
    max-width: 450px;
    margin: 0 auto 25px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
    margin: 0 auto;
}

.hero-buttons .btn {
    width: 100%;
}

.fill-icon {
    fill: currentColor;
}

/* TV Showcase mockup */
.hero-showcase {
    position: relative;
    width: 100%;
    max-width: 320px;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.tv-glow-platform {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}

/* Neon Base ring */
.tv-glow-platform::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, var(--blue-neon-glow) 0%, rgba(0,0,0,0) 80%);
    border-radius: 50%;
    z-index: 1;
    transform: rotateX(75deg);
    border: 3px solid rgba(0, 187, 255, 0.4);
    box-shadow: 0 0 15px var(--blue-neon);
}

.glow-ring {
    position: absolute;
    bottom: 5px;
    border-radius: 50%;
    transform: rotateX(75deg);
    border: 2px solid rgba(0, 187, 255, 0.2);
    pointer-events: none;
    z-index: 1;
}

.glow-ring-1 {
    width: 90%;
    height: 30px;
    box-shadow: 0 0 20px rgba(0, 187, 255, 0.15);
}

.glow-ring-2 {
    width: 100%;
    height: 40px;
    border-width: 1px;
}

.tv-mockup {
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 5;
    position: relative;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
    animation: tvFloat 6s ease-in-out infinite;
}

@keyframes tvFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Features Section - Replicated 1:1 Unified Box */
.features-section {
    padding: 15px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Always 4 columns */
    background: linear-gradient(135deg, rgba(9, 18, 44, 0.55) 0%, rgba(5, 12, 30, 0.75) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px 6px;
    gap: 0;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.feature-card {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 8px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px; /* Tight spacing between icon and text */
    transition: var(--transition);
}

.feature-card:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.feature-icon-wrapper {
    width: auto;
    height: auto;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 48px; /* Significantly enlarged icons to occupy more column space */
    height: 48px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Icon Colors */
.icon-gold { color: var(--gold); }
.icon-blue { color: var(--blue-neon); }
.icon-green { color: #10b981; }
.icon-purple { color: #a78bfa; }

.feature-content h3 {
    font-size: 0.8rem; /* Slightly smaller title for better proportions */
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-white);
}

.feature-content p {
    font-size: 0.55rem; /* Smaller description font size */
    color: rgba(255, 255, 255, 0.45); /* Softer white for better contrast hierarchy */
    line-height: 1.3;
    max-width: 85px; /* Restrict width for precise text wrapping */
    margin: 0 auto;
}

/* Trending This Week Section */
.trending-section {
    padding: 25px 0 15px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 4px;
}

.section-header .section-title {
    margin-bottom: 0;
}

.see-all-link {
    color: var(--blue-neon);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2px;
    transition: var(--transition);
}

.see-all-link:hover {
    color: var(--text-white);
}

.icon-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.see-all-link:hover .icon-arrow {
    transform: translateX(2px);
}

/* Movie Grid Container (Mobile tiled 2-column grid, PC tiled 4-column grid) */
.movie-scroll-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns flat-tiled on mobile */
    gap: 16px;
    padding: 5px 4px;
}

.movie-scroll-container::-webkit-scrollbar {
    display: none; /* Safely kept */
}

.movie-scroll-container + .movie-scroll-container {
    margin-top: 16px;
}

.movie-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
}

.movie-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: var(--card-shadow);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 135%; /* Poster Aspect Ratio */
    overflow: hidden;
    background-color: #02040a;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-card:hover .card-image {
    transform: scale(1.06);
}

.card-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 10;
}

.badge-movie { background-color: var(--gold); color: var(--text-dark); }
.badge-tv { background-color: #8b5cf6; color: var(--text-white); }
.badge-sports { background-color: #10b981; color: var(--text-white); }
.badge-kids { background-color: #3b82f6; color: var(--text-white); }

.card-info {
    padding: 8px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-metadata {
    font-size: 0.6rem;
    color: var(--text-gray);
}

/* Made For Africa (1:1 Mobile layout: 6 columns in a single row) */
.made-for-africa {
    padding: 25px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columns side by side on mobile */
    gap: 6px;
    margin-top: 20px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tech-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(9, 18, 44, 0.6);
    border: 2px solid transparent;
    margin-bottom: 8px;
    transition: var(--transition);
}

.tech-item:hover .tech-icon-circle {
    transform: scale(1.08) rotate(3deg);
}

.tech-icon {
    width: 18px;
    height: 18px;
}

.tech-label {
    font-size: 0.58rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-white);
    white-space: nowrap;
}

/* Colors and Glows for Tech Circular Icons */
.border-blue { border-color: var(--blue-neon); }
.glow-blue { box-shadow: 0 0 10px rgba(0, 187, 255, 0.2); }
.color-blue { color: var(--blue-neon); }

.border-green { border-color: #10b981; }
.glow-green { box-shadow: 0 0 10px rgba(16, 185, 129, 0.2); }
.color-green { color: #10b981; }

.border-gold { border-color: var(--gold); }
.glow-gold { box-shadow: 0 0 10px rgba(255, 187, 0, 0.2); }
.color-gold { color: var(--gold); }

.border-purple { border-color: #8b5cf6; }
.glow-purple { box-shadow: 0 0 10px rgba(139, 92, 246, 0.2); }
.color-purple { color: #8b5cf6; }

.border-cyan { border-color: #06b6d4; }
.glow-cyan { box-shadow: 0 0 10px rgba(6, 182, 212, 0.2); }
.color-cyan { color: #06b6d4; }

/* Banner Section */
.banner-section {
    padding: 20px 0 40px;
}

.banner-card {
    position: relative;
    background: linear-gradient(135deg, #09122c 0%, #030612 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    padding: 30px 16px 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.banner-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(0, 187, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.banner-text {
    text-align: center;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.banner-description {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 6px;
    padding: 0 10px;
}

.banner-highlight {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.banner-text .btn-download-app {
    width: 100%;
    max-width: 240px;
}

/* Smartphone Mockup */
.banner-mockup {
    width: 190px;
    margin-top: 5px;
    perspective: 1000px;
    z-index: 10;
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 320px;
    background: #000;
    border: 5px solid #1c1c1c;
    border-radius: 28px 28px 0 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 0 8px rgba(255,255,255,0.05);
    overflow: hidden;
    transform: rotate(-10deg) translateY(20px) scale(1.05);
    transform-origin: bottom center;
    border-bottom: none;
    transition: var(--transition);
}

.banner-card:hover .phone-frame {
    transform: rotate(-5deg) translateY(10px) scale(1.08);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 12px;
    background: #000;
    border-radius: 0 0 10px 10px;
    z-index: 100;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    font-family: var(--font-primary);
    overflow-y: auto;
    padding-top: 14px; /* below notch */
    scrollbar-width: none;
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

/* Mock App UI inside Phone */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px 4px;
}

.app-logo {
    font-size: 0.55rem;
    font-weight: 800;
    color: white;
}

.app-header-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.app-icon {
    width: 10px;
    height: 10px;
    color: var(--text-gray);
}

.app-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 10px;
    height: 6px;
}

.app-hamburger span {
    width: 100%;
    height: 1px;
    background-color: var(--text-white);
    border-radius: 1px;
}

.app-nav {
    display: flex;
    gap: 8px;
    padding: 4px 10px;
    font-size: 0.4rem;
    font-weight: 700;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.app-nav span.active {
    color: var(--blue-neon);
    border-bottom: 1px solid var(--blue-neon);
    padding-bottom: 1px;
}

.app-hero {
    height: 80px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 6px 8px;
    border-radius: 6px;
}

.app-hero-meta {
    position: absolute;
    bottom: 5px;
    left: 6px;
}

.app-badge {
    font-size: 0.3rem;
    background: var(--gold);
    color: black;
    padding: 1px 3px;
    border-radius: 2px;
    font-weight: 800;
}

.app-hero-meta h4 {
    font-size: 0.48rem;
    font-weight: 800;
    margin-top: 1px;
    color: white;
}

.app-section {
    padding: 0 8px 8px;
}

.app-section h5 {
    font-size: 0.45rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-white);
}

.app-horizontal-list {
    display: flex;
    gap: 5px;
}

.app-card {
    flex: 0 0 44px;
    height: 60px;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
    border: 0.5px solid rgba(255,255,255,0.1);
}

/* Footer Style */
.footer {
    background-color: #020409;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 25px 16px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.logo-icon-small {
    width: 28px;
    height: 28px;
    margin-right: 6px;
}

.footer-logo-text {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.blue-text-logo {
    color: var(--blue-neon);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}


/* Media Queries for Responsiveness (Tablet & Desktop) */

@media (min-width: 768px) {
    .section-container {
        padding: 40px 24px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Hero */
    .hero-section {
        padding: 60px 24px 40px;
    }
    
    .hero-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }
    
    .hero-info {
        text-align: left;
        flex: 1.2;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .free-badge-text {
        font-size: 4.2rem;
    }
    
    .hero-description {
        margin: 0 0 35px;
    }
    
    .hero-buttons {
        flex-direction: row;
        max-width: none;
        margin: 0;
    }
    
    .hero-buttons .btn {
        width: auto;
    }
    
    .hero-showcase {
        flex: 0.8;
        max-width: 380px;
    }
    
    /* Features */
    .features-section {
        padding: 30px 0;
    }
    
    .features-grid {
        padding: 32px 16px;
    }
    
    .feature-card {
        padding: 10px 8px;
        gap: 16px;
    }
    
    .feature-icon {
        width: 44px; /* Larger icons on tablet */
        height: 44px;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.72rem;
        max-width: 140px;
    }
    
    /* Movie scroll grid (displays all as normal grid on desktop) */
    .movie-scroll-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .movie-card {
        flex: none;
    }
    
    .card-title {
        font-size: 0.85rem;
    }
    
    .card-metadata {
        font-size: 0.7rem;
    }
    
    /* Made for Africa */
    .tech-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
    }
    
    .tech-icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .tech-label {
        font-size: 0.75rem;
    }
    
    /* Banner */
    .banner-card {
        padding: 40px 40px 0;
    }
    
    .banner-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 40px;
    }
    
    .banner-text {
        text-align: left;
        flex: 1.2;
        padding-bottom: 40px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-description {
        font-size: 1rem;
        padding: 0;
    }
    
    .banner-highlight {
        font-size: 1.15rem;
    }
    
    .banner-text .btn-download-app {
        max-width: 220px;
    }
    
    .banner-mockup {
        flex: 0.8;
        width: 210px;
        margin-top: 0;
    }
    
    .phone-frame {
        height: 350px;
    }
    
    /* Footer */
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 15px 20px;
        display: grid;
        grid-template-columns: 1fr auto 1fr; /* Centers nav-drawer perfectly using symmetric outer columns */
        align-items: center;
    }
    
    .logo {
        justify-self: start;
    }
    
    .menu-toggle {
        display: none; /* Hide hamburger menu icon on desktop */
    }
    
    .nav-drawer {
        position: static;
        background: none;
        backdrop-filter: none;
        border: none;
        padding: 0;
        width: auto;
        transform: none;
        opacity: 1;
        display: block !important;
        justify-self: center; /* Centers menu container */
    }
    
    .nav-links {
        flex-direction: row;
        gap: 24px; /* Reduced gap to fit comfortably on smaller desktop screens without wrapping */
        justify-content: center; /* Centers menu items inside container */
    }
    
    .nav-links a.download-nav-btn {
        margin-top: 0;
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .header-actions {
        justify-self: end;
        display: flex;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .free-badge-text {
        font-size: 4.8rem;
    }
    
    .hero-showcase {
        max-width: 440px;
        flex: 1;
    }
    
    .features-grid {
        padding: 40px 24px;
    }
    
    .feature-card {
        padding: 12px 10px;
        gap: 18px;
    }
    
    .feature-icon {
        width: 48px; /* Larger icons on desktop */
        height: 48px;
    }
    
    .feature-content h3 {
        font-size: 1.05rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
        max-width: 160px;
    }
    
    .tech-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .tech-label {
        font-size: 0.85rem;
    }
    
    .banner-title {
        font-size: 2.2rem;
    }
    
    .banner-mockup {
        width: 230px;
    }
    
    .phone-frame {
        height: 380px;
    }
}
