/**
 * Custom Modular Styles (custom.css)
 * 
 * Supplementary styling for GeneratePress Child theme cinema landing experience.
 */

/* Shimmer animation on load for demo cards */
@keyframes cinemaGlow {
    0% {
        box-shadow: 0 0 15px rgba(229, 9, 20, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(229, 9, 20, 0.45);
    }
    100% {
        box-shadow: 0 0 15px rgba(229, 9, 20, 0.2);
    }
}

.badge-pill {
    animation: cinemaGlow 3s infinite ease-in-out;
}

/* Glassmorphic border enhancement */
.movie-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: border-color var(--transition-smooth);
    pointer-events: none;
}

.movie-card:hover::after {
    border-color: rgba(229, 9, 20, 0.5);
}

/* Page link navigation blocks inside single/page */
.page-links {
    margin-top: 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-glass);
    color: var(--text-muted);
}

.page-links a {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    margin: 0 0.25rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    color: #fff;
}

.page-links a:hover {
    background: var(--accent-red);
}

/* ==========================================================================
   Flix4u STANDALONE LANDING PAGE DESIGN SYSTEM (100% MATCHING DESIGN)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Outfit:wght@700;800;900&display=swap');

/* Ensure no default theme navigation menu or old footer shows up on landing page */
body.Flix4u-landing-body .cinema-header,
body.Flix4u-landing-body .cinema-footer,
body.Flix4u-landing-body .site-header,
body.Flix4u-landing-body .site-footer {
    display: none !important;
}

body.Flix4u-landing-body {
    background-color: #050508 !important;
    color: #e5e7eb;
    font-family: 'Hind Siliguri', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.Flix4u-container {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 3.2rem 1.5rem 2rem 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 1. TOP LOGO & WELCOME TITLES */
.myflix-top-header {
    text-align: center;
    width: 100%;
    margin-bottom: 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.myflix-logo-wrapper {
    margin-bottom: 1.4rem;
}

.myflix-logo-text {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 3.3rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    position: relative;
    text-shadow: 
        0 0 10px rgba(229, 9, 20, 0.95),
        0 0 25px rgba(229, 9, 20, 0.75),
        0 0 45px rgba(229, 9, 20, 0.55),
        0 0 70px rgba(229, 9, 20, 0.35);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: myflixNeonPulse 3s infinite alternate ease-in-out;
}

.myflix-logo-text:hover {
    transform: scale(1.03);
}

@keyframes myflixNeonPulse {
    0% {
        text-shadow: 
            0 0 10px rgba(229, 9, 20, 0.85),
            0 0 20px rgba(229, 9, 20, 0.65),
            0 0 40px rgba(229, 9, 20, 0.45);
    }
    100% {
        text-shadow: 
            0 0 14px rgba(229, 9, 20, 1),
            0 0 32px rgba(229, 9, 20, 0.85),
            0 0 60px rgba(229, 9, 20, 0.65),
            0 0 85px rgba(229, 9, 20, 0.4);
    }
}

.myflix-welcome-title {
    font-size: 2.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.2rem 0;
    line-height: 1.35;
    letter-spacing: 0.5px;
}

.myflix-subtitle-guide {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffcc00;
    margin: 0;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 10px rgba(255, 204, 0, 0.25);
}

/* 2. TWO MAIN ACTION BUTTONS ROW */
.myflix-action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.myflix-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.85rem;
    background: linear-gradient(135deg, #e50914 0%, #cc0812 100%);
    color: #ffffff !important;
    font-family: 'Hind Siliguri', 'Inter', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.35);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.myflix-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.myflix-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(229, 9, 20, 0.55);
    background: linear-gradient(135deg, #f3121d 0%, #dc0b16 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.myflix-btn:hover::before {
    opacity: 1;
}

.myflix-btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* 3. BOOKMARK REMINDER PILL */
.myflix-bookmark-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background-color: #100f14;
    border: 1px solid rgba(229, 9, 20, 0.4);
    border-radius: 50px;
    padding: 0.7rem 1.6rem;
    margin-bottom: 2.2rem;
    max-width: 95%;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.myflix-bookmark-pill:hover {
    border-color: rgba(229, 9, 20, 0.7);
    box-shadow: 0 4px 22px rgba(229, 9, 20, 0.25);
}

.bookmark-icon {
    color: #e50914;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bookmark-text {
    font-size: 0.94rem;
    color: #d1d5db;
    line-height: 1.5;
}

.domain-highlight {
    color: #e50914;
    font-weight: 700;
    font-family: 'Outfit', 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

/* 4. TELEGRAM UPDATE ALERT CARD */
.myflix-telegram-card {
    width: 100%;
    background: linear-gradient(180deg, rgba(229, 9, 20, 0.12) 0%, rgba(18, 12, 16, 0.88) 100%);
    border: 1px solid rgba(229, 9, 20, 0.38);
    border-radius: 18px;
    padding: 2.2rem 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.telegram-icon-badge {
    width: 40px;
    height: 40px;
    background-color: #e50914;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 0 18px rgba(229, 9, 20, 0.6);
}

.telegram-description {
    font-size: 0.98rem;
    color: #e5e7eb;
    line-height: 1.65;
    max-width: 580px;
    margin: 0 auto 1.4rem auto;
}

.myflix-telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #e50914;
    color: #ffffff !important;
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    font-size: 0.96rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.myflix-telegram-btn:hover {
    background-color: #f6121d;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(229, 9, 20, 0.6);
}

.telegram-plane-icon {
    flex-shrink: 0;
}

/* 5. CONTENT CARDS STACK */
.myflix-cards-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.myflix-card {
    width: 100%;
    background-color: #131318;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 2.2rem 2.2rem;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    transition: border-color 0.3s ease, transform 0.3s ease;
    text-align: left;
}

.myflix-card:hover {
    border-color: rgba(229, 9, 20, 0.45);
    transform: translateY(-2px);
}

.card-top-tag {
    text-align: center;
    color: #ffd700;
    font-size: 0.96rem;
    font-weight: 700;
    margin-bottom: 1.4rem;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 8px rgba(255, 215, 0, 0.18);
}

.card-heading-english {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.1rem 0;
}

.card-paragraph-seo {
    color: #9da3b4;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
    word-break: break-word;
}

.card-intro-text {
    color: #b4b8c5;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.card-paragraph-stay {
    color: #9da3b4;
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

.text-white {
    color: #ffffff;
    font-weight: 700;
}

/* List Items inside Card 2 and Card 3 */
.myflix-list-block {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.list-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.list-item-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.list-item-text {
    font-size: 0.9rem;
    color: #9da3b4;
    margin: 0;
    line-height: 1.65;
}

/* 6. THREE FEATURE HIGHLIGHTS GRID */
.myflix-features-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 3.5rem;
}

.myflix-feature-badge {
    background-color: #15151b;
    border: 1px solid rgba(229, 9, 20, 0.28);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    transition: all 0.25s ease;
}

.myflix-feature-badge:hover {
    border-color: rgba(229, 9, 20, 0.65);
    transform: translateY(-3px);
    background-color: #1a1a22;
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.2);
}

.feature-badge-bottom {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.5rem);
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    background: #e50914;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(229, 9, 20, 0.45);
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

/* 7. BOTTOM SOCIAL ICONS & COPYRIGHT FOOTER */
.myflix-bottom-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 3.5rem;
}

.social-circle-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.social-circle-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #e50914;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(229, 9, 20, 0.45);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-circle-btn:hover {
    background-color: #f6121d;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 24px rgba(229, 9, 20, 0.7);
}

.myflix-copyright {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #717786;
    letter-spacing: 1.5px;
    text-align: center;
}

/* ==========================================================================
   8. RESPONSIVE MEDIA QUERIES FOR MOBILE & TABLET
   ========================================================================== */

@media (max-width: 768px) {
    .Flix4u-container {
        padding: 2rem 1.25rem 1.5rem 1.25rem;
    }

    .myflix-logo-text {
        font-size: 2.4rem;
    }

    .myflix-welcome-title {
        font-size: 1.6rem;
    }

    .myflix-subtitle-guide {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .myflix-action-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .myflix-btn {
        width: 100%;
    }

    .myflix-bookmark-pill {
        border-radius: 16px;
        padding: 0.8rem 1.25rem;
        flex-direction: row;
    }

    .myflix-telegram-card {
        padding: 1.75rem 1.25rem;
    }

    .myflix-card {
        padding: 1.75rem 1.35rem;
    }

    .card-heading-english {
        font-size: 1.35rem;
    }

    .myflix-features-grid {
        grid-template-columns: 1fr;
    }

    .feature-badge-bottom {
        grid-column: auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .myflix-logo-text {
        font-size: 2.1rem;
    }

    .myflix-welcome-title {
        font-size: 1.4rem;
    }

    .myflix-card {
        padding: 1.5rem 1.15rem;
    }

    .list-item-title {
        font-size: 0.98rem;
    }

    .list-item-text {
        font-size: 0.86rem;
    }
}
