.tfc-ss-finder-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
}

.tfc-ss-finder-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.tfc-ss-finder-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: #ffffff;
}

.tfc-ss-finder-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-bottom: 1rem;
}

.tfc-ss-finder-subtitle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #ffb800 0%, rgba(255, 184, 0, 0) 100%);
}

.tfc-ss-finder-highlight {
    color: #ffd700;
    font-weight: 500;
}

.tfc-ss-finder-search-container {
    max-width: 600px;
    margin: 0 auto;
}

.tfc-ss-finder-search-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.tfc-ss-finder-search-wrapper .tfc-ss-finder-search-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    padding-right: 60px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.tfc-ss-finder-search-wrapper .tfc-ss-finder-search-input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.2);
}

.tfc-ss-finder-search-wrapper .tfc-ss-finder-search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.tfc-ss-finder-search-button svg {
    width: 24px;
    height: 24px;
    fill: #ffd700;
}

.tfc-ss-finder-help-link {
    text-align: center;
    margin-top: 1.5rem;
}

.tfc-ss-finder-video-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tfc-ss-finder-video-trigger:hover {
    background: rgba(255, 184, 0, 0.1);
    color: #ffe44d !important;
}

.tfc-ss-finder-help-icon {
    width: 20px;
    height: 20px;
    fill: #ffd700;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .tfc-ss-finder-section {
        padding: 20px 0;
    }
}
/* Tablet responsiveness */
@media screen and (max-width: 768px) {
    .tfc-ss-finder-section {
        padding: 30px 0;
    }

    .tfc-ss-finder-container {
        max-width: 600px;
    }

    .tfc-ss-finder-title {
        font-size: 2rem;
        padding-bottom: 1rem;
    }

    .tfc-ss-finder-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .tfc-ss-finder-search-input {
        padding: 1rem 1.2rem;
        padding-right: 50px;
        font-size: 1rem;
    }

    .tfc-ss-finder-modal-content {
        width: 95%;
    }
}

/* Mobile responsiveness*/
@media screen and (max-width: 480px) {
    .tfc-ss-finder-section {
        padding: 30px 0;
    }

    .tfc-ss-finder-container {
        padding: 0 15px;
    }

    .tfc-ss-finder-title {
        padding-bottom: 0.8rem;
    }

    .tfc-ss-finder-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .tfc-ss-finder-search-input {
        padding: 0.9rem 1rem;
        padding-right: 45px;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .tfc-ss-finder-search-button {
        right: 8px;
    }

    .tfc-ss-finder-search-button svg {
        width: 20px;
        height: 20px;
    }

    .tfc-ss-finder-video-trigger {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .tfc-ss-finder-help-icon {
        width: 18px;
        height: 18px;
    }

    .tfc-ss-finder-modal-content {
        width: 100%;
        border-radius: 0;
    }
}