/* ==========================================================================
   1. BASE STYLES & RESET (Har browser ke liye uniform reset)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #F7EDF7;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* ==========================================================================
   2. MOBILE FIRST DESIGN (By default mobile par sab sahi dikhega)
   ========================================================================== */

/* NAVBAR BLOCK */
.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #ffffff;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
}

.logo span {
    color: #2c3e50;
}

.nav-icons {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.nav-icons .icon-btn {
    font-size: 15px;
    padding: 6px 10px;
    background: #f3f4f6;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.nav-icons .icon-btn.active {
    background: #e0e7ff;
    border: 1px solid #818cf8;
}

/* MAIN HERO SECTION */
.hero-section {
    text-align: center;
    padding: 35px 15px;
    width: 100%;
}

.hero-section h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
    line-height: 1.3;
}

.hero-section h1 span {
    color: #e11d48; /* Strict Red Color for 'Download' */
}

.subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
}

/* SEARCH BOX & PASTE BUTTON (The Ultimate Mobile Fix) */
.search-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    padding: 5px 6px 5px 15px;
    width: 100%;
    max-width: 550px;
    margin: 0 auto 15px auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.link-icon {
    font-size: 16px;
    color: #94a3b8;
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 10px 0;
    min-width: 0; /* Fixes browser overflow bug */
    background: transparent;
}

.search-box button {
    background: linear-gradient(135deg, #818cf8, #6366f1);
    color: #ffffff;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap; /* Button text break nahi hoga */
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.3);
}

.report-text {
    font-size: 12px;
    color: #ef4444;
    cursor: pointer;
}

/* ADS & COMMON CONTAINER WRAPPERS */
.ad-slot {
    width: 92%;
    max-width: 728px;
    margin: 20px auto;
    text-align: center;
}

.ad-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.mock-ad {
    background: #e2e8f0;
    border: 1px dashed #cbd5e1;
    padding: 15px;
    font-size: 14px;
    color: #64748b;
    border-radius: 8px;
}

.mock-ad-square {
    background: #e2e8f0;
    border: 1px dashed #cbd5e1;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #64748b;
    border-radius: 8px;
}

/* LOADER & DYNAMIC RESULTS */
.dynamic-wrapper {
    width: 92%;
    max-width: 550px;
    margin: 0 auto 20px auto;
    text-align: center;
}

.loader {
    color: #4f46e5;
    font-weight: 500;
    font-size: 14px;
}

.result-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.result-box h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.success-btn {
    background: #10b981;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

/* CONTENT BLOCKS & FEATURE CARDS */
.intro-text-block, .steps-section, .features-container, .faq-section, .dmca-card {
    width: 92%;
    margin: 25px auto;
    max-width: 800px;
}

.intro-text-block p {
    font-size: 14px;
    text-align: center;
    color: #475569;
}

.steps-section h2, .faq-section h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 5px;
}

.steps-sub, .faq-sub {
    font-size: 13px;
    text-align: center;
    color: #64748b;
    margin-bottom: 20px;
}

.step-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
}

.num-1 { background: #818cf8; }
.num-2 { background: #34d399; }
.num-3 { background: #f87171; }

/* UTILITY GRID CARDS */
.features-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.card h2 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1e293b;
}

.card p, .card-intro {
    font-size: 13.5px;
    color: #475569;
    margin-bottom: 12px;
}

.checkmark-list {
    list-style: none;
    margin-bottom: 15px;
}

.checkmark-list li {
    font-size: 13.5px;
    color: #475569;
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
}

.checkmark-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.card-footer-note, .nested-note {
    font-size: 12.5px;
    color: #64748b;
    border-left: 3px solid #cbd5e1;
    padding-left: 10px;
}

.highlighted-card {
    border-top: 4px solid #6366f1;
}

/* FAQ SECTION */
.faq-item {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.faq-item h3 {
    font-size: 14.5px;
    color: #1e293b;
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
}

.faq-item h3 span {
    color: #6366f1;
    font-weight: 700;
}

.faq-item p {
    font-size: 13.5px;
    color: #475569;
    padding-left: 15px;
}

/* DMCA COMPLIANCE CARD */
.dmca-card {
    background: #1e293b;
    color: #f1f5f9;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.dmca-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.dmca-card p {
    font-size: 12.5px;
    color: #cbd5e1;
}

/* FOOTER BLOCK */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 40px 20px;
    margin-top: 40px;
}

.footer-brand {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-brand span { color: #818cf8; }

.footer-desc {
    font-size: 13px;
    margin-bottom: 30px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-disclaimer-bottom {
    border-top: 1px solid #334155;
    padding-top: 25px;
    font-size: 12px;
    line-height: 1.8;
}

.footer-disclaimer-bottom p {
    margin-bottom: 12px;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    color: #64748b;
}


/* ==========================================================================
   3. LARGE SCREENS RESPONSIVENESS (Desktop & Tablets ke liye automatic scaling)
   ========================================================================== */
@media (min-width: 769px) {
    .navbar {
        padding: 15px 10%;
    }
    .logo { font-size: 22px; }
    .nav-icons .icon-btn { font-size: 16px; padding: 8px 14px; }

    .hero-section { padding: 60px 20px; }
    .hero-section h1 { font-size: 42px; }
    .subtitle { font-size: 16px; }

    .search-box { padding: 6px 6px 6px 20px; }
    .search-box input { font-size: 15px; }
    .search-box button { font-size: 15px; padding: 12px 28px; }

    .features-container {
        grid-template-columns: 1fr 1fr; /* Desktop par side-by-side grid */
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}