/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* CSS Variables for consistent theming */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #1a1a1a;
    --accent-color: #ffd700;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-dark: #333333;
    --background-dark: #0a0a0a;
    --background-card: #1f1f1f;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.4);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-container h1 a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ff6b35" stop-opacity="0.1"/><stop offset="100%" stop-color="%23000" stop-opacity="0.8"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, rgba(0, 0, 0, 0.8) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.rating-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.rating-badge {
    background: var(--background-card);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.rating-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.rating-badge.imdb {
    border-left: 4px solid #f5c518;
}

.rating-badge.rt {
    border-left: 4px solid #fa320a;
}

.rating-badge.google {
    border-left: 4px solid #4285f4;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Movie Overview Section */
.movie-overview {
    background: var(--gradient-dark);
}

.movie-info-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.movie-poster {
    position: relative;
}

.movie-poster img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.movie-poster img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.movie-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.movie-facts {
    list-style: none;
    margin-bottom: 2rem;
}

.movie-facts li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.movie-facts strong {
    color: var(--accent-color);
    font-weight: 600;
}

.movie-details p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Cast Section */
.cast-section {
    background: var(--background-dark);
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cast-member {
    background: var(--background-card);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cast-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.cast-image {
    margin-bottom: 1rem;
}

.placeholder-image {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto;
    color: white;
}

.cast-member h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.cast-member p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Box Office Section */
.box-office-section {
    background: var(--gradient-dark);
}

.box-office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.collection-card {
    background: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.collection-card.total {
    background: linear-gradient(135deg, var(--primary-color), #f7931e);
    color: white;
}

.collection-card.budget {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.collection-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.collection-card.total h3,
.collection-card.budget h3 {
    color: rgba(255, 255, 255, 0.9);
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.collection-card.total .amount,
.collection-card.budget .amount {
    color: white;
}

/* OTT Section */
.ott-section {
    background: var(--background-dark);
}

.ott-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.ott-card {
    background: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ott-date {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.platform-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.platform {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.platform:hover {
    transform: scale(1.05);
}

/* Reviews Section */
.reviews-section {
    background: var(--gradient-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.rating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.post-credit-info {
    background: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--primary-color);
}

.post-credit-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Additional Info Section */
.additional-info {
    background: var(--background-dark);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--background-card);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--secondary-color);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .rating-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .movie-info-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ott-info {
        grid-template-columns: 1fr;
    }
    
    .cast-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .box-office-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .cast-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff8c5a;
}

/* Download Button Styles */
.download-section {
    margin-top: 2rem;
}

.download-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #ff8c5a 0%, #ffb347 100%);
}

.download-icon {
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-hover);
    text-align: center;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.popup-close:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.popup-header h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.popup-header p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Countdown Styles */
.countdown-section {
    margin: 2rem 0;
}

.countdown-circle {
    width: 100px;
    height: 100px;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.countdown-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, var(--accent-color) 0deg, transparent 360deg);
    border-radius: 50%;
    animation: countdown-fill 10s linear;
}

@keyframes countdown-fill {
    from {
        background: conic-gradient(from 0deg, var(--accent-color) 0deg, transparent 0deg);
    }
    to {
        background: conic-gradient(from 0deg, var(--accent-color) 360deg, transparent 360deg);
    }
}

#countdownTimer {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    z-index: 2;
    position: relative;
}

.countdown-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

#countdownText {
    color: var(--primary-color);
    font-weight: 600;
}

/* Instagram Profile Section */
.instagram-profile-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1), rgba(131, 58, 180, 0.1));
    border-radius: var(--border-radius);
    border: 2px solid rgba(228, 64, 95, 0.3);
}

.instagram-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.instagram-profile-section h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.instagram-profile-section p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin: 1rem 0;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.instagram-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.instagram-icon {
    font-size: 1.2rem;
}

.download-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Profile Popup Styles */
.profile-popup {
    max-width: 400px;
}

.profile-header h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.profile-header p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.profile-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #E4405F, #C13584);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    margin: 1rem 0;
}

.profile-follow-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #ff4d6d, #d63384);
}

.profile-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Mobile Responsive for Popups */
@media (max-width: 768px) {
    .popup-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .download-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .countdown-circle {
        width: 80px;
        height: 80px;
    }
    
    #countdownTimer {
        font-size: 1.5rem;
    }
    
    .instagram-link,
    .profile-follow-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 1rem;
        width: 95%;
    }
    
    .popup-header h3 {
        font-size: 1.2rem;
    }
    
    .countdown-circle {
        width: 70px;
        height: 70px;
    }
    
    #countdownTimer {
        font-size: 1.2rem;
    }
}
/* Download Info Section */
.download-info-section {
    background: var(--gradient-dark);
    padding: 4rem 0;
}

.download-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.download-info-card {
    background: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.download-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.download-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.download-info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.download-info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SEO Enhancement Styles */
.seo-keywords {
    display: none;
    visibility: hidden;
}

/* Mobile Responsive for Download Info */
@media (max-width: 768px) {
    .download-info-grid {
        grid-template-columns: 1fr;
    }
    
    .download-info-card {
        padding: 1.5rem;
    }
}
/* Final Download Section */
.final-download-section {
    background: var(--gradient-primary);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}

.final-download-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.final-download-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.final-download-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.final-download-section .download-btn {
    background: white;
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    margin: 1rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid transparent;
}

.final-download-section .download-btn:hover {
    background: var(--background-dark);
    color: white;
    border-color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.download-note {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-top: 1rem !important;
    font-style: italic;
}

/* Mobile Responsive for Final Download */
@media (max-width: 768px) {
    .final-download-section {
        padding: 3rem 0;
    }
    
    .final-download-section h2 {
        font-size: 2rem;
    }
    
    .final-download-section p {
        font-size: 1rem;
    }
    
    .final-download-section .download-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .final-download-section h2 {
        font-size: 1.8rem;
    }
    
    .final-download-section .download-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
/* Jump to Download Button */
.jump-to-download {
    margin-top: 2rem;
    text-align: center;
}

.jump-download-btn {
    background: linear-gradient(135deg, var(--primary-color), #f7931e);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-card);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.jump-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.jump-download-btn:hover::before {
    left: 100%;
}

.jump-download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #ff8c5a, #ffb347);
}

.jump-icon {
    font-size: 1.2rem;
    animation: jumpBounce 2s infinite;
}

@keyframes jumpBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Pulse effect for jump button */
.jump-download-btn {
    animation: jumpPulse 3s infinite;
}

@keyframes jumpPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

/* Mobile Responsive for Jump Button */
@media (max-width: 768px) {
    .jump-download-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .jump-download-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}
/* Second Task Section */
.second-task-section {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1), rgba(131, 58, 180, 0.1));
    border-radius: var(--border-radius);
    border: 2px solid rgba(228, 64, 95, 0.3);
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.task-header h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.task-header p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.instagram-link-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.like-post-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    color: white;
    text-decoration: none;
    padding: 2rem 4rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.8rem;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(228, 64, 95, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 400px;
    text-align: center;
}

.like-post-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.like-post-btn:hover::before {
    left: 100%;
}

.like-post-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 25px 50px rgba(228, 64, 95, 0.6);
    background: linear-gradient(135deg, #ff4d6d, #d63384, #9c4dcc);
}

.like-icon {
    font-size: 2rem;
    animation: heartBeat 2s infinite;
}

@keyframes heartBeat {
    0%, 50%, 100% {
        transform: scale(1);
    }
    25%, 75% {
        transform: scale(1.2);
    }
}

.download-ready-section {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(56, 142, 60, 0.1));
    border-radius: var(--border-radius);
    border: 2px solid rgba(76, 175, 80, 0.3);
    animation: slideInUp 0.5s ease;
}

.download-ready-header h4 {
    color: #4CAF50;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.download-ready-header p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.final-download-button-section {
    margin-top: 1.5rem;
}

.final-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #4CAF50, #45a049, #388e3c);
    color: white;
    border: none;
    padding: 2rem 4rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.8rem;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 400px;
    position: relative;
    overflow: hidden;
}

.final-download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.final-download-button:hover::before {
    left: 100%;
}

.final-download-button:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 25px 50px rgba(76, 175, 80, 0.6);
    background: linear-gradient(135deg, #66bb6a, #4caf50, #43a047);
}

.download-icon-final {
    font-size: 2rem;
    animation: finalDownloadBounce 2s infinite;
}

@keyframes finalDownloadBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Pulse effect for final download button */
.final-download-button {
    animation: finalDownloadPulse 3s infinite;
}

@keyframes finalDownloadPulse {
    0% {
        box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4), 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4), 0 0 0 15px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4), 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Mobile Responsive for Download Ready Section */
@media (max-width: 768px) {
    .download-ready-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .final-download-button {
        padding: 1.5rem 2.5rem;
        font-size: 1.4rem;
        min-width: 300px;
        border-radius: 15px;
    }
    
    .download-icon-final {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .download-ready-header h4 {
        font-size: 1.2rem;
    }
    
    .download-ready-header p {
        font-size: 1rem;
    }
    
    .final-download-button {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
        min-width: 250px;
        letter-spacing: 1px;
    }
    
    .download-icon-final {
        font-size: 1.3rem;
    }
}

/* Mobile Responsive for Second Task */
@media (max-width: 768px) {
    .second-task-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .like-post-btn {
        padding: 1.5rem 2.5rem;
        font-size: 1.4rem;
        min-width: 300px;
        border-radius: 15px;
    }
    
    .like-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .task-header h4 {
        font-size: 1.1rem;
    }
    
    .like-post-btn {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
        min-width: 250px;
        letter-spacing: 1px;
    }
    
    .like-icon {
        font-size: 1.3rem;
    }
}