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

:root {
    --primary-black: #000000;
    --secondary-black: #111111;
    --tertiary-black: #1a1a1a;
    --golden-yellow: #FFD700;
    --golden-yellow-light: #FFE55C;
    --golden-yellow-dark: #B8860B;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --gradient-primary: linear-gradient(135deg, var(--golden-yellow) 0%, var(--golden-yellow-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--primary-black);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-800);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--golden-yellow);
}

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

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--golden-yellow);
}

.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%;
}

.download-btn {
    background: var(--gradient-primary);
    color: var(--primary-black) !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.download-btn::after {
    display: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.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(--gray-300);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

.btn-secondary:hover {
    border-color: var(--golden-yellow);
    color: var(--golden-yellow);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--golden-yellow);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-screenshots {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    perspective: 1000px;
}

.screenshot-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.app-screenshot {
    width: 350px;
    height: auto;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s ease;
    border: 3px solid var(--gray-800);
    transform-style: preserve-3d;
}

.screenshot-1 {
    position: relative;
    z-index: 2;
    transform: rotateY(-40deg) rotateX(10deg);
    animation: floatLeft 3s ease-in-out infinite;
}

.screenshot-2 {
    position: relative;
    z-index: 1;
    transform: rotateY(40deg) rotateX(-10deg) translateX(-50px);
    animation: floatRight 3s ease-in-out infinite 0.5s;
}

.screenshot-1:hover {
    transform: rotateY(-20deg) rotateX(5deg) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(255, 215, 0, 0.4);
    border-color: var(--golden-yellow);
}

.screenshot-2:hover {
    transform: rotateY(20deg) rotateX(-5deg) scale(1.05) translateX(-30px);
    box-shadow: 0 25px 50px -12px rgba(255, 215, 0, 0.4);
    border-color: var(--golden-yellow);
}

.screenshot-label {
    color: var(--golden-yellow);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    background: var(--tertiary-black);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--gray-700);
    opacity: 0.9;
    backdrop-filter: blur(10px);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gray-600);
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--secondary-black);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-800);
}

.app-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.app-nav span {
    font-weight: 600;
}

.app-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.featured-movie {
    margin-bottom: 30px;
}

.movie-poster {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 12px;
    margin-bottom: 15px;
    position: relative;
}

.movie-poster::after {
    content: '🎬';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
}

.movie-info h3 {
    color: var(--white);
    margin-bottom: 5px;
}

.movie-info p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--golden-yellow);
}

.recommendations h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.movie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.movie-card {
    height: 80px;
    background: var(--gray-800);
    border-radius: 8px;
    position: relative;
}

.movie-card::after {
    content: '📺';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
}

/* Search Section */
.search-section {
    padding: 100px 0;
    background: var(--primary-black);
    border-top: 1px solid var(--gray-800);
}

.search-header {
    text-align: center;
    margin-bottom: 60px;
}

.search-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.search-header p {
    font-size: 1.2rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

.search-container {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
}

.search-box {
    display: flex;
    background: var(--tertiary-black);
    border: 2px solid var(--gray-700);
    border-radius: 50px;
    padding: 15px 25px;
    transition: all 0.3s ease;
    position: relative;
}

.search-box:focus-within {
    border-color: var(--golden-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 1.1rem;
    padding: 0 15px;
}

.search-box input::placeholder {
    color: var(--gray-400);
}

.search-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-black);
    font-size: 1.2rem;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--tertiary-black);
    border: 1px solid var(--gray-700);
    border-radius: 15px;
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.suggestion-item {
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid var(--gray-800);
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.suggestion-item:hover {
    background: var(--gray-800);
}

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

.suggestion-poster {
    width: 40px;
    height: 60px;
    background: var(--gray-700);
    border-radius: 5px;
    flex-shrink: 0;
}

.suggestion-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.suggestion-info p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.search-results {
    max-width: 1200px;
    margin: 0 auto;
}

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

.movie-card {
    background: var(--tertiary-black);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-800);
    cursor: pointer;
    position: relative;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--golden-yellow);
}

.movie-poster {
    width: 100%;
    height: 400px;
    background: var(--gray-700);
    position: relative;
    overflow: hidden;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-poster .no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray-400);
    font-size: 2rem;
    text-align: center;
    padding: 20px;
    background: var(--gray-800);
}

.movie-poster .no-image i {
    margin-bottom: 10px;
    color: var(--golden-yellow);
}

.movie-poster .no-image span {
    font-size: 0.8rem;
    color: var(--gray-300);
}

.movie-info {
    padding: 20px;
}

.movie-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.movie-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.movie-year {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.movie-type {
    background: var(--golden-yellow);
    color: var(--primary-black);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.movie-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--golden-yellow);
    font-size: 0.9rem;
}

.movie-overview {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-actions {
    display: flex;
    gap: 10px;
}

.btn-watch {
    background: var(--gradient-primary);
    color: var(--primary-black);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-watch:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-favorite {
    background: transparent;
    color: var(--gray-400);
    border: 2px solid var(--gray-600);
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-favorite:hover {
    color: var(--golden-yellow);
    border-color: var(--golden-yellow);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-400);
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--gray-600);
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

/* Trending Section */
.trending-section {
    padding: 100px 0;
    background: var(--secondary-black);
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.trending-item {
    background: var(--tertiary-black);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-800);
    position: relative;
}

.trending-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--golden-yellow);
}

.trending-rank {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: var(--primary-black);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
}

.trending-poster {
    width: 100%;
    height: 350px;
    background: var(--gray-700);
    position: relative;
    overflow: hidden;
}

.trending-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-poster .no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray-400);
    font-size: 2.5rem;
}

.trending-info {
    padding: 20px;
}

.trending-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.trending-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.trending-year {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.trending-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--golden-yellow);
    font-size: 0.9rem;
}

.loading-trending {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-400);
}

.loading-trending .loading {
    margin: 0 auto 20px;
}

.loading-trending i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--golden-yellow);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--primary-black);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-300);
    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(--tertiary-black);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-800);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--golden-yellow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-black);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card p {
    color: var(--gray-300);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--primary-black);
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 30px;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.step-content p {
    color: var(--gray-300);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--secondary-black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--tertiary-black);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 1px solid var(--gray-800);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--golden-yellow);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    color: var(--golden-yellow);
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--golden-yellow);
    margin: 0 5px;
}

.period {
    font-size: 1rem;
    color: var(--gray-400);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--gray-300);
}

.pricing-features i {
    color: var(--golden-yellow);
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gray-600);
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-outline:hover {
    border-color: var(--golden-yellow);
    color: var(--golden-yellow);
}

/* Download Section */
.download {
    padding: 100px 0;
    background: var(--gradient-secondary);
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.download-content p {
    font-size: 1.2rem;
    color: var(--gray-300);
    margin-bottom: 40px;
}

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

.btn-primary.large {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: var(--gradient-primary);
    color: var(--primary-black);
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary.large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.btn-primary.large i {
    font-size: 2rem;
}

.btn-primary.large div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-primary.large span {
    font-size: 0.9rem;
    font-weight: 400;
}

.btn-primary.large strong {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 60px 0 20px;
    border-top: 1px solid var(--gray-800);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--golden-yellow);
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-section p {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--golden-yellow);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: var(--golden-yellow);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-400);
}

/* Loading States */
.loading-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-400);
}

.loading-results .loading {
    margin: 0 auto 20px;
}

.results-header {
    text-align: center;
    margin-bottom: 30px;
}

.results-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.results-header p {
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .app-screenshots {
        height: 400px;
        perspective: 800px;
    }
    
    .app-screenshot {
        width: 280px;
    }
    
    .screenshot-1 {
        transform: rotateY(-30deg) rotateX(5deg);
    }
    
    .screenshot-2 {
        transform: rotateY(30deg) rotateX(-5deg) translateX(-30px);
    }
    
    .screenshot-1:hover {
        transform: rotateY(-15deg) rotateX(2deg) scale(1.03);
    }
    
    .screenshot-2:hover {
        transform: rotateY(15deg) rotateX(-2deg) scale(1.03) translateX(-20px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .search-header h2 {
        font-size: 2rem;
    }
    
    .search-box {
        padding: 12px 20px;
    }
    
    .search-box input {
        font-size: 1rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .trending-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .download-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .pricing-card {
        padding: 30px 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);
    }
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-visual {
    animation: fadeInRight 1s ease-out;
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

.step {
    animation: fadeInUp 0.6s ease-out;
}

.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--golden-yellow);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatLeft {
    0%, 100% {
        transform: rotateY(-40deg) rotateX(10deg) translateY(0px);
    }
    50% {
        transform: rotateY(-40deg) rotateX(10deg) translateY(-10px);
    }
}

@keyframes floatRight {
    0%, 100% {
        transform: rotateY(40deg) rotateX(-10deg) translateX(-50px) translateY(0px);
    }
    50% {
        transform: rotateY(40deg) rotateX(-10deg) translateX(-50px) translateY(-10px);
    }
}

/* Movie Details Modal */
.movie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.movie-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--tertiary-black);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--gray-800);
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gray-800);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--golden-yellow);
    color: var(--primary-black);
}

.modal-body {
    padding: 40px;
}

.movie-details {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.movie-poster-large {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: var(--gray-700);
}

.movie-poster-large img {
    width: 100%;
    height: auto;
    display: block;
}

.movie-poster-large .no-image {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 4rem;
}

.movie-info-details h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.movie-meta-details {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.movie-year-details {
    color: var(--gray-400);
    font-size: 1.1rem;
}

.movie-rating-details {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--golden-yellow);
    font-size: 1.1rem;
    font-weight: 600;
}

.movie-runtime {
    color: var(--gray-300);
    font-size: 1rem;
}

.movie-genres {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.genre-tag {
    background: var(--gray-800);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--gray-700);
}

.movie-overview-details {
    color: var(--gray-300);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.movie-actions-details {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-watch-details {
    background: var(--gradient-primary);
    color: var(--primary-black);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-watch-details:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-favorite-details {
    background: transparent;
    color: var(--gray-400);
    border: 2px solid var(--gray-600);
    padding: 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-favorite-details:hover {
    color: var(--golden-yellow);
    border-color: var(--golden-yellow);
}

.movie-cast {
    margin-top: 30px;
}

.movie-cast h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
}

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

.cast-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gray-700);
    margin: 0 auto 10px;
    overflow: hidden;
}

.cast-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cast-name {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.cast-character {
    color: var(--gray-400);
    font-size: 0.8rem;
}

.btn-secondary.large {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gray-600);
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary.large:hover {
    border-color: var(--golden-yellow);
    color: var(--golden-yellow);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary.large i {
    font-size: 2rem;
}

.btn-secondary.large div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-secondary.large span {
    font-size: 0.9rem;
    font-weight: 400;
}

.btn-secondary.large strong {
    font-size: 1.2rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .movie-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .movie-poster-large {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .movie-info-details h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .movie-meta-details {
        justify-content: center;
    }
    
    .movie-actions-details {
        justify-content: center;
    }
    
    .cast-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .modal-body {
        padding: 30px 20px;
    }
}

.loading-details, .error-details {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-400);
}

.loading-details .loading {
    margin: 0 auto 20px;
}

.error-details i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--golden-yellow);
}

.error-details h3 {
    color: var(--white);
    margin-bottom: 10px;
}
