/* ============================================
   POPPO LIVE - ENHANCED CSS WITH DESIGN
   ============================================ */

:root {
    --primary-color: #6C2BEB;
    --secondary-color: #FF6B35;
    --accent-color: #00D4FF;
    --purple-dark: #5B1E9C;
    --pink: #FF1493;
    --blue: #0066FF;
    --dark-bg: #1a1a1a;
    --light-bg: #F8F9FA;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --glow: 0 0 30px rgba(108, 43, 235, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

h1 { font-size: 56px; }
h2 { font-size: 42px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
    color: var(--text-light);
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 40px;
    flex: 2;
    justify-content: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #5B1E9C);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(108, 43, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 43, 235, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #FF8C42);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 16px 50px;
    font-size: 16px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

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

.section-header h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(108, 43, 235, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(40px);
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--pink));
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), var(--blue));
    bottom: -50px;
    left: 10%;
    animation: float 10s ease-in-out infinite 2s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--secondary-color), var(--pink));
    top: 50%;
    left: -50px;
    animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(30px) translateX(20px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    z-index: 11;
}

.hero-title {
    font-size: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================================
   PHONE MOCKUP
   ============================================ */

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
background: transparent !important;    border-radius: 50px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 60px rgba(108, 43, 235, 0.5);
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 100;
}

.phone-button {
    position: absolute;
    right: -2px;
    top: 120px;
    width: 4px;
    height: 60px;
    background: #333;
    border-radius: 0 4px 4px 0;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.phone-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3), transparent);
    border-radius: 50%;
    filter: blur(20px);
}

/* ============================================
   APP DOWNLOAD SECTION
   ============================================ */

.app-download {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(108, 43, 235, 0.05), rgba(0, 212, 255, 0.05));
}

.app-download section {
    max-width: 1200px;
    margin: 0 auto;
}

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

.download-card {
    position: relative;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(108, 43, 235, 0.1);
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 43, 235, 0.2);
    border-color: var(--primary-color);
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 43, 235, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.app-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

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

.download-card h3 {
    position: relative;
    z-index: 2;
}

.download-card p {
    position: relative;
    z-index: 2;
}

/* ============================================
   STEPS SECTION
   ============================================ */

.steps-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.step-card {
    position: relative;
    background: linear-gradient(135deg, rgba(108, 43, 235, 0.05), rgba(0, 212, 255, 0.05));
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.step-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(108, 43, 235, 0.15);
}

.step-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(108, 43, 235, 0.2), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.step-number {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(108, 43, 235, 0.3);
}

.step-card h3 {
    position: relative;
    z-index: 2;
}

.step-card p {
    position: relative;
    z-index: 2;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(108, 43, 235, 0.03), rgba(0, 212, 255, 0.03));
    max-width: 1200px;
    margin: 0 auto;
}

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

.benefit-card {
    position: relative;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(108, 43, 235, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(108, 43, 235, 0.2);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* ============================================
   INCOME SECTION
   ============================================ */

.income-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.income-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

.income-box {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), #5B1E9C);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(108, 43, 235, 0.3);
}

.box-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.income-box h3 {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.formula {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.note {
    position: relative;
    z-index: 2;
    font-style: italic;
    opacity: 0.9;
}

.income-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.income-item {
    position: relative;
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.income-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(108, 43, 235, 0.15);
}

.item-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(108, 43, 235, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.income-item h4 {
    position: relative;
    z-index: 2;
    color: var(--primary-color);
}

.income-item p {
    position: relative;
    z-index: 2;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(108, 43, 235, 0.05), rgba(0, 212, 255, 0.05));
    max-width: 1200px;
    margin: 0 auto;
}

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

.feature-item {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(108, 43, 235, 0.1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 43, 235, 0.2);
    border-color: var(--primary-color);
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(108, 43, 235, 0.1), transparent);
    pointer-events: none;
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.feature-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ============================================
   SCREENSHOTS SHOWCASE
   ============================================ */

.screenshots-showcase {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.screenshot-card {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.screenshot-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(108, 43, 235, 0.2);
    border-color: var(--primary-color);
}

.screenshot-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.screenshot-card h4 {
    padding: 15px;
    text-align: center;
    color: var(--primary-color);
    background: var(--light-bg);
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    margin: 60px 20px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}

.cta-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section h2 {
    position: relative;
    z-index: 2;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-section .btn {
    position: relative;
    z-index: 2;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.6);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--accent-color);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }

    .hero {
        min-height: auto;
        padding: 60px 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .hamburger {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .income-content {
        grid-template-columns: 1fr;
    }

    .steps-grid,
    .benefits-grid,
    .download-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .blob-1, .blob-2, .blob-3 {
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 18px; }

    .hero {
        padding: 40px 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 16px;
    }

    .logo-img {
        height: 40px;
    }

    .download-grid,
    .steps-grid,
    .benefits-grid,
    .features-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .income-box {
        padding: 30px;
    }

    .cta-section {
        margin: 30px 15px;
        padding: 40px 20px;
        border-radius: 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .btn-large {
        padding: 12px 30px;
        font-size: 14px;
    }
/* FINAL HERO PHONE FIX */
.phone-frame {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    background: transparent !important;
    overflow: hidden !important;
    border-radius: 50px !important;
}

.phone-frame > .app-screenshot {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 50px !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    z-index: 5 !important;
}

.phone-notch,
.phone-button {
    display: none !important;
}

.phone-frame::before,
.phone-frame::after {
    display: none !important;}
}