/* ============================================
   landing.css — 247DigitalTvTz Landing Page
   Bright, vibrant, modern media design
============================================ */

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

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.reveal, .reveal-left, .reveal-right { opacity: 0; transform: translateY(30px); transition: all 1s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform, opacity; }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0, 0); }

/* Fallback for accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
}



/* === NAVBAR === */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid #FF6C03;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}


.lp-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

@media (max-width: 600px) {
    .lp-nav-inner { padding: 0 1rem; height: 64px; }
}


.lp-logo .logo-img { height: 44px; }

.lp-nav-links {
    display: none;
    gap: 2rem;
}
@media (min-width: 900px) {
    .lp-nav-links { display: flex; }
}

/* Mobile Menu Toggle */
.lp-mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}
@media (min-width: 900px) { .lp-mobile-toggle { display: none; } }

.lp-mobile-toggle span {
    width: 100%;
    height: 3px;
    background: #1a1a1a;
    border-radius: 99px;
    transition: all 0.3s;
}

.lp-mobile-toggle.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.lp-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.lp-mobile-toggle.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Mobile Navigation Overlay */
@media (max-width: 899px) {
    .lp-nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 100px 2rem;
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 100;
        display: flex;
    }
    .lp-nav-links.active { right: 0; }
    .lp-nav-link { font-size: 1.2rem; }
}


.lp-nav-link {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    text-decoration: none;
    padding: 4px 0;
    position: relative;
    transition: color 0.2s;
}
.lp-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: #FF6C03;
    border-radius: 99px;
    transition: width 0.3s ease;
}
.lp-nav-link:hover, .lp-nav-link.active { color: #FF6C03; }
.lp-nav-link:hover::after, .lp-nav-link.active::after { width: 100%; }

.lp-btn-live {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FF6C03;
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 22px;
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(255,108,3,0.35);
}
@media (max-width: 899px) {
    .lp-btn-live { display: none; }
}


.lp-btn-live .live-dot {
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* === HERO === */
.lp-hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/media_hero_bg_1777270620732.png');

    background-size: cover;
    background-position: center;
    opacity: 0.6;
    filter: brightness(0.4);
}

.lp-hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(255,108,3,0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(255,222,33,0.05) 0%, transparent 40%);
    pointer-events: none;
}


.lp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 2rem 140px;
    text-align: center;
}

.lp-badge {
    display: inline-block;
    background: rgba(255,108,3,0.15);
    border: 1px solid rgba(255,108,3,0.5);
    color: #FF6C03;
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.lp-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .lp-hero-title { font-size: 6rem; } }
@media (max-width: 600px) { .lp-hero-title { font-size: 2.8rem; } }


.lp-orange { color: #FF6C03; }

.lp-hero-sub {
    font-size: 1.2rem;
    color: #a1a1aa;
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.lp-hero-sub strong { color: #fff; }

.lp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.lp-cta-primary {
    display: flex; align-items: center; gap: 10px;
    background: #FF6C03;
    color: #fff;
    font-weight: 800; font-size: 1.05rem;
    padding: 18px 40px;
    border-radius: 99px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(255,108,3,0.4);
    transition: all 0.3s;
    text-transform: uppercase;
}
.lp-cta-primary:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(255,108,3,0.55); }

.lp-cta-secondary {
    display: flex; align-items: center; gap: 10px;
    background: transparent;
    color: #fff;
    font-weight: 800; font-size: 1.05rem;
    padding: 18px 40px;
    border-radius: 99px;
    border: 2px solid rgba(255,255,255,0.25);
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
}
.lp-cta-secondary:hover { background: #fff; color: #000; border-color: #fff; }

/* Wave divider */
.lp-hero-wave {
    position: absolute;
    bottom: -1px; left: 0; width: 100%;
    line-height: 0;
}
.lp-hero-wave svg { width: 100%; height: 80px; display: block; }

/* === CONTAINER === */
.lp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (max-width: 600px) {
    .lp-container { padding: 0 1rem; }
}


/* === STATS STRIP === */
.lp-stats {
    background: #f8f9fa;
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}
@media (min-width: 768px) {
    .lp-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.lp-stat { padding: 1rem; }
.lp-stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #FF6C03;
    line-height: 1;
    margin-bottom: 8px;
}
.lp-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
}

/* === SECTION HELPERS === */
.lp-section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.lp-pill {
    display: inline-block;
    background: #FF6C03;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 1rem;
}

.lp-pill-dark {
    background: #1a1a1a;
}

.lp-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.lp-section-sub {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* === SHOWS SECTION === */
.lp-shows {
    background: #fff;
    padding: 100px 0 80px;
}

.lp-shows-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}
@media (min-width: 640px) { .lp-shows-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-shows-grid { grid-template-columns: repeat(4, 1fr); } }

.lp-show-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.lp-show-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, #FF6C03, #FFDE21);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.lp-show-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255,108,3,0.1);
}
.lp-show-card:hover::before { transform: scaleX(1); }


.lp-show-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lp-show-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.lp-show-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lp-show-time {
    display: inline-block;
    background: #FF6C03;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-shows-img-row {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    max-height: 420px;
}
.lp-shows-img {
    width: 100%; height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.lp-shows-img-row:hover .lp-shows-img { transform: scale(1.04); }

.lp-shows-img-badge {
    position: absolute;
    bottom: 2rem; right: 2rem;
    background: #FF6C03;
    color: #fff;
    width: 110px; height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255,108,3,0.5);
    border: 4px solid #fff;
}
.lp-badge-big { font-size: 2rem; font-weight: 900; line-height: 1; }
.lp-badge-sub { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; text-align: center; }

/* === LATEST NEWS === */
.lp-news-teaser {
    background: #f4f5f7;
    padding: 80px 0;
    overflow: hidden;
}


.lp-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 900px) {
    .lp-news-grid { grid-template-columns: 1.6fr 1fr; }
}

/* Featured big card */
.lp-news-card-featured {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    min-height: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.lp-news-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    min-height: 400px;
}
.lp-news-card-featured:hover .lp-news-img { transform: scale(1.05); }
.lp-news-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
}
.lp-news-cat {
    display: inline-block;
    background: #FF6C03;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.lp-cat-ent { background: #7c3aed; }
.lp-cat-ajira { background: #059669; }

.lp-news-title-lg {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
.lp-news-date { color: #d1d5db; font-size: 0.8rem; font-weight: 600; }

/* Sidebar rows */
.lp-news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-news-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    flex: 1;
}
.lp-news-row:hover {
    border-color: #FF6C03;
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}
.lp-news-row-img {
    width: 90px; height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.lp-news-row-text { flex: 1; }
.lp-news-row-text .lp-news-cat { margin-bottom: 4px; }
.lp-news-row-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}
.lp-news-row:hover h4 { color: #FF6C03; }

.lp-view-all-wrap { text-align: center; }
.lp-view-all-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 14px 36px;
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.3s;
}
.lp-view-all-btn:hover { background: #FF6C03; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255,108,3,0.3); }

/* === CONTACT STRIP (Orange) === */
.lp-contact {
    background: linear-gradient(135deg, #FF6C03 0%, #e65c00 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.lp-contact::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.lp-contact-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 900px) {
    .lp-contact-inner { grid-template-columns: 1fr 1fr; }
}

.lp-contact-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.lp-contact-sub {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.lp-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.lp-contact-item { display: flex; flex-direction: column; }
.lp-ci-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2px;
}
.lp-ci-val {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}

.lp-contact-btn {
    display: inline-block;
    background: #fff;
    color: #FF6C03;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 36px;
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.3s;
}
.lp-contact-btn:hover { background: #1a1a1a; color: #fff; transform: translateY(-3px); }

.lp-contact-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.lp-contact-img { width: 100%; display: block; }
.lp-contact-badge {
    position: absolute;
    bottom: -10px; right: -10px;
    background: #1a1a1a;
    color: #FF6C03;
    width: 100px; height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.lp-contact-badge span { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.lp-contact-badge small { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; }

/* === FOOTER === */
.lp-footer {
    background: #111;
    padding: 50px 0;
}
.lp-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
.lp-footer-logo { height: 46px; width: auto; object-fit: contain; }
.lp-footer-links {
    display: flex;
    gap: 2rem;
}
.lp-footer-links a {
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.2s;
}
.lp-footer-links a:hover { color: #FF6C03; }
.lp-footer-copy { color: #6b7280; font-size: 0.85rem; }

/* === PERSISTENT PLAYER === */
.persistent-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 2px solid #FF6C03;
    z-index: 9999;
    padding: 12px 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.persistent-player.show {
    transform: translateY(0);
}
.player-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.player-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.player-art {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
}
.player-text {
    display: flex;
    flex-direction: column;
}
.player-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}
.player-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: #FF6C03;
    text-transform: uppercase;
}
.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}
.player-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    color: #9ca3af;
}
.btn-play-pause {
    background: #FF6C03;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}
.btn-play-pause:hover {
    transform: scale(1.1);
    background: #1a1a1a;
}

/* Equalizer Animation */
.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}
.eq-bar {
    width: 2px;
    background: #FF6C03;
    border-radius: 1px;
}
.persistent-player.playing .eq-bar {
    animation: eq-bounce 0.6s infinite ease-in-out alternate;
}
@keyframes eq-bounce {
    0% { height: 4px; }
    100% { height: 12px; }
}
.eq-bar:nth-child(2) { animation-delay: 0.1s; }
.eq-bar:nth-child(3) { animation-delay: 0.3s; }
.eq-bar:nth-child(4) { animation-delay: 0.15s; }
.eq-bar:nth-child(5) { animation-delay: 0.4s; }
.eq-bar:nth-child(6) { animation-delay: 0.25s; }
.eq-bar:nth-child(7) { animation-delay: 0.1s; }
.eq-bar:nth-child(8) { animation-delay: 0.35s; }


@media (max-width: 768px) {
    .player-subtitle, .player-status { display: none; }
    .player-title { font-size: 0.85rem; max-width: 160px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .player-art { width: 36px; height: 36px; }
    .btn-play-pause { width: 38px; height: 38px; font-size: 1rem; }
    .player-content { padding: 0 15px; }
}



/* === MOBILE APP PROMO === */
.lp-app-section { background: #fff; padding: 100px 0; overflow: hidden; }
.lp-app-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 900px) { .lp-app-grid { grid-template-columns: 1.2fr 1fr; } }

.lp-app-content { position: relative; z-index: 2; }
.lp-app-title { font-size: 2.8rem; font-weight: 900; color: #1a1a1a; text-transform: uppercase; line-height: 1.1; margin-bottom: 1.5rem; }
.lp-app-p { font-size: 1.1rem; color: #6b7280; line-height: 1.7; margin-bottom: 2.5rem; }

.app-badge-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.app-btn { display: flex; align-items: center; gap: 12px; background: #1a1a1a; color: #fff; padding: 12px 28px; border-radius: 12px; text-decoration: none; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.1); }
.app-btn:hover { background: #FF6C03; transform: translateY(-4px); box-shadow: 0 10px 25px rgba(255,108,3,0.3); border-color: #FF6C03; }
.app-btn i { font-size: 1.8rem; }
.app-btn-text { display: flex; flex-direction: column; line-height: 1.2; }
.app-btn-text small { font-size: 0.7rem; font-weight: 600; opacity: 0.7; text-transform: uppercase; }
.app-btn-text span { font-size: 1.1rem; font-weight: 800; }

.lp-app-img-wrap { position: relative; animation: float 4s infinite ease-in-out; }
.lp-app-img { width: 100%; max-width: 500px; display: block; margin: 0 auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15)); }

/* App Popup */
.app-popup {
    position: fixed;
    bottom: 100px; right: 20px;
    width: 320px;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    z-index: 10000;
    border: 2px solid #FF6C03;
    transform: translateX(120%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}
.app-popup.show { display: block; transform: translateX(0); }
.app-popup-close { position: absolute; top: 12px; right: 12px; background: #f4f4f5; border: none; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 1rem; color: #6b7280; display: flex; align-items: center; justify-content: center; }
.app-popup-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.app-popup-title { font-size: 1.2rem; font-weight: 900; color: #1a1a1a; margin-bottom: 0.5rem; text-transform: uppercase; }
.app-popup-p { font-size: 0.9rem; color: #6b7280; margin-bottom: 1.5rem; line-height: 1.5; }
.app-popup .app-badge-btns { flex-direction: column; }
.app-popup .app-btn { padding: 10px 20px; }
