/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #08c076;
    --primary-dark: #069a5d;
    --primary-light: #0ae885;
    --text-dark: #ffffff;
    --text-light: #b3b3b3;
    --text-white: #ffffff;
    --text-muted: #888888;
    --bg-dark: #1a1a1a;
    --bg-darker: #181818;
    --bg-light: #2a2a2a;
    --bg-card: #242424;
    --border-color: #333333;
    --shadow-light: rgba(8, 192, 118, 0.1);
    --shadow-medium: rgba(8, 192, 118, 0.2);
    --shadow-heavy: rgba(8, 192, 118, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, #08c076, #0ae885);
    --gradient-secondary: linear-gradient(135deg, #08c076, #069a5d);
    --gradient-dark: linear-gradient(135deg, #1a1a1a, #242424);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--shadow-light);
    }
    50% {
        box-shadow: 0 0 40px var(--shadow-medium);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    padding: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #181818;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    animation: fadeInLeft 1s ease;
    text-align: left;
}

.hero-logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.hero-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 60px;
    align-items: center;
    justify-content: center;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--bg-card);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-dark);
    border: 1px solid var(--border-color);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.download-btn i {
    font-size: 1.5rem;
}

.download-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.download-btn strong {
    font-size: 1rem;
    font-weight: 600;
}

.ios-btn {
    background: var(--bg-card);
}

.android-btn {
    background: var(--primary-color);
}

.android-btn:hover {
    background: var(--primary-dark);
}

/* Phone Mockup */
.hero-phone {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--bg-darker);
    border-radius: 35px;
    padding: 8px;
    box-shadow: 0 20px 60px var(--shadow-dark);
    animation: float 3s ease-in-out infinite;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 40px;
    z-index: -1;
    animation: glow 2s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border-radius: 27px;
    overflow: hidden;
}

.app-interface {
    height: 100%;
    background: var(--gradient-dark);
    position: relative;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px 10px;
    background: rgba(36, 36, 36, 0.9);
    backdrop-filter: blur(10px);
    color: var(--text-white);
}

.time {
    font-weight: 600;
    font-size: 0.9rem;
}

.indicators {
    display: flex;
    gap: 5px;
    font-size: 0.8rem;
}

.app-content {
    padding: 20px;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 0 8px;
}

.app-logo {
    height: 40px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    padding: 8px;
}

.app-header h3 {
    font-size: 1.2rem;
    color: var(--text-white);
}

.movie-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.movie-card {
    height: 120px;
    border-radius: 12px;
    background: var(--gradient-primary);
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}
.center-text {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
}
.card-1 {
    animation-delay: 0s;
}

.card-2 {
    animation-delay: 0.5s;
    opacity: 0.6;
}

.card-3 {
    animation-delay: 1s;
    opacity: 0.4;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 4s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.element-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-dark);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-light);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-white);
    font-size: 1.5rem;
    box-shadow: 0 8px 20px var(--shadow-medium);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Download Section */
.download-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 10s linear infinite;
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.download-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.download-btn-large {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: var(--bg-card);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--shadow-dark);
    border: 1px solid var(--border-color);
}

.download-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--shadow-dark);
}

.download-btn-large i {
    font-size: 2rem;
}

.download-btn-large div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn-large small {
    font-size: 0.9rem;
    opacity: 0.7;
}

.download-btn-large strong {
    font-size: 1.2rem;
    font-weight: 600;
}

.download-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #08c076;
}

.footer-bottom {
    text-align: center;
    /* Remove any border-top, margin-top, or padding-top that creates separation */
}

.footer-bottom p {
    color: #999;
    font-size: 13px;
    margin: 0;
    /* Remove any borders or separators */
    border: none;
    padding: 0;
}

/* Remove any hr elements or pseudo-elements that might be creating lines */
.footer-bottom::before,
.footer-content::after {
    display: none;
}
/* Responsive Design */
@media (min-width: 884px) {
    .phone-mockup {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-logo-container {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-stats {
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .download-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .download-section {
        padding: 60px 0;
    }
}
