/* MonkeyStream Landing Page Styles */
/* Modern, responsive design with deep purple, electric blue, and neon accents */

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow-x: hidden;
}

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

/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(359deg, rgb(20 21 42) 0%, rgb(36 25 57) 20%, rgba(220, 38, 127, 0.7) 40%, rgba(255, 0, 21, 0.8) 60%, rgba(139, 0, 14, 0.9) 80%, rgba(13, 25, 43, 0.95) 100%), url(img/background-collage.jp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(1px);
    animation: gradientShift 10s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
        filter: blur(1px) hue-rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        filter: blur(2px) hue-rotate(30deg);
    }
    100% {
        background-position: 0% 50%;
        filter: blur(1px) hue-rotate(0deg);
    }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    gap: 3rem;
    z-index: 2;
    position: relative;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    z-index: 2;
    max-width: 100%;
    text-align: left;
}

.video-container {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 21, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.video-container:hover {
    transform: scale(1.02);
    border-color: rgba(255, 0, 21, 0.8);
    box-shadow: 0 15px 40px rgba(255, 0, 21, 0.3);
}

.promo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 0, 21, 0.3));
}

.promo-video::-webkit-media-controls-panel {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 0, 21, 0.5));
}

.promo-video::-webkit-media-controls-play-button,
.promo-video::-webkit-media-controls-volume-slider,
.promo-video::-webkit-media-controls-timeline {
    filter: brightness(1.2) saturate(1.5);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.logo-placeholder i {
    font-size: 3rem;
    color: #ff0015;
    text-shadow: 0 0 20px rgba(255, 0, 21, 0.8);
}

.hero-title-new {
    font-size: 2.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    white-space: nowrap;
    overflow: hidden;
    background: linear-gradient(45deg, #ffffff, #ff0015, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: minimalistGlow 3s ease-in-out infinite, subtleWave 5s linear infinite;
    letter-spacing: 2px;
    position: relative;
    transform-origin: center;
}

@keyframes minimalistGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(255, 0, 21, 0.4));
        transform: scale(1.01);
    }
}

@keyframes subtleWave {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.button-center {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button-enhanced {
    background: linear-gradient(45deg, #ff0015, #dc2626, #ff0015);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 20px 45px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 21, 0.5), 0 0 20px rgba(255, 0, 21, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2s infinite;
}

.cta-button-enhanced:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 21, 0.7), 0 0 30px rgba(255, 0, 21, 0.5);
    background-position: 100% 0;
}

.button-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.button-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button-enhanced:active .button-ripple {
    width: 300px;
    height: 300px;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 0, 21, 0.5), 0 0 20px rgba(255, 0, 21, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 0, 21, 0.7), 0 0 30px rgba(255, 0, 21, 0.5);
    }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 21, 0.6);
    background: linear-gradient(45deg, #dc2626, #b91c1c);
}

/* Movie Carousel Section */
.carousel-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.carousel-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 600;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
}

.carousel:active {
    cursor: grabbing;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.poster-card {
    position: relative;
    min-width: 280px;
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.poster-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 21, 0.4);
}

.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Poster overlay removed as requested */

.carousel-btn {
    background: linear-gradient(45deg, #ff0015, #dc2626);
    border: none;
    width: 120px;
    height: 40px;
    border-radius: 20px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 21, 0.4);
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 21, 0.6);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 0, 21, 0.1), rgba(220, 38, 127, 0.1));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 21, 0.3);
    background: linear-gradient(135deg, rgba(255, 0, 21, 0.2), rgba(220, 38, 127, 0.2));
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #ff0015, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 0, 21, 0.4);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Membership Plans Section */
.plans {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.plans h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 600;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.plan-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 21, 0.3);
}

.plan-card.popular {
    border: 2px solid #ff0015;
    background: linear-gradient(135deg, rgba(255, 0, 21, 0.1), rgba(255, 0, 21, 0.05));
}

.plan-card.best-value {
    border: 2px solid #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
}

.popular-badge, .best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.popular-badge {
    background: linear-gradient(45deg, #ff0015, #dc2626);
}

.best-value-badge {
    background: linear-gradient(45deg, #10b981, #059669);
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #ff0015;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 21, 0.5);
}

.savings {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.plan-benefits {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.plan-benefits li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-benefits i {
    color: #10b981;
    font-size: 1.1rem;
}

.subscribe-btn {
    width: 100%;
    background: linear-gradient(45deg, #ff0015, #dc2626);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 0, 21, 0.4);
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 0, 21, 0.6);
}

/* Download Section Below Carousel */
.download-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 21, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 21, 0.3);
}

.download-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: textFloat 3s ease-in-out infinite;
}

.cta-button-secondary {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8, #3b82f6);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4), 0 0 15px rgba(59, 130, 246, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: secondaryButtonGlow 2.5s infinite;
}

.cta-button-secondary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6), 0 0 25px rgba(59, 130, 246, 0.5);
    background-position: 100% 0;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: glowSweep 3s infinite;
}

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

@keyframes secondaryButtonGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4), 0 0 15px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6), 0 0 25px rgba(59, 130, 246, 0.5);
    }
}

@keyframes glowSweep {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 600;
}

.reviews-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover, .tab-btn.active {
    background: linear-gradient(45deg, #ff0015, #dc2626);
    transform: scale(1.1);
}

.review-content {
    position: relative;
    min-height: 200px;
}

.review-card {
    display: none;
    background: linear-gradient(135deg, rgba(255, 0, 21, 0.1), rgba(220, 38, 127, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.review-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    color: #ffffff;
    font-weight: 600;
}

.stars {
    color: #fbbf24;
}

.review-card p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 600;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: #ffffff;
    font-weight: 500;
}

.faq-question:hover {
    background: rgba(255, 0, 21, 0.1);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #ff0015;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-logo i {
    color: #ff0015;
    text-shadow: 0 0 10px rgba(255, 0, 21, 0.5);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .poster-card {
        min-width: 300px;
        height: 450px;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .plans-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .poster-card {
        min-width: 280px;
        height: 420px;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .plans-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero-container {
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .video-container {
        max-width: 400px;
    }
    
    .hero-title-new {
        font-size: 2.8rem;
        white-space: normal;
        line-height: 1.2;
    }
    
    .cta-button-enhanced {
        padding: 18px 35px;
        font-size: 1.2rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .poster-card {
        min-width: 220px;
        height: 330px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .tab-buttons {
        gap: 8px;
    }
    
    .tab-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    section {
        padding: 70px 0;
    }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .hero {
        height: auto;
        min-height: 60vh;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 1;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .video-container {
        max-width: 350px;
    }
    
    .hero-title-new {
        font-size: 2.4rem;
        white-space: normal;
        line-height: 1.3;
        letter-spacing: 2px;
    }
    
    .cta-button-enhanced {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .download-section {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .download-text {
        font-size: 1.3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .logo-placeholder {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .logo-placeholder i {
        font-size: 2.5rem;
    }
    
    .carousel-btn {
        width: 120px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .poster-card {
        min-width: 180px;
        height: 270px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .tab-buttons {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tab-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: auto;
        min-height: 70vh;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
        text-align: center;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 1;
        justify-content: center;
    }
    
    .hero-content {
        padding: 0;
        text-align: center;
    }
    
    .video-container {
        max-width: 300px;
    }
    
    .hero-title-new {
        font-size: 2rem;
        white-space: normal;
        line-height: 1.4;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
    }
    
    .cta-button-enhanced {
        padding: 15px 28px;
        font-size: 1rem;
    }
    
    .download-section {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }
    
    .download-text {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .cta-button-secondary {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .logo-placeholder {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        gap: 10px;
    }
    
    .logo-placeholder i {
        font-size: 2rem;
    }
    
    .carousel-container {
        position: relative;
    }
    
    .carousel-btn {
        width: 95px;
        height: 25px;
        font-size: 1rem;
    }
    
    .carousel {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .poster-card {
        min-width: 90%;
        max-width: 280px;
        height: 420px;
        margin: 0 auto;
        flex-shrink: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .feature-card i {
        font-size: 2.5rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .plan-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .tab-buttons {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 10px;
    }
    
    .tab-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        margin: 2px;
    }
    
    .review-card {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .footer-content {
        padding: 0 15px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .hero-title-new {
        font-size: 1.8rem;
    }
    
    .cta-button-enhanced {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .download-text {
        font-size: 1rem;
    }
    
    .cta-button-secondary {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .poster-card {
        min-width: 120px;
        height: 180px;
    }
    
    .tab-btn {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff0015, #dc2626);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
}
