:root {
    --bcf-blue-deep: #1e3a8a;
    --bcf-blue: #1e40af;
    --bcf-blue-mid: #2563eb;
    --bcf-blue-light: #3b82f6;
    --bcf-violet: #7c3aed;
    --bcf-cyan: #06b6d4;
    --bcf-green: #11b880;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --instagram: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.ft-page {
    min-height: 60vh;
    padding: 2rem 0;
}

.ft-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.ft-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--main-first);
    margin-bottom: 1rem;
    text-align: center;
}

.ft-sub {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.free-tool-form {
    max-width: 600px;
    margin: 2.5rem auto 0;
}

.ft-form-wrap {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.ft-input {
    flex: 1;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease;
}

.ft-input:focus {
    border-color: var(--main-first);
}

.ft-input:disabled {
    background-color: #f1f5f9;
    cursor: not-allowed;
}

.free-tool-form .cart-button {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-self: stretch;
}

.free-tool-form .cart-button button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
    background: linear-gradient(135deg, #1e40af 0, #3b82f6 100%);
    padding: 0 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: .2s;
    box-shadow: 0 2px 10px rgba(30, 64, 175, .3);
    white-space: nowrap;
    color: #fff;
    font-family: inherit;
}

.free-tool-form .cart-button button span {
    text-transform: uppercase;
    font-weight: 700;
}

.free-tool-form .cart-button button:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, .4);
}

.free-tool-form .cart-button button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.ft-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.ft-btn-download {
    background-color: #10b981;
    color: #fff;
    width: 100%;
    justify-content: center;
    font-family: inherit;
}

.ft-btn-download:hover {
    background-color: #059669;
}

.ft-btn-view {
    background: linear-gradient(135deg, #1e40af 0, #3b82f6 100%);
    color: #fff;
    width: 100%;
    justify-content: center;
    font-family: inherit;
    box-shadow: 0 2px 10px rgba(30, 64, 175, .25);
}

.ft-btn-view:hover {
    background: linear-gradient(135deg, #1e3a8a 0, #2563eb 100%);
    transform: translateY(-1px);
}

.ft-view-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(4px);
}

.ft-view-dialog {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.ft-view-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.ft-view-header span {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.ft-view-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.ft-view-close:hover {
    color: #1e293b;
    background: #f1f5f9;
}

.ft-view-body {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    padding: 1rem;
}

.ft-view-body img,
.ft-view-body video {
    max-width: 100%;
    max-height: calc(90vh - 80px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.ft-results {
    margin-top: 3rem;
    padding: 2rem 0;
}

.ft-results-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--main-first);
    margin-bottom: 1.5rem;
    text-align: center;
}

.ft-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e2e8f0;
    border-top-color: var(--main-first);
    border-radius: 50%;
    animation: ft-spin 0.8s linear infinite;
    margin: 2rem auto;
}

@keyframes ft-spin {
    to { transform: rotate(360deg); }
}

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

.ft-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ft-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.ft-card-media {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #f8fafc;
    overflow: hidden;
}

.ft-card-media img,
.ft-card-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ft-card-body {
    padding: 1rem;
}

/* Queue Overlay */
.ft-queue-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.ft-queue-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ft-queue-card h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ft-queue-badge {
    display: inline-block;
    background: var(--main-first);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.ft-queue-message {
    font-size: 1rem;
    color: #475569;
    font-weight: 500;
    margin-bottom: 1.5rem;
    min-height: 1.5rem;
}

.ft-progress-wrap {
    width: 100%;
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.ft-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--main-first), #3b82f6);
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(30, 64, 175, 0.3);
}

.ft-progress-pct {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main-first);
}

/* Alpine.js transitions */
[x-cloak] {
    display: none !important;
}

.ft-overlay-enter {
    transition: opacity 0.3s ease;
}

.ft-overlay-enter-start {
    opacity: 0;
}

.ft-overlay-enter-end {
    opacity: 1;
}

.ft-overlay-leave {
    transition: opacity 0.3s ease;
}

.ft-overlay-leave-start {
    opacity: 1;
}

.ft-overlay-leave-end {
    opacity: 0;
}

.ft-single-result {
    /* max-width: 560px; */
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ft-single-results {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 560px;
    margin: 0 auto;
}

.ft-single-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.75rem;
}

.ft-single-value {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    color: var(--main-first);
    margin: 0;
    line-height: 1.2;
    word-break: break-all;
}

.ft-single-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #dbdbdb;
}

/* Responsive */
@media (max-width: 768px) {
    .ft-hero h1 {
        font-size: 2rem;
    }
    
    .ft-form-wrap {
        flex-direction: column;
    }
    
    .free-tool-form .cart-button {
        width: 100%;
    }

    .free-tool-form .cart-button button {
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 0.875rem 1.25rem;
        border-radius: 8px;
        font-size: 0.875rem;
    }

    .ft-btn {
        width: 100%;
        justify-content: center;
    }
    
    .ft-grid {
        grid-template-columns: 1fr;
    }
    
    .ft-queue-card {
        padding: 1.5rem;
    }
}



.ft-hero {
    background: linear-gradient(180deg, #eef4ff 0%, #f5f3ff 30%, #fff 80%);
    padding: 120px 24px 88px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}
.ft-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 60%);
    filter: blur(100px);
    pointer-events: none;
}
.ft-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30,64,175,0.06), transparent 60%);
    filter: blur(100px);
    pointer-events: none;
}
.ft-hero .ft-orb-cyan {
    position: absolute;
    top: 10%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6,182,212,0.07), transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}
.ft-hero .ft-dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(30,64,175,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}


/* Gradient text animation */
@keyframes ft-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* ============================================
HERO — Platform Pill (shared)
============================================ */

.ft-platform-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.8);
    padding: 8px 20px 8px 12px;
    border-radius: 100px;
    margin-bottom: 28px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ft-platform-pill .ft-platform-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--instagram);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ft-platform-pill .ft-platform-dot svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}
.ft-platform-pill .ft-ig-logo {
    width: 28px;
    height: 28px;
}


/* ============================================
HERO — Centered Layout (Downloader type)
============================================ */

.ft-hero-center {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.ft-hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.ft-hero-title .accent {
    background: linear-gradient(135deg, var(--bcf-blue-mid), var(--bcf-blue-light), var(--bcf-blue-deep), var(--bcf-blue-mid));
    background-size: 300% 300%;
    animation: ft-gradient-shift 6s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ft-hero-title .accent-violet {
    color: var(--bcf-blue-mid);
    -webkit-text-fill-color: var(--bcf-blue-mid);
}
.ft-hero-subtitle {
    color: #64748b;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}


/* ============================================
HERO — Split Layout (Free Service type)
============================================ */

.ft-hero-split {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.ft-hero-split .ft-hero-title {
    font-size: 48px;
    text-align: left;
}
.ft-hero-split .ft-hero-subtitle {
    text-align: left;
    margin-left: 0;
    max-width: none;
}
@keyframes ft-spin {
    to { transform: rotate(360deg); }
}


/* ============================================
HOW IT WORKS (shared)
============================================ */

.ft-how-section {
    background: #f8fafc;
    padding: 80px 24px 100px;
}
.ft-how-container {
    max-width: 1000px;
    margin: 0 auto;
}
.ft-how-title {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 48px;
}
.ft-how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.ft-how-step {
    text-align: center;
    position: relative;
}
.ft-how-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--bcf-blue), transparent);
}
.ft-how-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bcf-blue), var(--bcf-blue-mid));
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(30,64,175,0.25);
}
.ft-how-step-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}
.ft-how-step-desc {
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
}


/* ============================================
FAQ (shared)
============================================ */

.ft-faq-section {
    background: #fff;
    padding: 80px 24px 100px;
}
.ft-faq-container {
    max-width: 1000px;
    margin: 0 auto;
}
.ft-faq-title,
.ft-faq-section h4 {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 48px;
    line-height: 1.3;
}
.ft-faq-section .accordion-wrapper {
    margin-top: 0;
    padding: 0;
    background: transparent;
}
.ft-faq-section .accordion-wrapper .container {
    width: 100%;
    max-width: none;
    padding: 0;
}
.ft-faq-section .accordion-wrapper .row {
    margin: 0;
}
.ft-faq-section .accordion-wrapper .col-md-12 {
    padding: 0;
}


/* ============================================
SEO TEXT (shared)
============================================ */

.ft-seo-section {
    background: #fff;
    padding: 80px 24px 100px;
}
.ft-seo-container {
    max-width: 800px;
    margin: 0 auto;
}
.ft-seo-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    text-align: left;
}
.ft-seo-text {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.ft-seo-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin: 36px 0 16px;
    text-align: left;
}
.ft-seo-list {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}
.ft-seo-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}
.ft-seo-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--bcf-blue-light);
    border-radius: 50%;
}


/* SEO content block (alternative format for Free Service) */
.ft-seo-content {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}
.ft-seo-content p {
    margin-bottom: 20px;
}
.ft-seo-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 48px 0 18px;
}
.ft-seo-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}
.ft-seo-content li {
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}
.ft-seo-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: #ecfdf5;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2311b880' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}
@keyframes ft-slide-up {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}


/* ============================================
RESPONSIVE — 1024px
============================================ */

@media (max-width: 1024px) {
.ft-hero-split {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 600px;
    }
.ft-hero-split .ft-hero-left {
        text-align: center;
    }
.ft-hero-split .ft-hero-title {
        text-align: center;
    }
.ft-hero-split .ft-hero-subtitle {
        text-align: center;
        margin-left: auto;
    }
}


/* ============================================
RESPONSIVE — 768px
============================================ */

@media (max-width: 768px) {
.ft-hero {
        padding: 90px 20px 60px;
    }
.ft-hero-title {
        font-size: 36px;
    }
.ft-hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
.ft-hero-split .ft-hero-title {
        font-size: 36px;
    }
.ft-how-section {
        padding: 60px 20px 80px;
    }
.ft-how-title {
        font-size: 26px;
        margin-bottom: 36px;
    }
.ft-how-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
.ft-how-step::after {
        display: none !important;
    }
.ft-how-step {
        display: grid;
        grid-template-columns: 56px 1fr;
        text-align: left;
        gap: 20px;
        align-items: center;
    }
.ft-how-num {
        margin: 0;
    }
.ft-faq-section {
        padding: 60px 20px 80px;
    }
.ft-faq-title,
.ft-faq-section h4 {
        font-size: 26px;
        margin-bottom: 36px;
    }
.ft-seo-section {
        padding: 60px 20px 80px;
    }
.ft-seo-title {
        font-size: 24px;
    }
.ft-seo-subtitle {
        font-size: 20px;
    }
.ft-seo-text, .ft-seo-list li {
        font-size: 15px;
    }
.ft-seo-content {
        font-size: 16px;
    }
.ft-seo-content h2 {
        font-size: 20px;
    }
}


/* ============================================
RESPONSIVE — 480px
============================================ */

@media (max-width: 480px) {
.ft-hero {
        padding: 80px 16px 48px;
    }
.ft-hero-title {
        font-size: 28px;
        letter-spacing: -0.01em;
    }
.ft-hero-split .ft-hero-title {
        font-size: 30px;
    }
.ft-hero-subtitle {
        font-size: 15px;
    }
.ft-platform-pill {
        font-size: 13px;
        padding: 6px 16px 6px 10px;
    }
.ft-platform-pill .ft-platform-dot {
        width: 32px;
        height: 32px;
    }
.ft-platform-pill .ft-ig-logo {
        width: 24px;
        height: 24px;
    }
.ft-how-step {
        grid-template-columns: 48px 1fr;
        gap: 16px;
    }
.ft-how-num {
        width: 48px;
        height: 48px;
        font-size: 18px;
        border-radius: 14px;
    }
.ft-how-step-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
.ft-how-step-desc {
        font-size: 14px;
    }
.ft-seo-section {
        padding: 60px 16px 80px;
    }
.ft-seo-title {
        font-size: 22px;
    }
.ft-seo-subtitle {
        font-size: 18px;
    }
.ft-seo-text, .ft-seo-list li {
        font-size: 14px;
    }
}

/* tool-downloader.css — downloader/viewer module (search input + account posts grid + queue). Load after free-tools-shell.css. */

/* ============================================
FREE TOOLS — Shared Stylesheet
Covers both Free Service and Downloader pages
============================================ */

:root {
    --bcf-blue-deep: #1e3a8a;
    --bcf-blue: #1e40af;
    --bcf-blue-mid: #2563eb;
    --bcf-blue-light: #3b82f6;
    --bcf-violet: #7c3aed;
    --bcf-cyan: #06b6d4;
    --bcf-green: #11b880;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --instagram: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}


/* ============================================
SEARCH BAR (Downloader type)
============================================ */

.ft-form-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 100px;
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid rgba(226,232,240,0.6);
    max-width: 620px;
    margin: 0 auto 40px;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.ft-form-wrap:focus-within {
    box-shadow: 0 4px 24px rgba(30,64,175,0.12), 0 1px 3px rgba(0,0,0,0.04);
    border-color: rgba(30,64,175,0.25);
}
.ft-search-input {
    flex: 1;
    min-width: 0;
    padding: 16px 20px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    color: #1e293b;
    outline: none;
}
.ft-search-input::placeholder {
    color: #94a3b8;
}
.ft-btn-primary {
    flex-shrink: 0;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--bcf-blue) 0%, var(--bcf-blue-mid) 100%);
    border: none;
    border-radius: 100px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s;
    box-shadow: 0 4px 14px rgba(30,64,175,0.3);
    white-space: nowrap;
}
.ft-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30,64,175,0.4);
    background: linear-gradient(135deg, #1a3a9e 0%, #1d5ed8 100%);
}
.ft-btn-primary:active {
    transform: translateY(0);
}
.ft-btn-primary svg {
    width: 18px;
    height: 18px;
}


/* Trust Bar (Downloader) */
.ft-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center;
}
.ft-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}
.ft-trust-item svg {
    width: 18px;
    height: 18px;
    color: #94a3b8;
    flex-shrink: 0;
}


/* ============================================
RESULTS GRID (Downloader type)
============================================ */

.ft-results {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 60px;
}
.ft-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.ft-results-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
}
.ft-results-count {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}
.ft-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ft-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ft-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}
.ft-card-media {
    aspect-ratio: 9/16;
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}
.ft-card-media img, .ft-card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ft-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.ft-card-placeholder svg {
    width: 48px;
    height: 48px;
    color: #cbd5e1;
}
.ft-card-placeholder span {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}
.ft-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}
.ft-card:hover .ft-play-icon {
    opacity: 1;
}
.ft-play-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
    margin-left: 3px;
}
.ft-card-body {
    padding: 14px;
}
.ft-btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--bcf-blue) 0%, var(--bcf-blue-mid) 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(30,64,175,0.2);
}
.ft-btn-download:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(30,64,175,0.3);
}
.ft-btn-download svg {
    width: 16px;
    height: 16px;
}


/* ============================================
QUEUE OVERLAY (Downloader type)
============================================ */

.ft-queue-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px;
}
.ft-queue-card {
    background: #fff;
    border-radius: 28px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    animation: ft-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ft-queue-card h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    margin-bottom: 32px;
}
.ft-queue-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--bcf-blue);
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 800;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 20px;
}
.ft-queue-message {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 24px;
}
.ft-progress-wrap {
    width: 100%;
    height: 8px;
    background: #f1f5f9;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 12px;
}
.ft-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bcf-blue), var(--bcf-blue-light));
    border-radius: 100px;
    transition: width 0.5s ease;
}
.ft-progress-pct {
    font-size: 14px;
    font-weight: 700;
    color: var(--bcf-blue);
}


/* ============================================
RESPONSIVE — 1024px
============================================ */

@media (max-width: 1024px) {
.ft-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ============================================
RESPONSIVE — 768px
============================================ */

@media (max-width: 768px) {
.ft-form-wrap {
        flex-direction: column;
        border-radius: 20px;
        padding: 8px;
    }
.ft-search-input {
        flex: none;
        width: 100%;
        padding: 14px 18px;
        text-align: center;
    }
.ft-btn-primary {
        width: 100%;
        padding: 16px;
        border-radius: 14px;
    }
.ft-trust-bar {
        gap: 16px 24px;
    }
.ft-trust-item {font-size: 13px;}
.ft-grid {grid-template-columns: repeat(2, 1fr);gap: 16px;}}

@media (max-width: 480px) {
    .ft-trust-bar { gap: 12px 20px; }
    .ft-trust-item {font-size: 12px;gap: 6px;}
    .ft-trust-item svg {width: 16px;height: 16px;}
    .ft-grid {grid-template-columns: 1fr 1fr;gap: 12px;}
    .ft-card {border-radius: 16px;}
    .ft-card-body {padding: 10px;}
    .ft-btn-download {padding: 10px;font-size: 13px;border-radius: 10px;}
    .ft-queue-card {padding: 36px 28px;border-radius: 24px;}
    .ft-queue-card h2 {font-size: 16px;}
}

.ft-account{max-width:1100px;margin:0 auto 22px;display:flex;align-items:center;gap:16px;padding:0 24px;}
.ft-account-avatar{width:62px;height:62px;border-radius:50%;flex-shrink:0;background:linear-gradient(135deg,#feda75,#d62976,#962fbf,#4f5bd5);display:flex;align-items:center;justify-content:center;}
.ft-account-avatar svg{width:30px;height:30px;}
.ft-account-handle{font-family:'DM Sans',sans-serif;font-size:20px;font-weight:700;color:#1e293b;}
.ft-account-sub{font-size:14px;color:#64748b;margin-top:3px;}
@media (max-width:480px){.ft-account{padding:0 16px;gap:12px;}.ft-account-avatar{width:50px;height:50px;}.ft-account-handle{font-size:17px;}}


.preview-bar{position:sticky;top:0;z-index:60;height:62px;display:flex;align-items:center;gap:12px;padding:0 28px;background:rgba(255,255,255,.85);backdrop-filter:blur(12px);border-bottom:1px solid #eef2f7;font-family:'DM Sans',sans-serif;}
.preview-bar .brand{font-weight:800;font-size:18px;color:#1e3a8a;letter-spacing:-.02em;}
.preview-bar .tag{font-size:11px;font-weight:600;color:#94a3b8;background:#f1f5f9;padding:3px 9px;border-radius:100px;}
.preview-foot{background:#0f172a;color:#94a3b8;text-align:center;padding:36px 24px;font-size:13px;}
.preview-foot strong{color:#e2e8f0;font-family:'DM Sans',sans-serif;}

.hp-bestsellers{background:#fff;padding:80px 24px 100px;}
.hp-bestsellers-container{max-width:1100px;margin:0 auto;}
.hp-section-header{text-align:center;margin-bottom:48px;}
.hp-section-label{display:inline-flex;align-items:center;gap:8px;background:linear-gradient(135deg,#fef3c7,#fde68a);color:#92400e;padding:8px 18px;border-radius:100px;font-size:13px;font-weight:700;margin-bottom:16px;}
.hp-section-label svg{width:15px;height:15px;}
.hp-section-title{font-family:'DM Sans',sans-serif;font-size:36px;font-weight:700;color:#0f172a;margin:0 0 12px; text-align: center;}
.hp-section-subtitle{color:#64748b;font-size:17px;max-width:520px;margin:0 auto;}
.hp-bestsellers-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.hp-product-card{display:flex;flex-direction:column;gap:14px;background:linear-gradient(180deg,#fafbff,#fff);border:1px solid #e2e8f0;border-radius:20px;padding:24px;text-decoration:none;color:inherit;transition:all .25s cubic-bezier(.4,0,.2,1);}
.hp-product-card:hover{transform:translateY(-5px);box-shadow:0 20px 45px rgba(0,0,0,.08);border-color:transparent;}
.hp-product-card-header{display:flex;align-items:center;justify-content:space-between;}
.hp-product-card-icon{width:46px;height:46px;border-radius:13px;display:flex;align-items:center;justify-content:center;}
.hp-product-card-icon svg{width:24px;height:24px;fill:#fff;}
.hp-product-card-icon.instagram{background:linear-gradient(135deg,#feda75,#d62976,#962fbf,#4f5bd5);}
.hp-product-card-icon.tiktok{background:#111;}
.hp-product-card-icon.youtube{background:#ff0000;}
.hp-product-card-rating{display:inline-flex;align-items:center;gap:5px;font-size:13px;font-weight:600;color:#64748b;}
.hp-product-card-rating svg{width:15px;height:15px;fill:#f59e0b;}
.hp-product-card-title{font-family:'DM Sans',sans-serif;font-size:19px;font-weight:700;color:#1e293b;}
.hp-product-card-features{display:flex;flex-direction:column;gap:8px;}
.hp-product-card-feature{display:flex;align-items:center;gap:8px;font-size:13.5px;color:#64748b;}
.hp-product-card-feature svg{width:15px;height:15px;stroke:#11b880;flex-shrink:0;}
.hp-product-card-footer{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:14px;border-top:1px solid #eef2f7;}
.hp-product-card-price{font-size:14px;color:#64748b;}
.hp-product-card-price strong{font-family:'DM Sans',sans-serif;font-size:20px;color:#1e3a8a;}
.hp-product-card-cta{display:inline-flex;align-items:center;gap:6px;font-size:14px;font-weight:700;color:#1e40af;}
.hp-product-card-cta svg{width:16px;height:16px;stroke:#1e40af;}
@media (max-width:1024px){.hp-bestsellers-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:680px){.hp-bestsellers-grid{grid-template-columns:1fr;max-width:380px;margin:0 auto;}}

.ft-page .content ul:not([class]){ display:block; padding-left:1.5rem; margin:0 0 1rem; }
.ft-page .content ul:not([class]) li{ display:list-item; list-style:disc; margin:.4rem 0; }
.ft-page .content ol:not([class]){ display:block; list-style:decimal; padding-left:1.6rem; margin:0 0 1rem; }
.ft-page .content ol:not([class]) li{ display:list-item; list-style:decimal; margin:.4rem 0; }

.ft-page .content table{ width:100%; border-collapse:collapse; margin:1rem 0 1.5rem; font-size:.95rem; }
.ft-page .content th,
.ft-page .content td{ border:1px solid #e5e7eb; padding:.6rem .75rem; text-align:left; vertical-align:top; }
.ft-page .content thead th,
.ft-page .content tr:first-child th{ background:#f3effc; font-weight:700; }   /* leichtes Lila – Farbe frei anpassbar */
.ft-page .content tbody tr:nth-child(even) td{ background:#faf9fc; }

